Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ionic start app blank --v2 --ts error #1862

Closed
favancini opened this issue Jan 19, 2017 · 2 comments
Closed

ionic start app blank --v2 --ts error #1862

favancini opened this issue Jan 19, 2017 · 2 comments

Comments

@favancini
Copy link

Creating Ionic app in folder C:\nodejs\apps\wifiscan based on blank project
Downloading: https://github.com/driftyco/ionic2-app-base/archive/typescript.zip

Not found: https://github.com/driftyco/ionic2-app-base/archive/typescript.zip (404)
Please verify the url and try again.
Error with start undefined
Error Initializing app: [object Object]
objectMode=false, highWaterMark=16384, head=null, tail=null, length=0, length=0, pipes=null, pipesCount=0, flowing=true, ended=true, endEmitted=true, reading=false, sync=true, needReadable=false, emittedReadable=false, readableListening=false, resumeScheduled=false, defaultEncoding=utf8, ranOut=false, awaitDrain=0, readingMore=false, decoder=null, encoding=null, readable=false, domain=null, end=[function responseOnEnd() {
const res = this;
const req = this.req;

req._ended = true;
if (!req.shouldKeepAlive || req.finished)
responseKeepAlive(res, req);
}, function () {
debug('response end', self.uri.href, response.statusCode, response.headers)
}, function () {
self._ended = true
}, function (chunk) {
self.emit('end', chunk)
}], close=[function () {
if (!self._ended) {
self.response.emit('end')
}
}, function () {self.emit('close')}], data=[function (chunk) {
try {
bar.tick(chunk.length);
} catch (e) {} // eslint-disable-line no-empty
}, function (chunk) {
self._destdata = true
self.emit('data', chunk)
}], error=function (error) {
self.emit('error', error)
}, _eventsCount=4, _maxListeners=undefined, pipe=null, , singleUse=true, isServer=false, requestCert=true, rejectUnauthorized=false, session=undefined, NPNProtocols=undefined, ALPNProtocols=undefined, requestOCSP=undefined, _secureEstablished=true, _securePending=false, _newSessionPending=false, _controlReleased=true, _SNICallback=null, servername=null, npnProtocol=undefined, alpnProtocol=false, authorized=true, authorizationError=null, encrypted=true, close=[function () {
// Make sure we are not doing it on OpenSSL's stack
setImmediate(destroySSL, this);
res = null;
}, function g() {
target.removeListener(type, g);
if (!fired) {
fired = true;
listener.apply(target, arguments);
}
}, function onClose(err) {
debug('CLIENT socket onClose');
// This is the only place where sockets get removed from the Agent.
// If you want to remove a socket from the pool, just close it.
// All socket errors end in a close event anyway.
self.removeSocket(s, options);
}, function socketCloseListener() {
var socket = this;
var req = socket._httpMessage;
debug('HTTP socket close');

// Pull through final chunk, if anything is buffered.
// the ondata function will handle it properly, and this
// is a no-op if no final chunk remains.
socket.read();

// NOTE: It's important to get parser here, because it could be freed by
// the socketOnData.
var parser = socket.parser;
req.emit('close');
if (req.res && req.res.readable) {
// Socket closed before we emitted 'end' below.
req.res.emit('aborted');
var res = req.res;
res.on('end', function() {
res.emit('close');
});
res.push(null);
} else if (!req.res && !req.socket._hadError) {
// This socket error fired before we started to
// receive a response. The error needs to
// fire on the request.
req.emit('error', createHangUpError());
req.socket._hadError = true;
}

// Too bad. That output wasn't getting written.
// This is pretty terrible that it doesn't raise an error.
// Fixed better in v0.10
if (req.output)
req.output.length = 0;
if (req.outputEncodings)
req.outputEncodings.length = 0;

if (parser) {
parser.finish();
freeParser(parser, req, socket);
}
}], end=[function g() {
target.removeListener(type, g);
if (!fired) {
fired = true;
listener.apply(target, arguments);
}
}], finish=function onSocketFinish() {
// If still connecting - defer handling 'finish' until 'connect' will happen
if (this.connecting) {
debug('osF: not yet connected');
return this.once('connect', onSocketFinish);
}

debug('onSocketFinish');
if (!this.readable || this._readableState.ended) {
debug('oSF: ended, destroy', this._readableState);
return this.destroy();
}

debug('oSF: not ended, call shutdown()');

// otherwise, just shutdown, or destroy() if not possible
if (!this._handle || !this._handle.shutdown)
return this.destroy();

var req = new ShutdownWrap();
req.oncomplete = afterShutdown;
req.handle = this._handle;
var err = this._handle.shutdown(req);

if (err)
return this._destroy(errnoException(err, 'shutdown'));
}, _socketEnd=function onSocketEnd() {
// XXX Should not have to do as much crap in this function.
// ended should already be true, since this is called after
// the EOF errno and onread has eof'ed
debug('onSocketEnd', this._readableState);
this._readableState.ended = true;
if (this._readableState.endEmitted) {
this.readable = false;
maybeDestroy(this);
} else {
this.once('end', function() {
this.readable = false;
maybeDestroy(this);
});
this.read(0);
}

if (!this.allowHalfOpen) {
this.write = writeAfterFIN;
this.destroySoon();
}
}, secure=function () {
// Check the size of DHE parameter above minimum requirement
// specified in options.
var ekeyinfo = socket.getEphemeralKeyInfo();
if (ekeyinfo.type === 'DH' && ekeyinfo.size < options.minDHSize) {
var err = new Error('DH parameter size ' + ekeyinfo.size +
' is less than ' + options.minDHSize);
socket.emit('error', err);
socket.destroy();
return;
}

var verifyError = socket._handle.verifyError();

// Verify that server's identity matches it's certificate's names
// Unless server has resumed our existing session
if (!verifyError && !socket.isSessionReused()) {
  var cert = socket.getPeerCertificate();
  verifyError = options.checkServerIdentity(hostname, cert);
}

if (verifyError) {
  socket.authorized = false;
  socket.authorizationError = verifyError.code || verifyError.message;

  if (options.rejectUnauthorized) {
    socket.destroy(verifyError);
    return;
  } else {
    socket.emit('secureConnect');
  }
} else {
  socket.authorized = true;
  socket.emit('secureConnect');
}

// Uncork incoming data
socket.removeListener('end', onHangUp);

}, free=function onFree() {
self.emit('free', s, options);
}, agentRemove=function onRemove() {
// We need this function for cases like HTTP 'upgrade'
// (defined by WebSockets) where we need to remove a socket from the
// pool because it'll be locked up indefinitely
debug('CLIENT socket onRemove');
self.removeSocket(s, options);
s.removeListener('close', onClose);
s.removeListener('free', onFree);
s.removeListener('agentRemove', onRemove);
}, drain=function ondrain() {
if (this._httpMessage) this._httpMessage.emit('drain');
}, error=[function socketErrorListener(err) {
var socket = this;
var req = socket._httpMessage;
debug('SOCKET ERROR:', err.message, err.stack);

if (req) {
req.emit('error', err);
// For Safety. Some additional errors might fire later on
// and we need to make sure we don't double-fire the error event.
req.socket._hadError = true;
}

// Handle any pending data
socket.read();

var parser = socket.parser;
if (parser) {
parser.finish();
freeParser(parser, req, socket);
}

// Ensure that no further data will come out of the socket
socket.removeListener('data', socketOnData);
socket.removeListener('end', socketOnEnd);
socket.destroy();
}], _eventsCount=9, connecting=false, _hadError=false, _handle=null, _parent=null, _host=codeload.github.com, objectMode=false, highWaterMark=16384, head=null, tail=null, length=0, length=0, pipes=null, pipesCount=0, flowing=true, ended=false, endEmitted=false, reading=true, sync=false, needReadable=true, emittedReadable=false, readableListening=false, resumeScheduled=false, defaultEncoding=utf8, ranOut=false, awaitDrain=0, readingMore=false, decoder=null, encoding=null, readable=false, domain=null, _maxListeners=0, objectMode=false, highWaterMark=16384, needDrain=false, ending=true, ended=true, finished=true, decodeStrings=false, defaultEncoding=utf8, length=0, writing=false, corked=0, sync=false, bufferProcessing=false, onwrite=function (er) {
onwrite(stream, er);
}, writecb=null, writelen=0, bufferedRequest=null, lastBufferedRequest=null, pendingcb=0, prefinished=true, errorEmitted=false, bufferedRequestCount=0, next=null, entry=null, finish=(err) => {
var entry = this.entry;
this.entry = null;
while (entry) {
var cb = entry.callback;
state.pendingcb--;
cb(err);
entry = entry.next;
}
if (state.corkedRequestsFree) {
state.corkedRequestsFree.next = this;
} else {
state.corkedRequestsFree = this;
}
}, writable=false, allowHalfOpen=false, destroyed=true, _bytesDispatched=103, _sockname=null, _pendingData=null, _pendingEncoding=, server=undefined, _server=null, ssl=null, _requestCert=true, _rejectUnauthorized=false, parser=null, domain=null, socket=[function (socket) {
self.emit('socket', socket)
}], response=function () { [native code] }, error=function () { [native code] }, drain=function () {
self.emit('drain')
}, prefinish=function requestOnPrefinish() {
const req = this;
const res = this.res;

if (!req.shouldKeepAlive)
return;

if (req._ended)
responseKeepAlive(res, req);
}, _eventsCount=5, _maxListeners=undefined, output=[], outputEncodings=[], outputCallbacks=[], outputSize=0, writable=true, _last=true, upgrading=false, chunkedEncoding=false, shouldKeepAlive=false, useChunkedEncodingByDefault=false, sendDate=false, , _contentLength=0, _hasBody=true, _trailer=, finished=true, _headerSent=true, $ref=$["socket"], $ref=$["socket"], _header=GET /driftyco/ionic2-app-base/zip/typescript HTTP/1.1
host: codeload.github.com
Connection: close

, host=codeload.github.com, host=host, _onPendingData=null, domain=null, free=function (socket, options) {
var name = self.getName(options);
debug('agent.on(free)', name);

if (socket.writable &&
    self.requests[name] && self.requests[name].length) {
  self.requests[name].shift().onSocket(socket);
  if (self.requests[name].length === 0) {
    // don't leak
    delete self.requests[name];
  }
} else {
  // If there are no pending requests, then put it in
  // the freeSockets pool, but only if we're allowed to do so.
  var req = socket._httpMessage;
  if (req &&
      req.shouldKeepAlive &&
      socket.writable &&
      self.keepAlive) {
    var freeSockets = self.freeSockets[name];
    var freeLen = freeSockets ? freeSockets.length : 0;
    var count = freeLen;
    if (self.sockets[name])
      count += self.sockets[name].length;

    if (count > self.maxSockets || freeLen >= self.maxFreeSockets) {
      socket.destroy();
    } else {
      freeSockets = freeSockets || [];
      self.freeSockets[name] = freeSockets;
      socket.setKeepAlive(true, self.keepAliveMsecs);
      socket.unref();
      socket._httpMessage = null;
      self.removeSocket(socket, options);
      freeSockets.push(socket);
    }
  } else {
    socket.destroy();
  }
}

}, _eventsCount=1, _maxListeners=undefined, defaultPort=443, protocol=https:, rejectUnauthorized=false, path=null, , codeload.github.com:443:::::::false:=[$ref=$["socket"]], , keepAliveMsecs=1000, keepAlive=false, maxSockets=Infinity, maxFreeSockets=256, maxCachedSessions=100, 0=48, 1=130, 2=8, 3=0, 4=2, 5=1, 6=1, 7=2, 8=2, 9=3, 10=3, 11=4, 12=2, 13=192, 14=47, 15=4, 16=32, 17=71, 18=213, 19=78, 20=154, 21=47, 22=242, 23=254, 24=105, 25=219, 26=216, 27=100, 28=182, 29=112, 30=118, 31=171, 32=58, 33=238, 34=98, 35=108, 36=0, 37=106, 38=21, 39=43, 40=150, 41=57, 42=159, 43=253, 44=181, 45=136, 46=215, 47=176, 48=142, 49=4, 50=48, 51=232, 52=223, 53=174, 54=165, 55=231, 56=254, 57=97, 58=131, 59=59, 60=6, 61=254, 62=136, 63=77, 64=145, 65=138, 66=58, 67=247, 68=229, 69=138, 70=254, 71=5, 72=72, 73=234, 74=200, 75=59, 76=112, 77=181, 78=201, 79=252, 80=90, 81=37, 82=233, 83=90, 84=198, 85=195, 86=80, 87=186, 88=222, 89=43, 90=202, 91=182, 92=181, 93=114, 94=201, 95=233, 96=233, 97=120, 98=18, 99=161, 100=6, 101=2, 102=4, 103=88, 104=128, 105=4, 106=191, 107=162, 108=4, 109=2, 110=2, 111=1, 112=44, 113=163, 114=130, 115=7, 116=125, 117=48, 118=130, 119=7, 120=121, 121=48, 122=130, 123=6, 124=97, 125=160, 126=3, 127=2, 128=1, 129=2, 130=2, 131=16, 132=11, 133=253, 134=180, 135=9, 136=10, 137=215, 138=181, 139=230, 140=64, 141=195, 142=11, 143=22, 144=201, 145=82, 146=154, 147=39, 148=48, 149=13, 150=6, 151=9, 152=42, 153=134, 154=72, 155=134, 156=247, 157=13, 158=1, 159=1, 160=11, 161=5, 162=0, 163=48, 164=117, 165=49, 166=11, 167=48, 168=9, 169=6, 170=3, 171=85, 172=4, 173=6, 174=19, 175=2, 176=85, 177=83, 178=49, 179=21, 180=48, 181=19, 182=6, 183=3, 184=85, 185=4, 186=10, 187=19, 188=12, 189=68, 190=105, 191=103, 192=105, 193=67, 194=101, 195=114, 196=116, 197=32, 198=73, 199=110, 200=99, 201=49, 202=25, 203=48, 204=23, 205=6, 206=3, 207=85, 208=4, 209=11, 210=19, 211=16, 212=119, 213=119, 214=119, 215=46, 216=100, 217=105, 218=103, 219=105, 220=99, 221=101, 222=114, 223=116, 224=46, 225=99, 226=111, 227=109, 228=49, 229=52, 230=48, 231=50, 232=6, 233=3, 234=85, 235=4, 236=3, 237=19, 238=43, 239=68, 240=105, 241=103, 242=105, 243=67, 244=101, 245=114, 246=116, 247=32, 248=83, 249=72, 250=65, 251=50, 252=32, 253=69, 254=120, 255=116, 256=101, 257=110, 258=100, 259=101, 260=100, 261=32, 262=86, 263=97, 264=108, 265=105, 266=100, 267=97, 268=116, 269=105, 270=111, 271=110, 272=32, 273=83, 274=101, 275=114, 276=118, 277=101, 278=114, 279=32, 280=67, 281=65, 282=48, 283=30, 284=23, 285=13, 286=49, 287=54, 288=48, 289=51, 290=49, 291=48, 292=48, 293=48, 294=48, 295=48, 296=48, 297=48, 298=90, 299=23, 300=13, 301=49, 302=56, 303=48, 304=53, 305=49, 306=55, 307=49, 308=50, 309=48, 310=48, 311=48, 312=48, 313=90, 314=48, 315=129, 316=253, 317=49, 318=29, 319=48, 320=27, 321=6, 322=3, 323=85, 324=4, 325=15, 326=12, 327=20, 328=80, 329=114, 330=105, 331=118, 332=97, 333=116, 334=101, 335=32, 336=79, 337=114, 338=103, 339=97, 340=110, 341=105, 342=122, 343=97, 344=116, 345=105, 346=111, 347=110, 348=49, 349=19, 350=48, 351=17, 352=6, 353=11, 354=43, 355=6, 356=1, 357=4, 358=1, 359=130, 360=55, 361=60, 362=2, 363=1, 364=3, 365=19, 366=2, 367=85, 368=83, 369=49, 370=25, 371=48, 372=23, 373=6, 374=11, 375=43, 376=6, 377=1, 378=4, 379=1, 380=130, 381=55, 382=60, 383=2, 384=1, 385=2, 386=19, 387=8, 388=68, 389=101, 390=108, 391=97, 392=119, 393=97, 394=114, 395=101, 396=49, 397=16, 398=48, 399=14, 400=6, 401=3, 402=85, 403=4, 404=5, 405=19, 406=7, 407=53, 408=49, 409=53, 410=55, 411=53, 412=53, 413=48, 414=49, 415=36, 416=48, 417=34, 418=6, 419=3, 420=85, 421=4, 422=9, 423=19, 424=27, 425=56, 426=56, 427=32, 428=67, 429=111, 430=108, 431=105, 432=110, 433=32, 434=80, 435=32, 436=75, 437=101, 438=108, 439=108, 440=121, 441=44, 442=32, 443=74, 444=114, 445=32, 446=83, 447=116, 448=114, 449=101, 450=101, 451=116, 452=49, 453=14, 454=48, 455=12, 456=6, 457=3, 458=85, 459=4, 460=17, 461=19, 462=5, 463=57, 464=52, 465=49, 466=48, 467=55, 468=49, 469=11, 470=48, 471=9, 472=6, 473=3, 474=85, 475=4, 476=6, 477=19, 478=2, 479=85, 480=83, 481=49, 482=19, 483=48, 484=17, 485=6, 486=3, 487=85, 488=4, 489=8, 490=19, 491=10, 492=67, 493=97, 494=108, 495=105, 496=102, 497=111, 498=114, 499=110, 500=105, 501=97, 502=49, 503=22, 504=48, 505=20, 506=6, 507=3, 508=85, 509=4, 510=7, 511=19, 512=13, 513=83, 514=97, 515=110, 516=32, 517=70, 518=114, 519=97, 520=110, 521=99, 522=105, 523=115, 524=99, 525=111, 526=49, 527=21, 528=48, 529=19, 530=6, 531=3, 532=85, 533=4, 534=10, 535=19, 536=12, 537=71, 538=105, 539=116, 540=72, 541=117, 542=98, 543=44, 544=32, 545=73, 546=110, 547=99, 548=46, 549=49, 550=19, 551=48, 552=17, 553=6, 554=3, 555=85, 556=4, 557=3, 558=19, 559=10, 560=103, 561=105, 562=116, 563=104, 564=117, 565=98, 566=46, 567=99, 568=111, 569=109, 570=48, 571=130, 572=1, 573=34, 574=48, 575=13, 576=6, 577=9, 578=42, 579=134, 580=72, 581=134, 582=247, 583=13, 584=1, 585=1, 586=1, 587=5, 588=0, 589=3, 590=130, 591=1, 592=15, 593=0, 594=48, 595=130, 596=1, 597=10, 598=2, 599=130, 600=1, 601=1, 602=0, 603=231, 604=136, 605=92, 606=242, 607=150, 608=92, 609=151, 610=24, 611=28, 612=186, 613=152, 614=226, 615=3, 616=241, 617=127, 618=57, 619=145, 620=145, 621=194, 622=111, 623=217, 624=150, 625=231, 626=40, 627=64, 628=100, 629=205, 630=76, 631=169, 632=129, 633=18, 634=3, 635=108, 636=174, 637=127, 638=230, 639=198, 640=25, 641=224, 642=90, 643=99, 644=240, 645=108, 646=11, 647=212, 648=104, 649=179, 650=255, 651=253, 652=62, 653=253, 654=37, 655=207, 656=181, 657=89, 658=115, 659=41, 660=196, 661=200, 662=179, 663=244, 664=242, 665=186, 666=201, 667=148, 668=81, 669=22, 670=226, 671=40, 672=209, 673=221, 674=155, 675=199, 676=141, 677=183, 678=52, 679=14, 680=161, 681=56, 682=189, 683=145, 684=78, 685=214, 686=231, 687=126, 688=207, 689=178, 690=208, 691=241, 692=82, 693=253, 694=132, 695=233, 696=65, 697=39, 698=165, 699=78, 700=234, 701=190, 702=22, 703=236, 704=45, 705=179, 706=155, 707=250, 708=104, 709=12, 710=30, 711=55, 712=35, 713=28, 714=96, 715=61, 716=7, 717=7, 718=38, 719=228, 720=145, 721=218, 722=44, 723=22, 724=128, 725=220, 726=112, 727=19, 728=115, 729=39, 730=221, 731=128, 732=115, 733=194, 734=57, 735=17, 736=80, 737=212, 738=115, 739=115, 740=171, 741=255, 742=136, 743=210, 744=201, 745=156, 746=51, 747=198, 748=239, 749=100, 750=118, 751=96, 752=101, 753=7, 754=55, 755=135, 756=50, 757=251, 758=42, 759=116, 760=127, 761=18, 762=95, 763=217, 764=141, 765=106, 766=21, 767=237, 768=95, 769=20, 770=105, 771=193, 772=153, 773=193, 774=137, 775=72, 776=240, 777=223, 778=163, 779=224, 780=55, 781=235, 782=61, 783=24, 784=181, 785=134, 786=173, 787=167, 788=221, 789=211, 790=100, 791=244, 792=187, 793=31, 794=88, 795=205, 796=222, 797=94, 798=206, 799=67, 800=49, 801=186, 802=74, 803=132, 804=1, 805=14, 806=192, 807=40, 808=130, 809=34, 810=142, 811=246, 812=150, 813=60, 814=2, 815=91, 816=43, 817=254, 818=118, 819=92, 820=184, 821=72, 822=203, 823=107, 824=233, 825=24, 826=220, 827=165, 828=202, 829=120, 830=191, 831=13, 832=0, 833=245, 834=241, 835=176, 836=79, 837=79, 838=230, 839=70, 840=214, 841=235, 842=244, 843=65, 844=3, 845=253, 846=46, 847=230, 848=63, 849=142, 850=131, 851=190, 852=20, 853=160, 854=206, 855=78, 856=87, 857=171, 858=227, 859=2, 860=3, 861=1, 862=0, 863=1, 864=163, 865=130, 866=3, 867=122, 868=48, 869=130, 870=3, 871=118, 872=48, 873=31, 874=6, 875=3, 876=85, 877=29, 878=35, 879=4, 880=24, 881=48, 882=22, 883=128, 884=20, 885=61, 886=211, 887=80, 888=165, 889=214, 890=160, 891=173, 892=238, 893=243, 894=74, 895=96, 896=10, 897=101, 898=211, 899=33, 900=212, 901=248, 902=248, 903=214, 904=15, 905=48, 906=29, 907=6, 908=3, 909=85, 910=29, 911=14, 912=4, 913=22, 914=4, 915=20, 916=136, 917=92, 918=72, 919=103, 920=25, 921=204, 922=160, 923=118, 924=89, 925=45, 926=17, 927=121, 928=195, 929=190, 930=162, 931=172, 932=135, 933=34, 934=39, 935=91, 936=48, 937=37, 938=6, 939=3, 940=85, 941=29, 942=17, 943=4, 944=30, 945=48, 946=28, 947=130, 948=10, 949=103, 950=105, 951=116, 952=104, 953=117, 954=98, 955=46, 956=99, 957=111, 958=109, 959=130, 960=14, 961=119, 962=119, 963=119, 964=46, 965=103, 966=105, 967=116, 968=104, 969=117, 970=98, 971=46, 972=99, 973=111, 974=109, 975=48, 976=14, 977=6, 978=3, 979=85, 980=29, 981=15, 982=1, 983=1, 984=255, 985=4, 986=4, 987=3, 988=2, 989=5, 990=160, 991=48, 992=29, 993=6, 994=3, 995=85, 996=29, 997=37, 998=4, 999=22, 1000=48, 1001=20, 1002=6, 1003=8, 1004=43, 1005=6, 1006=1, 1007=5, 1008=5, 1009=7, 1010=3, 1011=1, 1012=6, 1013=8, 1014=43, 1015=6, 1016=1, 1017=5, 1018=5, 1019=7, 1020=3, 1021=2, 1022=48, 1023=117, 1024=6, 1025=3, 1026=85, 1027=29, 1028=31, 1029=4, 1030=110, 1031=48, 1032=108, 1033=48, 1034=52, 1035=160, 1036=50, 1037=160, 1038=48, 1039=134, 1040=46, 1041=104, 1042=116, 1043=116, 1044=112, 1045=58, 1046=47, 1047=47, 1048=99, 1049=114, 1050=108, 1051=51, 1052=46, 1053=100, 1054=105, 1055=103, 1056=105, 1057=99, 1058=101, 1059=114, 1060=116, 1061=46, 1062=99, 1063=111, 1064=109, 1065=47, 1066=115, 1067=104, 1068=97, 1069=50, 1070=45, 1071=101, 1072=118, 1073=45, 1074=115, 1075=101, 1076=114, 1077=118, 1078=101, 1079=114, 1080=45, 1081=103, 1082=49, 1083=46, 1084=99, 1085=114, 1086=108, 1087=48, 1088=52, 1089=160, 1090=50, 1091=160, 1092=48, 1093=134, 1094=46, 1095=104, 1096=116, 1097=116, 1098=112, 1099=58, 1100=47, 1101=47, 1102=99, 1103=114, 1104=108, 1105=52, 1106=46, 1107=100, 1108=105, 1109=103, 1110=105, 1111=99, 1112=101, 1113=114, 1114=116, 1115=46, 1116=99, 1117=111, 1118=109, 1119=47, 1120=115, 1121=104, 1122=97, 1123=50, 1124=45, 1125=101, 1126=118, 1127=45, 1128=115, 1129=101, 1130=114, 1131=118, 1132=101, 1133=114, 1134=45, 1135=103, 1136=49, 1137=46, 1138=99, 1139=114, 1140=108, 1141=48, 1142=75, 1143=6, 1144=3, 1145=85, 1146=29, 1147=32, 1148=4, 1149=68, 1150=48, 1151=66, 1152=48, 1153=55, 1154=6, 1155=9, 1156=96, 1157=134, 1158=72, 1159=1, 1160=134, 1161=253, 1162=108, 1163=2, 1164=1, 1165=48, 1166=42, 1167=48, 1168=40, 1169=6, 1170=8, 1171=43, 1172=6, 1173=1, 1174=5, 1175=5, 1176=7, 1177=2, 1178=1, 1179=22, 1180=28, 1181=104, 1182=116, 1183=116, 1184=112, 1185=115, 1186=58, 1187=47, 1188=47, 1189=119, 1190=119, 1191=119, 1192=46, 1193=100, 1194=105, 1195=103, 1196=105, 1197=99, 1198=101, 1199=114, 1200=116, 1201=46, 1202=99, 1203=111, 1204=109, 1205=47, 1206=67, 1207=80, 1208=83, 1209=48, 1210=7, 1211=6, 1212=5, 1213=103, 1214=129, 1215=12, 1216=1, 1217=1, 1218=48, 1219=129, 1220=136, 1221=6, 1222=8, 1223=43, 1224=6, 1225=1, 1226=5, 1227=5, 1228=7, 1229=1, 1230=1, 1231=4, 1232=124, 1233=48, 1234=122, 1235=48, 1236=36, 1237=6, 1238=8, 1239=43, 1240=6, 1241=1, 1242=5, 1243=5, 1244=7, 1245=48, 1246=1, 1247=134, 1248=24, 1249=104, 1250=116, 1251=116, 1252=112, 1253=58, 1254=47, 1255=47, 1256=111, 1257=99, 1258=115, 1259=112, 1260=46, 1261=100, 1262=105, 1263=103, 1264=105, 1265=99, 1266=101, 1267=114, 1268=116, 1269=46, 1270=99, 1271=111, 1272=109, 1273=48, 1274=82, 1275=6, 1276=8, 1277=43, 1278=6, 1279=1, 1280=5, 1281=5, 1282=7, 1283=48, 1284=2, 1285=134, 1286=70, 1287=104, 1288=116, 1289=116, 1290=112, 1291=58, 1292=47, 1293=47, 1294=99, 1295=97, 1296=99, 1297=101, 1298=114, 1299=116, 1300=115, 1301=46, 1302=100, 1303=105, 1304=103, 1305=105, 1306=99, 1307=101, 1308=114, 1309=116, 1310=46, 1311=99, 1312=111, 1313=109, 1314=47, 1315=68, 1316=105, 1317=103, 1318=105, 1319=67, 1320=101, 1321=114, 1322=116, 1323=83, 1324=72, 1325=65, 1326=50, 1327=69, 1328=120, 1329=116, 1330=101, 1331=110, 1332=100, 1333=101, 1334=100, 1335=86, 1336=97, 1337=108, 1338=105, 1339=100, 1340=97, 1341=116, 1342=105, 1343=111, 1344=110, 1345=83, 1346=101, 1347=114, 1348=118, 1349=101, 1350=114, 1351=67, 1352=65, 1353=46, 1354=99, 1355=114, 1356=116, 1357=48, 1358=12, 1359=6, 1360=3, 1361=85, 1362=29, 1363=19, 1364=1, 1365=1, 1366=255, 1367=4, 1368=2, 1369=48, 1370=0, 1371=48, 1372=130, 1373=1, 1374=127, 1375=6, 1376=10, 1377=43, 1378=6, 1379=1, 1380=4, 1381=1, 1382=214, 1383=121, 1384=2, 1385=4, 1386=2, 1387=4, 1388=130, 1389=1, 1390=111, 1391=4, 1392=130, 1393=1, 1394=107, 1395=1, 1396=105, 1397=0, 1398=118, 1399=0, 1400=164, 1401=185, 1402=9, 1403=144, 1404=180, 1405=24, 1406=88, 1407=20, 1408=135, 1409=187, 1410=19, 1411=162, 1412=204, 1413=103, 1414=112, 1415=10, 1416=60, 1417=53, 1418=152, 1419=4, 1420=249, 1421=27, 1422=223, 1423=184, 1424=227, 1425=119, 1426=205, 1427=14, 1428=200, 1429=13, 1430=220, 1431=16, 1432=0, 1433=0, 1434=1, 1435=83, 1436=97, 1437=137, 1438=234, 1439=30, 1440=0, 1441=0, 1442=4, 1443=3, 1444=0, 1445=71, 1446=48, 1447=69, 1448=2, 1449=33, 1450=0, 1451=135, 1452=29, 1453=33, 1454=24, 1455=253, 1456=19, 1457=138, 1458=219, 1459=251, 1460=14, 1461=150, 1462=54, 1463=202, 1464=104, 1465=209, 1466=28, 1467=41, 1468=108, 1469=250, 1470=7, 1471=17, 1472=201, 1473=52, 1474=243, 1475=173, 1476=141, 1477=44, 1478=174, 1479=86, 1480=116, 1481=167, 1482=225, 1483=2, 1484=32, 1485=39, 1486=164, 1487=106, 1488=189, 1489=134, 1490=210, 1491=95, 1492=91, 1493=202, 1494=45, 1495=229, 1496=251, 1497=190, 1498=153, 1499=206, 1500=124, 1501=32, 1502=31, 1503=75, 1504=102, 1505=60, 1506=148, 1507=30, 1508=81, 1509=52, 1510=204, 1511=36, 1512=234, 1513=235, 1514=54, 1515=66, 1516=32, 1517=0, 1518=118, 1519=0, 1520=104, 1521=246, 1522=152, 1523=248, 1524=31, 1525=100, 1526=130, 1527=190, 1528=58, 1529=140, 1530=238, 1531=185, 1532=40, 1533=29, 1534=76, 1535=252, 1536=113, 1537=81, 1538=93, 1539=103, 1540=147, 1541=212, 1542=68, 1543=209, 1544=10, 1545=103, 1546=172, 1547=187, 1548=79, 1549=79, 1550=251, 1551=196, 1552=0, 1553=0, 1554=1, 1555=83, 1556=97, 1557=137, 1558=233, 1559=231, 1560=0, 1561=0, 1562=4, 1563=3, 1564=0, 1565=71, 1566=48, 1567=69, 1568=2, 1569=33, 1570=0, 1571=217, 1572=165, 1573=222, 1574=82, 1575=251, 1576=123, 1577=104, 1578=242, 1579=78, 1580=229, 1581=112, 1582=55, 1583=150, 1584=6, 1585=24, 1586=137, 1587=1, 1588=40, 1589=152, 1590=78, 1591=77, 1592=171, 1593=52, 1594=4, 1595=246, 1596=234, 1597=85, 1598=90, 1599=51, 1600=124, 1601=97, 1602=91, 1603=2, 1604=32, 1605=53, 1606=74, 1607=171, 1608=144, 1609=131, 1610=131, 1611=102, 1612=148, 1613=96, 1614=250, 1615=72, 1616=97, 1617=167, 1618=198, 1619=160, 1620=235, 1621=144, 1622=124, 1623=154, 1624=237, 1625=41, 1626=224, 1627=149, 1628=0, 1629=154, 1630=68, 1631=67, 1632=110, 1633=38, 1634=39, 1635=70, 1636=246, 1637=0, 1638=119, 1639=0, 1640=86, 1641=20, 1642=6, 1643=154, 1644=47, 1645=215, 1646=194, 1647=236, 1648=211, 1649=245, 1650=225, 1651=189, 1652=68, 1653=178, 1654=62, 1655=199, 1656=70, 1657=118, 1658=185, 1659=188, 1660=153, 1661=17, 1662=92, 1663=192, 1664=239, 1665=148, 1666=152, 1667=85, 1668=214, 1669=137, 1670=208, 1671=221, 1672=0, 1673=0, 1674=1, 1675=83, 1676=97, 1677=137, 1678=234, 1679=153, 1680=0, 1681=0, 1682=4, 1683=3, 1684=0, 1685=72, 1686=48, 1687=70, 1688=2, 1689=33, 1690=0, 1691=231, 1692=155, 1693=117, 1694=146, 1695=182, 1696=91, 1697=196, 1698=247, 1699=209, 1700=130, 1701=139, 1702=52, 1703=177, 1704=249, 1705=65, 1706=173, 1707=26, 1708=100, 1709=36, 1710=217, 1711=100, 1712=232, 1713=146, 1714=131, 1715=224, 1716=163, 1717=88, 1718=95, 1719=138, 1720=255, 1721=51, 1722=32, 1723=2, 1724=33, 1725=0, 1726=250, 1727=216, 1728=121, 1729=122, 1730=193, 1731=130, 1732=199, 1733=128, 1734=246, 1735=53, 1736=22, 1737=90, 1738=128, 1739=120, 1740=34, 1741=249, 1742=156, 1743=102, 1744=219, 1745=33, 1746=141, 1747=123, 1748=40, 1749=157, 1750=63, 1751=12, 1752=32, 1753=109, 1754=110, 1755=215, 1756=49, 1757=124, 1758=48, 1759=13, 1760=6, 1761=9, 1762=42, 1763=134, 1764=72, 1765=134, 1766=247, 1767=13, 1768=1, 1769=1, 1770=11, 1771=5, 1772=0, 1773=3, 1774=130, 1775=1, 1776=1, 1777=0, 1778=139, 1779=108, 1780=219, 1781=100, 1782=198, 1783=235, 1784=41, 1785=171, 1786=39, 1787=42, 1788=242, 1789=29, 1790=68, 1791=165, 1792=185, 1793=128, 1794=95, 1795=76, 1796=12, 1797=228, 1798=58, 1799=22, 1800=238, 1801=19, 1802=63, 1803=21, 1804=87, 1805=115, 1806=224, 1807=178, 1808=119, 1809=42, 1810=103, 1811=237, 1812=202, 1813=77, 1814=114, 1815=119, 1816=200, 1817=255, 1818=61, 1819=44, 1820=81, 1821=172, 1822=4, 1823=13, 1824=216, 1825=202, 1826=255, 1827=126, 1828=178, 1829=158, 1830=43, 1831=195, 1832=68, 1833=213, 1834=195, 1835=35, 1836=139, 1837=125, 1838=166, 1839=37, 1840=176, 1841=106, 1842=165, 1843=107, 1844=74, 1845=255, 1846=236, 1847=2, 1848=249, 1849=171, 1850=207, 1851=166, 1852=80, 1853=84, 1854=108, 1855=218, 1856=115, 1857=63, 1858=157, 1859=220, 1860=185, 1861=51, 1862=5, 1863=253, 1864=11, 1865=44, 1866=196, 1867=139, 1868=79, 1869=24, 1870=211, 1871=249, 1872=252, 1873=228, 1874=253, 1875=2, 1876=61, 1877=65, 1878=196, 1879=15, 1880=205, 1881=161, 1882=245, 1883=153, 1884=42, 1885=30, 1886=46, 1887=125, 1888=94, 1889=220, 1890=207, 1891=122, 1892=88, 1893=68, 1894=52, 1895=184, 1896=4, 1897=95, 1898=132, 1899=16, 1900=84, 1901=56, 1902=151, 1903=145, 1904=152, 1905=251, 1906=42, 1907=120, 1908=88, 1909=144, 1910=63, 1911=197, 1912=43, 1913=216, 1914=177, 1915=49, 1916=214, 1917=121, 1918=108, 1919=81, 1920=15, 1921=95, 1922=231, 1923=151, 1924=173, 1925=191, 1926=69, 1927=223, 1928=69, 1929=55, 1930=99, 1931=100, 1932=105, 1933=196, 1934=85, 1935=163, 1936=48, 1937=177, 1938=69, 1939=89, 1940=94, 1941=22, 1942=176, 1943=71, 1944=76, 1945=92, 1946=106, 1947=32, 1948=254, 1949=164, 1950=14, 1951=124, 1952=98, 1953=44, 1954=73, 1955=65, 1956=173, 1957=153, 1958=224, 1959=181, 1960=141, 1961=59, 1962=137, 1963=235, 1964=90, 1965=97, 1966=149, 1967=75, 1968=64, 1969=223, 1970=196, 1971=79, 1972=42, 1973=139, 1974=65, 1975=251, 1976=108, 1977=127, 1978=196, 1979=222, 1980=115, 1981=4, 1982=228, 1983=149, 1984=184, 1985=239, 1986=155, 1987=195, 1988=83, 1989=38, 1990=166, 1991=218, 1992=33, 1993=88, 1994=159, 1995=99, 1996=10, 1997=176, 1998=52, 1999=223, 2000=184, 2001=149, 2002=28, 2003=82, 2004=220, 2005=94, 2006=101, 2007=54, 2008=80, 2009=63, 2010=138, 2011=93, 2012=118, 2013=32, 2014=232, 2015=27, 2016=70, 2017=42, 2018=11, 2019=35, 2020=173, 2021=168, 2022=240, 2023=109, 2024=3, 2025=104, 2026=69, 2027=16, 2028=128, 2029=115, 2030=95, 2031=242, 2032=244, 2033=134, 2034=164, 2035=2, 2036=4, 2037=0, 2038=166, 2039=12, 2040=4, 2041=10, 2042=103, 2043=105, 2044=116, 2045=104, 2046=117, 2047=98, 2048=46, 2049=99, 2050=111, 2051=109, 0=48, 1=130, 2=5, 3=219, 4=2, 5=1, 6=1, 7=2, 8=2, 9=3, 10=3, 11=4, 12=2, 13=192, 14=47, 15=4, 16=32, 17=193, 18=167, 19=117, 20=167, 21=142, 22=132, 23=11, 24=68, 25=54, 26=132, 27=115, 28=171, 29=250, 30=40, 31=108, 32=207, 33=241, 34=215, 35=231, 36=76, 37=140, 38=164, 39=127, 40=133, 41=118, 42=90, 43=33, 44=170, 45=218, 46=60, 47=202, 48=97, 49=4, 50=48, 51=148, 52=174, 53=225, 54=254, 55=78, 56=253, 57=159, 58=113, 59=174, 60=42, 61=42, 62=237, 63=18, 64=217, 65=131, 66=236, 67=46, 68=246, 69=68, 70=48, 71=56, 72=113, 73=232, 74=144, 75=216, 76=169, 77=167, 78=243, 79=138, 80=89, 81=150, 82=187, 83=62, 84=89, 85=184, 86=145, 87=224, 88=75, 89=79, 90=251, 91=142, 92=92, 93=108, 94=146, 95=118, 96=206, 97=231, 98=116, 99=161, 100=6, 101=2, 102=4, 103=88, 104=128, 105=4, 106=192, 107=162, 108=4, 109=2, 110=2, 111=1, 112=44, 113=163, 114=130, 115=5, 116=79, 117=48, 118=130, 119=5, 120=75, 121=48, 122=130, 123=4, 124=51, 125=160, 126=3, 127=2, 128=1, 129=2, 130=2, 131=16, 132=13, 133=112, 134=66, 135=57, 136=99, 137=2, 138=198, 139=38, 140=188, 141=134, 142=213, 143=207, 144=205, 145=80, 146=59, 147=239, 148=48, 149=13, 150=6, 151=9, 152=42, 153=134, 154=72, 155=134, 156=247, 157=13, 158=1, 159=1, 160=11, 161=5, 162=0, 163=48, 164=112, 165=49, 166=11, 167=48, 168=9, 169=6, 170=3, 171=85, 172=4, 173=6, 174=19, 175=2, 176=85, 177=83, 178=49, 179=21, 180=48, 181=19, 182=6, 183=3, 184=85, 185=4, 186=10, 187=19, 188=12, 189=68, 190=105, 191=103, 192=105, 193=67, 194=101, 195=114, 196=116, 197=32, 198=73, 199=110, 200=99, 201=49, 202=25, 203=48, 204=23, 205=6, 206=3, 207=85, 208=4, 209=11, 210=19, 211=16, 212=119, 213=119, 214=119, 215=46, 216=100, 217=105, 218=103, 219=105, 220=99, 221=101, 222=114, 223=116, 224=46, 225=99, 226=111, 227=109, 228=49, 229=47, 230=48, 231=45, 232=6, 233=3, 234=85, 235=4, 236=3, 237=19, 238=38, 239=68, 240=105, 241=103, 242=105, 243=67, 244=101, 245=114, 246=116, 247=32, 248=83, 249=72, 250=65, 251=50, 252=32, 253=72, 254=105, 255=103, 256=104, 257=32, 258=65, 259=115, 260=115, 261=117, 262=114, 263=97, 264=110, 265=99, 266=101, 267=32, 268=83, 269=101, 270=114, 271=118, 272=101, 273=114, 274=32, 275=67, 276=65, 277=48, 278=30, 279=23, 280=13, 281=49, 282=52, 283=48, 284=52, 285=48, 286=56, 287=48, 288=48, 289=48, 290=48, 291=48, 292=48, 293=90, 294=23, 295=13, 296=49, 297=55, 298=48, 299=52, 300=49, 301=50, 302=49, 303=50, 304=48, 305=48, 306=48, 307=48, 308=90, 309=48, 310=104, 311=49, 312=11, 313=48, 314=9, 315=6, 316=3, 317=85, 318=4, 319=6, 320=19, 321=2, 322=85, 323=83, 324=49, 325=19, 326=48, 327=17, 328=6, 329=3, 330=85, 331=4, 332=8, 333=19, 334=10, 335=67, 336=97, 337=108, 338=105, 339=102, 340=111, 341=114, 342=110, 343=105, 344=97, 345=49, 346=22, 347=48, 348=20, 349=6, 350=3, 351=85, 352=4, 353=7, 354=19, 355=13, 356=83, 357=97, 358=110, 359=32, 360=70, 361=114, 362=97, 363=110, 364=99, 365=105, 366=115, 367=99, 368=111, 369=49, 370=21, 371=48, 372=19, 373=6, 374=3, 375=85, 376=4, 377=10, 378=19, 379=12, 380=71, 381=105, 382=116, 383=72, 384=117, 385=98, 386=44, 387=32, 388=73, 389=110, 390=99, 391=46, 392=49, 393=21, 394=48, 395=19, 396=6, 397=3, 398=85, 399=4, 400=3, 401=12, 402=12, 403=42, 404=46, 405=103, 406=105, 407=116, 408=104, 409=117, 410=98, 411=46, 412=99, 413=111, 414=109, 415=48, 416=130, 417=1, 418=34, 419=48, 420=13, 421=6, 422=9, 423=42, 424=134, 425=72, 426=134, 427=247, 428=13, 429=1, 430=1, 431=1, 432=5, 433=0, 434=3, 435=130, 436=1, 437=15, 438=0, 439=48, 440=130, 441=1, 442=10, 443=2, 444=130, 445=1, 446=1, 447=0, 448=222, 449=233, 450=218, 451=76, 452=255, 453=2, 454=93, 455=226, 456=187, 457=139, 458=228, 459=78, 460=16, 461=143, 462=248, 463=43, 464=249, 465=255, 466=241, 467=100, 468=144, 469=195, 470=34, 471=176, 472=128, 473=129, 474=140, 475=139, 476=180, 477=21, 478=203, 479=86, 480=118, 481=116, 482=25, 483=225, 484=49, 485=187, 486=155, 487=165, 488=140, 489=45, 490=215, 491=255, 492=79, 493=47, 494=166, 495=45, 496=95, 497=225, 498=18, 499=69, 500=121, 501=155, 502=6, 503=38, 504=35, 505=203, 506=220, 507=253, 508=22, 509=107, 510=175, 511=146, 512=248, 513=177, 514=135, 515=93, 516=154, 517=10, 518=87, 519=39, 520=241, 521=156, 522=22, 523=105, 524=222, 525=49, 526=227, 527=187, 528=160, 529=234, 530=65, 531=228, 532=84, 533=235, 534=152, 535=51, 536=112, 537=57, 538=214, 539=0, 540=218, 541=242, 542=84, 543=139, 544=132, 545=248, 546=79, 547=73, 548=62, 549=245, 550=174, 551=199, 552=10, 553=239, 554=246, 555=118, 556=174, 557=99, 558=100, 559=52, 560=172, 561=125, 562=247, 563=236, 564=213, 565=96, 566=155, 567=95, 568=100, 569=145, 570=218, 571=76, 572=154, 573=126, 574=173, 575=214, 576=164, 577=184, 578=154, 579=160, 580=57, 581=235, 582=184, 583=200, 584=31, 585=131, 586=172, 587=32, 588=216, 589=243, 590=40, 591=57, 592=115, 593=70, 594=107, 595=86, 596=128, 597=72, 598=4, 599=107, 600=15, 601=82, 602=163, 603=87, 604=141, 605=184, 606=113, 607=93, 608=31, 609=172, 610=96, 611=48, 612=108, 613=160, 614=157, 615=236, 616=70, 617=200, 618=41, 619=137, 620=140, 621=246, 622=103, 623=95, 624=213, 625=188, 626=102, 627=83, 628=3, 629=229, 630=86, 631=244, 632=185, 633=127, 634=120, 635=243, 636=154, 637=149, 638=20, 639=70, 640=245, 641=110, 642=37, 643=97, 644=19, 645=243, 646=164, 647=116, 648=36, 649=181, 650=30, 651=65, 652=24, 653=226, 654=97, 655=159, 656=76, 657=99, 658=227, 659=4, 660=23, 661=140, 662=54, 663=224, 664=252, 665=195, 666=232, 667=126, 668=154, 669=37, 670=162, 671=218, 672=12, 673=83, 674=170, 675=67, 676=194, 677=194, 678=207, 679=181, 680=59, 681=189, 682=247, 683=206, 684=163, 685=254, 686=214, 687=130, 688=183, 689=1, 690=128, 691=138, 692=232, 693=194, 694=139, 695=111, 696=154, 697=193, 698=47, 699=120, 700=79, 701=43, 702=182, 703=73, 704=2, 705=3, 706=1, 707=0, 708=1, 709=163, 710=130, 711=1, 712=231, 713=48, 714=130, 715=1, 716=227, 717=48, 718=31, 719=6, 720=3, 721=85, 722=29, 723=35, 724=4, 725=24, 726=48, 727=22, 728=128, 729=20, 730=81, 731=104, 732=255, 733=144, 734=175, 735=2, 736=7, 737=117, 738=60, 739=204, 740=217, 741=101, 742=100, 743=98, 744=162, 745=18, 746=184, 747=89, 748=114, 749=59, 750=48, 751=29, 752=6, 753=3, 754=85, 755=29, 756=14, 757=4, 758=22, 759=4, 760=20, 761=30, 762=91, 763=173, 764=33, 765=122, 766=212, 767=86, 768=3, 769=145, 770=104, 771=181, 772=6, 773=37, 774=245, 775=151, 776=227, 777=73, 778=122, 779=12, 780=42, 781=48, 782=35, 783=6, 784=3, 785=85, 786=29, 787=17, 788=4, 789=28, 790=48, 791=26, 792=130, 793=12, 794=42, 795=46, 796=103, 797=105, 798=116, 799=104, 800=117, 801=98, 802=46, 803=99, 804=111, 805=109, 806=130, 807=10, 808=103, 809=105, 810=116, 811=104, 812=117, 813=98, 814=46, 815=99, 816=111, 817=109, 818=48, 819=14, 820=6, 821=3, 822=85, 823=29, 824=15, 825=1, 826=1, 827=255, 828=4, 829=4, 830=3, 831=2, 832=5, 833=160, 834=48, 835=29, 836=6, 837=3, 838=85, 839=29, 840=37, 841=4, 842=22, 843=48, 844=20, 845=6, 846=8, 847=43, 848=6, 849=1, 850=5, 851=5, 852=7, 853=3, 854=1, 855=6, 856=8, 857=43, 858=6, 859=1, 860=5, 861=5, 862=7, 863=3, 864=2, 865=48, 866=117, 867=6, 868=3, 869=85, 870=29, 871=31, 872=4, 873=110, 874=48, 875=108, 876=48, 877=52, 878=160, 879=50, 880=160, 881=48, 882=134, 883=46, 884=104, 885=116, 886=116, 887=112, 888=58, 889=47, 890=47, 891=99, 892=114, 893=108, 894=51, 895=46, 896=100, 897=105, 898=103, 899=105, 900=99, 901=101, 902=114, 903=116, 904=46, 905=99, 906=111, 907=109, 908=47, 909=115, 910=104, 911=97, 912=50, 913=45, 914=104, 915=97, 916=45, 917=115, 918=101, 919=114, 920=118, 921=101, 922=114, 923=45, 924=103, 925=49, 926=46, 927=99, 928=114, 929=108, 930=48, 931=52, 932=160, 933=50, 934=160, 935=48, 936=134, 937=46, 938=104, 939=116, 940=116, 941=112, 942=58, 943=47, 944=47, 945=99, 946=114, 947=108, 948=52, 949=46, 950=100, 951=105, 952=103, 953=105, 954=99, 955=101, 956=114, 957=116, 958=46, 959=99, 960=111, 961=109, 962=47, 963=115, 964=104, 965=97, 966=50, 967=45, 968=104, 969=97, 970=45, 971=115, 972=101, 973=114, 974=118, 975=101, 976=114, 977=45, 978=103, 979=49, 980=46, 981=99, 982=114, 983=108, 984=48, 985=66, 986=6, 987=3, 988=85, 989=29, 990=32, 991=4, 992=59, 993=48, 994=57, 995=48, 996=55, 997=6, 998=9, 999=96, 1000=134, 1001=72, 1002=1, 1003=134, 1004=253, 1005=108, 1006=1, 1007=1, 1008=48, 1009=42, 1010=48, 1011=40, 1012=6, 1013=8, 1014=43, 1015=6, 1016=1, 1017=5, 1018=5, 1019=7, 1020=2, 1021=1, 1022=22, 1023=28, 1024=104, 1025=116, 1026=116, 1027=112, 1028=115, 1029=58, 1030=47, 1031=47, 1032=119, 1033=119, 1034=119, 1035=46, 1036=100, 1037=105, 1038=103, 1039=105, 1040=99, 1041=101, 1042=114, 1043=116, 1044=46, 1045=99, 1046=111, 1047=109, 1048=47, 1049=67, 1050=80, 1051=83, 1052=48, 1053=129, 1054=131, 1055=6, 1056=8, 1057=43, 1058=6, 1059=1, 1060=5, 1061=5, 1062=7, 1063=1, 1064=1, 1065=4, 1066=119, 1067=48, 1068=117, 1069=48, 1070=36, 1071=6, 1072=8, 1073=43, 1074=6, 1075=1, 1076=5, 1077=5, 1078=7, 1079=48, 1080=1, 1081=134, 1082=24, 1083=104, 1084=116, 1085=116, 1086=112, 1087=58, 1088=47, 1089=47, 1090=111, 1091=99, 1092=115, 1093=112, 1094=46, 1095=100, 1096=105, 1097=103, 1098=105, 1099=99, 1100=101, 1101=114, 1102=116, 1103=46, 1104=99, 1105=111, 1106=109, 1107=48, 1108=77, 1109=6, 1110=8, 1111=43, 1112=6, 1113=1, 1114=5, 1115=5, 1116=7, 1117=48, 1118=2, 1119=134, 1120=65, 1121=104, 1122=116, 1123=116, 1124=112, 1125=58, 1126=47, 1127=47, 1128=99, 1129=97, 1130=99, 1131=101, 1132=114, 1133=116, 1134=115, 1135=46, 1136=100, 1137=105, 1138=103, 1139=105, 1140=99, 1141=101, 1142=114, 1143=116, 1144=46, 1145=99, 1146=111, 1147=109, 1148=47, 1149=68, 1150=105, 1151=103, 1152=105, 1153=67, 1154=101, 1155=114, 1156=116, 1157=83, 1158=72, 1159=65, 1160=50, 1161=72, 1162=105, 1163=103, 1164=104, 1165=65, 1166=115, 1167=115, 1168=117, 1169=114, 1170=97, 1171=110, 1172=99, 1173=101, 1174=83, 1175=101, 1176=114, 1177=118, 1178=101, 1179=114, 1180=67, 1181=65, 1182=46, 1183=99, 1184=114, 1185=116, 1186=48, 1187=12, 1188=6, 1189=3, 1190=85, 1191=29, 1192=19, 1193=1, 1194=1, 1195=255, 1196=4, 1197=2, 1198=48, 1199=0, 1200=48, 1201=13, 1202=6, 1203=9, 1204=42, 1205=134, 1206=72, 1207=134, 1208=247, 1209=13, 1210=1, 1211=1, 1212=11, 1213=5, 1214=0, 1215=3, 1216=130, 1217=1, 1218=1, 1219=0, 1220=23, 1221=216, 1222=246, 1223=125, 1224=188, 1225=102, 1226=64, 1227=174, 1228=26, 1229=112, 1230=202, 1231=13, 1232=121, 1233=100, 1234=36, 1235=130, 1236=200, 1237=183, 1238=59, 1239=138, 1240=169, 1241=22, 1242=254, 1243=81, 1244=227, 1245=222, 1246=173, 1247=227, 1248=175, 1249=234, 1250=16, 1251=233, 1252=153, 1253=84, 1254=187, 1255=164, 1256=11, 1257=254, 1258=5, 1259=44, 1260=7, 1261=152, 1262=223, 1263=93, 1264=75, 1265=212, 1266=160, 1267=187, 1268=164, 1269=92, 1270=31, 1271=199, 1272=8, 1273=39, 1274=93, 1275=227, 1276=90, 1277=219, 1278=51, 1279=187, 1280=62, 1281=128, 1282=181, 1283=133, 1284=41, 1285=166, 1286=143, 1287=165, 1288=199, 1289=75, 1290=209, 1291=214, 1292=75, 1293=153, 1294=196, 1295=246, 1296=71, 1297=203, 1298=227, 1299=207, 1300=117, 1301=93, 1302=176, 1303=52, 1304=172, 1305=34, 1306=129, 1307=92, 1308=123, 1309=255, 1310=64, 1311=110, 1312=221, 1313=78, 1314=206, 1315=57, 1316=225, 1317=161, 1318=42, 1319=174, 1320=148, 1321=64, 1322=50, 1323=9, 1324=180, 1325=28, 1326=131, 1327=37, 1328=157, 1329=140, 1330=135, 1331=27, 1332=172, 1333=46, 1334=254, 1335=251, 1336=204, 1337=71, 1338=81, 1339=60, 1340=237, 1341=52, 1342=67, 1343=16, 1344=86, 1345=204, 1346=75, 1347=245, 1348=201, 1349=96, 1350=94, 1351=38, 1352=123, 1353=28, 1354=44, 1355=161, 1356=168, 1357=161, 1358=213, 1359=178, 1360=184, 1361=101, 1362=90, 1363=128, 1364=151, 1365=128, 1366=148, 1367=31, 1368=10, 1369=167, 1370=4, 1371=61, 1372=215, 1373=170, 1374=238, 1375=203, 1376=240, 1377=137, 1378=101, 1379=206, 1380=239, 1381=165, 1382=121, 1383=187, 1384=157, 1385=172, 1386=215, 1387=155, 1388=204, 1389=247, 1390=56, 1391=162, 1392=188, 1393=124, 1394=88, 1395=16, 1396=8, 1397=65, 1398=244, 1399=197, 1400=131, 1401=218, 1402=242, 1403=61, 1404=78, 1405=18, 1406=177, 1407=70, 1408=24, 1409=149, 1410=168, 1411=123, 1412=74, 1413=3, 1414=224, 1415=217, 1416=4, 1417=65, 1418=101, 1419=215, 1420=96, 1421=52, 1422=144, 1423=168, 1424=17, 1425=115, 1426=122, 1427=2, 1428=52, 1429=119, 1430=255, 1431=127, 1432=10, 1433=127, 1434=74, 1435=20, 1436=104, 1437=35, 1438=11, 1439=217, 1440=2, 1441=106, 1442=25, 1443=249, 1444=102, 1445=27, 1446=223, 1447=17, 1448=38, 1449=220, 1450=56, 1451=188, 1452=212, 1453=192, 1454=120, 1455=56, 1456=125, 1457=129, 1458=135, 1459=82, 1460=66, 1461=94, 1462=62, 1463=50, 1464=47, 1465=66, 1466=111, 1467=63, 1468=102, 1469=195, 1470=214, 1471=145, 1472=131, 1473=23, 1474=243, 1475=228, 1476=164, 1477=2, 1478=4, 1479=0, 1480=166, 1481=21, 1482=4, 1483=19, 1484=99, 1485=111, 1486=100, 1487=101, 1488=108, 1489=111, 1490=97, 1491=100, 1492=46, 1493=103, 1494=105, 1495=116, 1496=104, 1497=117, 1498=98, 1499=46, 1500=99, 1501=111, 1502=109, list=[github.com:443:::::::false:, codeload.github.com:443:::::::false:], socketPath=undefined, timeout=undefined, method=GET, path=/driftyco/ionic2-app-base/zip/typescript, _ended=true, parser=null, $ref=$, read=function (n) {
debug('read', n);
n = parseInt(n, 10);
var state = this._readableState;
var nOrig = n;

if (n !== 0)
state.emittedReadable = false;

// if we're doing read(0) to trigger a readable event, but we
// already have a bunch of data in the buffer, then just trigger
// the 'readable' event and move on.
if (n === 0 &&
state.needReadable &&
(state.length >= state.highWaterMark || state.ended)) {
debug('read: emitReadable', state.length, state.ended);
if (state.length === 0 && state.ended)
endReadable(this);
else
emitReadable(this);
return null;
}

n = howMuchToRead(n, state);

// if we've ended, and we're now clear, then finish it up.
if (n === 0 && state.ended) {
if (state.length === 0)
endReadable(this);
return null;
}

// All the actual chunk generation logic needs to be
// below the call to _read. The reason is that in certain
// synthetic stream cases, such as passthrough streams, _read
// may be a completely synchronous operation which may change
// the state of the read buffer, providing enough data when
// before there was not enough.
//
// So, the steps are:
// 1. Figure out what the state of things will be after we do
// a read from the buffer.
//
// 2. If that resulting state will trigger a _read, then call _read.
// Note that this may be asynchronous, or synchronous. Yes, it is
// deeply ugly to write APIs this way, but that still doesn't mean
// that the Readable class should behave improperly, as streams are
// designed to be sync/async agnostic.
// Take note if the _read call is sync or async (ie, if the read call
// has returned yet), so that we know whether or not it's safe to emit
// 'readable' etc.
//
// 3. Actually pull the requested chunks out of the buffer and return.

// if we need a readable event, then we need to do some reading.
var doRead = state.needReadable;
debug('need readable', doRead);

// if we currently have less than the highWaterMark, then also read some
if (state.length === 0 || state.length - n < state.highWaterMark) {
doRead = true;
debug('length less than watermark', doRead);
}

// however, if we've ended, then there's no point, and if we're already
// reading, then it's unnecessary.
if (state.ended || state.reading) {
doRead = false;
debug('reading or ended', doRead);
} else if (doRead) {
debug('do read');
state.reading = true;
state.sync = true;
// if the length is currently zero, then we need a readable event.
if (state.length === 0)
state.needReadable = true;
// call internal read method
this._read(state.highWaterMark);
state.sync = false;
// If _read pushed data synchronously, then reading will be false,
// and we need to re-evaluate how much data we can return to the user.
if (!state.reading)
n = howMuchToRead(nOrig, state);
}

var ret;
if (n > 0)
ret = fromList(n, state);
else
ret = null;

if (ret === null) {
state.needReadable = true;
n = 0;
} else {
state.length -= n;
}

if (state.length === 0) {
// If we have nothing in the buffer, then we want to know
// as soon as we do get something into the buffer.
if (!state.ended)
state.needReadable = true;

// If we tried to read() past the EOF, then emit end on the next tick.
if (nOrig !== n && state.ended)
  endReadable(this);

}

if (ret !== null)
this.emit('data', ret);

return ret;
}, _consuming=true, _idleNext=null, _idlePrev=null, _idleTimeout=-1, $ref=$["socket"], httpVersionMajor=1, httpVersionMinor=1, httpVersion=1.1, complete=true, content-length=15, access-control-allow-origin=https://render.githubusercontent.com, content-security-policy=default-src 'none'; style-src 'unsafe-inline', strict-transport-security=max-age=31536000, vary=Authorization,Accept-Encoding, x-content-type-options=nosniff, x-frame-options=deny, x-xss-protection=1; mode=block, date=Thu, 19 Jan 2017 00:13:53 GMT, x-github-request-id=E935:6AAC:45AC8:59A27:588004C1, connection=close, rawHeaders=[Content-Length, 15, Access-Control-Allow-Origin, https://render.githubusercontent.com, Content-Security-Policy, default-src 'none'; style-src 'unsafe-inline', Strict-Transport-Security, max-age=31536000, Vary, Authorization,Accept-Encoding, X-Content-Type-Options, nosniff, X-Frame-Options, deny, X-XSS-Protection, 1; mode=block, Date, Thu, 19 Jan 2017 00:13:53 GMT, X-GitHub-Request-Id, E935:6AAC:45AC8:59A27:588004C1, Connection, close], , rawTrailers=[], upgrade=false, url=, method=null, statusCode=404, statusMessage=Not Found, $ref=$["socket"], _consuming=true, _dumped=false, $ref=$["socket"]["_httpMessage"], domain=null, error=function () { [native code] }, complete=function () { [native code] }, pipe=[function (src) {
if (self.ntick && self._started) {
throw new Error('You cannot pipe to this stream after the outbound request has started.')
}
self.src = src
if (isReadStream(src)) {
if (!self.hasHeader('content-type')) {
self.setHeader('content-type', mime.lookup(src.path))
}
} else {
if (src.headers) {
for (var i in src.headers) {
if (!self.hasHeader(i)) {
self.setHeader(i, src.headers[i])
}
}
}
if (self._json && !self.hasHeader('content-type')) {
self.setHeader('content-type', 'application/json')
}
if (src.method && !self.explicitMethod) {
self.method = src.method
}
}

// self.on('pipe', function () {
//   console.error('You have already piped to this stream. Pipeing twice is likely to break the request.')
// })

}, function (src) {
if (self.ntick && self._started) {
throw new Error('You cannot pipe to this stream after the outbound request has started.')
}
self.src = src
if (isReadStream(src)) {
if (!self.hasHeader('content-type')) {
self.setHeader('content-type', mime.lookup(src.path))
}
} else {
if (src.headers) {
for (var i in src.headers) {
if (!self.hasHeader(i)) {
self.setHeader(i, src.headers[i])
}
}
}
if (self._json && !self.hasHeader('content-type')) {
self.setHeader('content-type', 'application/json')
}
if (src.method && !self.explicitMethod) {
self.method = src.method
}
}

// self.on('pipe', function () {
//   console.error('You have already piped to this stream. Pipeing twice is likely to break the request.')
// })

}], response=function (res) {

// Add default flag for CLI - have it attach multibar and upgrade its progress for
// simultaneous downloading bars (crosswalk).
if (!isGui) {
  var bar = Multibar.newBar('[:bar]  :percent  :etas', {
    complete: '=',
    incomplete: ' ',
    width: 30,
    total: parseInt(res.headers['content-length'], 10)
  });

  res.on('data', function(chunk) {
    try {
      bar.tick(chunk.length);
    } catch (e) {} // eslint-disable-line no-empty
  });
}

}, end=[function () {
if ( self.req.connection ) {
self.req.connection.removeListener('error', connectionErrorHandler)
}
}, function () {
if ( self.req.connection ) {
self.req.connection.removeListener('error', connectionErrorHandler)
}
}, function () {
debug('end event', self.uri.href)
if (self._aborted) {
debug('aborted', self.uri.href)
return
}

    if (buffer.length) {
      debug('has body', self.uri.href, buffer.length)
      if (self.encoding === null) {
        // response.body = buffer
        // can't move to this until https://github.com/rvagg/bl/issues/13
        response.body = buffer.slice()
      } else {
        response.body = buffer.toString(self.encoding)
      }
    } else if (strings.length) {
      // The UTF8 BOM [0xEF,0xBB,0xBF] is converted to [0xFE,0xFF] in the JS UTC16/UCS2 representation.
      // Strip this value out when the encoding is set to 'utf8', as upstream consumers won't expect it and it breaks JSON.parse().
      if (self.encoding === 'utf8' && strings[0].length > 0 && strings[0][0] === '\uFEFF') {
        strings[0] = strings[0].substring(1)
      }
      response.body = strings.join('')
    }

    if (self._json) {
      try {
        response.body = JSON.parse(response.body, self._jsonReviver)
      } catch (e) {}
    }
    debug('emitting complete', self.uri.href)
    if(typeof response.body === 'undefined' && !self._json) {
      response.body = ''
    }
    self.emit('complete', response, response.body)
  }], data=function (chunk) {
    if (Buffer.isBuffer(chunk)) {
      buffer.append(chunk)
    } else {
      strings.push(chunk)
    }
  }, _eventsCount=6, _maxListeners=undefined, protocol=https:, slashes=true, auth=null, host=codeload.github.com, port=443, hostname=codeload.github.com, hash=null, search=null, query=null, pathname=/driftyco/ionic2-app-base/zip/typescript, path=/driftyco/ionic2-app-base/zip/typescript, href=https://codeload.github.com/driftyco/ionic2-app-base/zip/typescript, callback=function () {
  if (self._callbackCalled) {
    return // Print a warning maybe?
  }
  self._callbackCalled = true
  self._callback.apply(self, arguments)
}, rejectUnauthorized=false, encoding=null, proxy=null, readable=true, writable=true, canTunnel=false, , setHeader=function (key, value, clobber) {
return c.set(key, value, clobber)

}, hasHeader=function (key) {
return c.has(key)
}, getHeader=function (key) {
return c.get(key)
}, removeHeader=function (key) {
return c.del(key)
}, method=GET, localAddress=undefined, stringify=function (obj, options) {

options = options || {};
var delimiter = typeof options.delimiter === 'undefined' ? internals.delimiter : options.delimiter;
options.indices = typeof options.indices === 'boolean' ? options.indices : internals.indices;

var keys = [];

if (typeof obj !== 'object' ||
    obj === null) {

    return '';
}

var objKeys = Object.keys(obj);
for (var i = 0, il = objKeys.length; i < il; ++i) {
    var key = objKeys[i];
    keys = keys.concat(internals.stringify(obj[key], key, options));
}

return keys.join(delimiter);

}, parse=function (str, options) {

if (str === '' ||
    str === null ||
    typeof str === 'undefined') {

    return {};
}

options = options || {};
options.delimiter = typeof options.delimiter === 'string' || Utils.isRegExp(options.delimiter) ? options.delimiter : internals.delimiter;
options.depth = typeof options.depth === 'number' ? options.depth : internals.depth;
options.arrayLimit = typeof options.arrayLimit === 'number' ? options.arrayLimit : internals.arrayLimit;
options.parameterLimit = typeof options.parameterLimit === 'number' ? options.parameterLimit : internals.parameterLimit;

var tempObj = typeof str === 'string' ? internals.parseValues(str, options) : str;
var obj = {};

// Iterate over the keys and setup the new object

var keys = Object.keys(tempObj);
for (var i = 0, il = keys.length; i < il; ++i) {
    var key = keys[i];
    var newObj = internals.parseKeys(key, tempObj[key], options);
    obj = Utils.merge(obj, newObj);
}

return Utils.compact(obj);

}, $ref=$["socket"]["_httpMessage"]["agent"], dests=[], __isRequestRequest=true, _callback=function (err, res, body) {
if (err) {
return q.reject(err);
}
if (!res) {
log.error('Invalid response:'.red.bold, archiveUrl);
return q.reject('Unable to fetch response: ' + archiveUrl);
}
if (parseInt(res.statusCode, 10) !== 200) {
if (parseInt(res.statusCode, 10) === 404 || parseInt(res.statusCode, 10) === 406) {
log.error('Not found:'.red.bold, archiveUrl, '(' + res.statusCode + ')');
log.error('Please verify the url and try again.'.red.bold);
} else {
log.error('Invalid response status:'.red.bold, archiveUrl, '(' + res.statusCode + ')');
}
q.reject(res);
return;
}
try {
fs.writeFileSync(tempZipFilePath, body);
var zip = new AdmZip(tempZipFilePath);
zip.extractAllTo(targetPath);
q.resolve();
} catch (e) {
log.debug('fetchArchive request write: ', e);
q.reject(e);
}
}, tunnel=false, _redirectsFollowed=1, maxRedirects=10, allowRedirect=function (response) {
return true
}, followRedirects=true, followAllRedirects=false, redirects=[statusCode=302, redirectUri=https://codeload.github.com/driftyco/ionic2-app-base/zip/typescript], setHost=true, originalCookieHeader=undefined, _disableCookies=true, _jar=undefined, port=443, host=codeload.github.com, path=/driftyco/ionic2-app-base/zip/typescript, Server=function Server(opts, requestListener) {
if (!(this instanceof Server)) return new Server(opts, requestListener);

if (process.features.tls_npn && !opts.NPNProtocols) {
opts.NPNProtocols = ['http/1.1', 'http/1.0'];
}

if (process.features.tls_alpn && !opts.ALPNProtocols) {
// http/1.0 is not defined as Protocol IDs in IANA
// http://www.iana.org/assignments/tls-extensiontype-values
// /tls-extensiontype-values.xhtml#alpn-protocol-ids
opts.ALPNProtocols = ['http/1.1'];
}

tls.Server.call(this, opts, http._connectionListener);

this.httpAllowHalfOpen = false;

if (requestListener) {
this.addListener('request', requestListener);
}

this.addListener('tlsClientError', function(err, conn) {
if (!this.emit('clientError', err, conn))
conn.destroy(err);
});

this.timeout = 2 * 60 * 1000;
}, createServer=function (opts, requestListener) {
return new Server(opts, requestListener);
}, domain=null, free=function (socket, options) {
var name = self.getName(options);
debug('agent.on(free)', name);

if (socket.writable &&
    self.requests[name] && self.requests[name].length) {
  self.requests[name].shift().onSocket(socket);
  if (self.requests[name].length === 0) {
    // don't leak
    delete self.requests[name];
  }
} else {
  // If there are no pending requests, then put it in
  // the freeSockets pool, but only if we're allowed to do so.
  var req = socket._httpMessage;
  if (req &&
      req.shouldKeepAlive &&
      socket.writable &&
      self.keepAlive) {
    var freeSockets = self.freeSockets[name];
    var freeLen = freeSockets ? freeSockets.length : 0;
    var count = freeLen;
    if (self.sockets[name])
      count += self.sockets[name].length;

    if (count > self.maxSockets || freeLen >= self.maxFreeSockets) {
      socket.destroy();
    } else {
      freeSockets = freeSockets || [];
      self.freeSockets[name] = freeSockets;
      socket.setKeepAlive(true, self.keepAliveMsecs);
      socket.unref();
      socket._httpMessage = null;
      self.removeSocket(socket, options);
      freeSockets.push(socket);
    }
  } else {
    socket.destroy();
  }
}

}, _eventsCount=1, _maxListeners=undefined, defaultPort=443, protocol=https:, path=null, , , , keepAliveMsecs=1000, keepAlive=false, maxSockets=Infinity, maxFreeSockets=256, maxCachedSessions=100, 0=48, 1=130, 2=6, 3=91, 4=2, 5=1, 6=1, 7=2, 8=2, 9=3, 10=3, 11=4, 12=2, 13=192, 14=47, 15=4, 16=32, 17=75, 18=60, 19=248, 20=47, 21=21, 22=35, 23=192, 24=19, 25=241, 26=146, 27=165, 28=8, 29=0, 30=212, 31=35, 32=196, 33=144, 34=158, 35=6, 36=120, 37=87, 38=140, 39=223, 40=188, 41=232, 42=126, 43=103, 44=208, 45=149, 46=137, 47=211, 48=85, 49=4, 50=48, 51=169, 52=170, 53=51, 54=197, 55=212, 56=207, 57=174, 58=210, 59=221, 60=150, 61=49, 62=200, 63=82, 64=177, 65=226, 66=112, 67=91, 68=146, 69=249, 70=144, 71=255, 72=215, 73=37, 74=238, 75=91, 76=210, 77=204, 78=164, 79=38, 80=67, 81=82, 82=94, 83=28, 84=135, 85=231, 86=96, 87=234, 88=94, 89=234, 90=187, 91=135, 92=179, 93=36, 94=78, 95=128, 96=213, 97=41, 98=234, 99=161, 100=6, 101=2, 102=4, 103=88, 104=128, 105=4, 106=191, 107=162, 108=4, 109=2, 110=2, 111=1, 112=44, 113=163, 114=130, 115=5, 116=11, 117=48, 118=130, 119=5, 120=7, 121=48, 122=130, 123=3, 124=239, 125=160, 126=3, 127=2, 128=1, 129=2, 130=2, 131=16, 132=11, 133=29, 134=158, 135=153, 136=246, 137=164, 138=49, 139=135, 140=154, 141=31, 142=185, 143=205, 144=17, 145=188, 146=16, 147=86, 148=48, 149=13, 150=6, 151=9, 152=42, 153=134, 154=72, 155=134, 156=247, 157=13, 158=1, 159=1, 160=11, 161=5, 162=0, 163=48, 164=77, 165=49, 166=11, 167=48, 168=9, 169=6, 170=3, 171=85, 172=4, 173=6, 174=19, 175=2, 176=85, 177=83, 178=49, 179=21, 180=48, 181=19, 182=6, 183=3, 184=85, 185=4, 186=10, 187=19, 188=12, 189=68, 190=105, 191=103, 192=105, 193=67, 194=101, 195=114, 196=116, 197=32, 198=73, 199=110, 200=99, 201=49, 202=39, 203=48, 204=37, 205=6, 206=3, 207=85, 208=4, 209=3, 210=19, 211=30, 212=68, 213=105, 214=103, 215=105, 216=67, 217=101, 218=114, 219=116, 220=32, 221=83, 222=72, 223=65, 224=50, 225=32, 226=83, 227=101, 228=99, 229=117, 230=114, 231=101, 232=32, 233=83, 234=101, 235=114, 236=118, 237=101, 238=114, 239=32, 240=67, 241=65, 242=48, 243=30, 244=23, 245=13, 246=49, 247=53, 248=48, 249=53, 250=48, 251=52, 252=48, 253=48, 254=48, 255=48, 256=48, 257=48, 258=90, 259=23, 260=13, 261=49, 262=56, 263=48, 264=55, 265=49, 266=49, 267=49, 268=50, 269=48, 270=48, 271=48, 272=48, 273=90, 274=48, 275=93, 276=49, 277=11, 278=48, 279=9, 280=6, 281=3, 282=85, 283=4, 284=6, 285=19, 286=2, 287=85, 288=83, 289=49, 290=18, 291=48, 292=16, 293=6, 294=3, 295=85, 296=4, 297=8, 298=19, 299=9, 300=87, 301=105, 302=115, 303=99, 304=111, 305=110, 306=115, 307=105, 308=110, 309=49, 310=16, 311=48, 312=14, 313=6, 314=3, 315=85, 316=4, 317=7, 318=19, 319=7, 320=77, 321=97, 322=100, 323=105, 324=115, 325=111, 326=110, 327=49, 328=19, 329=48, 330=17, 331=6, 332=3, 333=85, 334=4, 335=10, 336=19, 337=10, 338=68, 339=114, 340=105, 341=102, 342=116, 343=121, 344=32, 345=67, 346=111, 347=46, 348=49, 349=19, 350=48, 351=17, 352=6, 353=3, 354=85, 355=4, 356=3, 357=12, 358=10, 359=42, 360=46, 361=105, 362=111, 363=110, 364=105, 365=99, 366=46, 367=105, 368=111, 369=48, 370=130, 371=1, 372=34, 373=48, 374=13, 375=6, 376=9, 377=42, 378=134, 379=72, 380=134, 381=247, 382=13, 383=1, 384=1, 385=1, 386=5, 387=0, 388=3, 389=130, 390=1, 391=15, 392=0, 393=48, 394=130, 395=1, 396=10, 397=2, 398=130, 399=1, 400=1, 401=0, 402=197, 403=54, 404=151, 405=63, 406=59, 407=129, 408=83, 409=65, 410=8, 411=242, 412=10, 413=222, 414=8, 415=142, 416=235, 417=127, 418=28, 419=9, 420=53, 421=141, 422=106, 423=61, 424=48, 425=10, 426=255, 427=195, 428=69, 429=10, 430=89, 431=35, 432=18, 433=9, 434=230, 435=249, 436=126, 437=84, 438=171, 439=215, 440=65, 441=244, 442=57, 443=10, 444=128, 445=88, 446=127, 447=129, 448=123, 449=67, 450=181, 451=74, 452=68, 453=45, 454=121, 455=98, 456=98, 457=67, 458=54, 459=46, 460=166, 461=172, 462=202, 463=250, 464=67, 465=197, 466=10, 467=38, 468=39, 469=15, 470=80, 471=6, 472=139, 473=137, 474=29, 475=162, 476=98, 477=161, 478=160, 479=234, 480=165, 481=195, 482=144, 483=63, 484=186, 485=90, 486=94, 487=203, 488=144, 489=46, 490=230, 491=17, 492=200, 493=210, 494=25, 495=57, 496=61, 497=147, 498=153, 499=174, 500=54, 501=152, 502=129, 503=176, 504=137, 505=40, 506=118, 507=189, 508=178, 509=149, 510=64, 511=55, 512=238, 513=126, 514=46, 515=84, 516=200, 517=187, 518=179, 519=221, 520=138, 521=196, 522=128, 523=118, 524=14, 525=178, 526=141, 527=90, 528=121, 529=14, 530=52, 531=8, 532=131, 533=200, 534=214, 535=232, 536=199, 537=27, 538=175, 539=54, 540=140, 541=154, 542=94, 543=10, 544=85, 545=124, 546=107, 547=30, 548=58, 549=54, 550=6, 551=3, 552=71, 553=120, 554=175, 555=241, 556=9, 557=214, 558=22, 559=170, 560=71, 561=54, 562=154, 563=133, 564=81, 565=161, 566=52, 567=151, 568=242, 569=171, 570=105, 571=211, 572=92, 573=54, 574=4, 575=71, 576=207, 577=254, 578=255, 579=126, 580=20, 581=230, 582=247, 583=116, 584=119, 585=172, 586=143, 587=147, 588=195, 589=10, 590=86, 591=163, 592=153, 593=51, 594=132, 595=246, 596=237, 597=81, 598=137, 599=78, 600=115, 601=108, 602=75, 603=224, 604=181, 605=221, 606=179, 607=65, 608=72, 609=173, 610=0, 611=207, 612=122, 613=59, 614=172, 615=175, 616=229, 617=21, 618=211, 619=51, 620=248, 621=91, 622=61, 623=202, 624=206, 625=112, 626=106, 627=63, 628=29, 629=56, 630=36, 631=123, 632=214, 633=120, 634=200, 635=224, 636=238, 637=56, 638=203, 639=155, 640=47, 641=139, 642=248, 643=234, 644=244, 645=130, 646=147, 647=250, 648=43, 649=95, 650=62, 651=23, 652=33, 653=53, 654=12, 655=110, 656=8, 657=139, 658=2, 659=3, 660=1, 661=0, 662=1, 663=163, 664=130, 665=1, 666=209, 667=48, 668=130, 669=1, 670=205, 671=48, 672=31, 673=6, 674=3, 675=85, 676=29, 677=35, 678=4, 679=24, 680=48, 681=22, 682=128, 683=20, 684=15, 685=128, 686=97, 687=28, 688=130, 689=49, 690=97, 691=213, 692=47, 693=40, 694=231, 695=141, 696=70, 697=56, 698=180, 699=44, 700=225, 701=198, 702=217, 703=226, 704=48, 705=29, 706=6, 707=3, 708=85, 709=29, 710=14, 711=4, 712=22, 713=4, 714=20, 715=63, 716=59, 717=84, 718=169, 719=240, 720=182, 721=6, 722=121, 723=104, 724=238, 725=113, 726=171, 727=232, 728=141, 729=192, 730=26, 731=26, 732=64, 733=228, 734=151, 735=48, 736=31, 737=6, 738=3, 739=85, 740=29, 741=17, 742=4, 743=24, 744=48, 745=22, 746=130, 747=10, 748=42, 749=46, 750=105, 751=111, 752=110, 753=105, 754=99, 755=46, 756=105, 757=111, 758=130, 759=8, 760=105, 761=111, 762=110, 763=105, 764=99, 765=46, 766=105, 767=111, 768=48, 769=14, 770=6, 771=3, 772=85, 773=29, 774=15, 775=1, 776=1, 777=255, 778=4, 779=4, 780=3, 781=2, 782=5, 783=160, 784=48, 785=29, 786=6, 787=3, 788=85, 789=29, 790=37, 791=4, 792=22, 793=48, 794=20, 795=6, 796=8, 797=43, 798=6, 799=1, 800=5, 801=5, 802=7, 803=3, 804=1, 805=6, 806=8, 807=43, 808=6, 809=1, 810=5, 811=5, 812=7, 813=3, 814=2, 815=48, 816=107, 817=6, 818=3, 819=85, 820=29, 821=31, 822=4, 823=100, 824=48, 825=98, 826=48, 827=47, 828=160, 829=45, 830=160, 831=43, 832=134, 833=41, 834=104, 835=116, 836=116, 837=112, 838=58, 839=47, 840=47, 841=99, 842=114, 843=108, 844=51, 845=46, 846=100, 847=105, 848=103, 849=105, 850=99, 851=101, 852=114, 853=116, 854=46, 855=99, 856=111, 857=109, 858=47, 859=115, 860=115, 861=99, 862=97, 863=45, 864=115, 865=104, 866=97, 867=50, 868=45, 869=103, 870=52, 871=46, 872=99, 873=114, 874=108, 875=48, 876=47, 877=160, 878=45, 879=160, 880=43, 881=134, 882=41, 883=104, 884=116, 885=116, 886=112, 887=58, 888=47, 889=47, 890=99, 891=114, 892=108, 893=52, 894=46, 895=100, 896=105, 897=103, 898=105, 899=99, 900=101, 901=114, 902=116, 903=46, 904=99, 905=111, 906=109, 907=47, 908=115, 909=115, 910=99, 911=97, 912=45, 913=115, 914=104, 915=97, 916=50, 917=45, 918=103, 919=52, 920=46, 921=99, 922=114, 923=108, 924=48, 925=66, 926=6, 927=3, 928=85, 929=29, 930=32, 931=4, 932=59, 933=48, 934=57, 935=48, 936=55, 937=6, 938=9, 939=96, 940=134, 941=72, 942=1, 943=134, 944=253, 945=108, 946=1, 947=1, 948=48, 949=42, 950=48, 951=40, 952=6, 953=8, 954=43, 955=6, 956=1, 957=5, 958=5, 959=7, 960=2, 961=1, 962=22, 963=28, 964=104, 965=116, 966=116, 967=112, 968=115, 969=58, 970=47, 971=47, 972=119, 973=119, 974=119, 975=46, 976=100, 977=105, 978=103, 979=105, 980=99, 981=101, 982=114, 983=116, 984=46, 985=99, 986=111, 987=109, 988=47, 989=67, 990=80, 991=83, 992=48, 993=124, 994=6, 995=8, 996=43, 997=6, 998=1, 999=5, 1000=5, 1001=7, 1002=1, 1003=1, 1004=4, 1005=112, 1006=48, 1007=110, 1008=48, 1009=36, 1010=6, 1011=8, 1012=43, 1013=6, 1014=1, 1015=5, 1016=5, 1017=7, 1018=48, 1019=1, 1020=134, 1021=24, 1022=104, 1023=116, 1024=116, 1025=112, 1026=58, 1027=47, 1028=47, 1029=111, 1030=99, 1031=115, 1032=112, 1033=46, 1034=100, 1035=105, 1036=103, 1037=105, 1038=99, 1039=101, 1040=114, 1041=116, 1042=46, 1043=99, 1044=111, 1045=109, 1046=48, 1047=70, 1048=6, 1049=8, 1050=43, 1051=6, 1052=1, 1053=5, 1054=5, 1055=7, 1056=48, 1057=2, 1058=134, 1059=58, 1060=104, 1061=116, 1062=116, 1063=112, 1064=58, 1065=47, 1066=47, 1067=99, 1068=97, 1069=99, 1070=101, 1071=114, 1072=116, 1073=115, 1074=46, 1075=100, 1076=105, 1077=103, 1078=105, 1079=99, 1080=101, 1081=114, 1082=116, 1083=46, 1084=99, 1085=111, 1086=109, 1087=47, 1088=68, 1089=105, 1090=103, 1091=105, 1092=67, 1093=101, 1094=114, 1095=116, 1096=83, 1097=72, 1098=65, 1099=50, 1100=83, 1101=101, 1102=99, 1103=117, 1104=114, 1105=101, 1106=83, 1107=101, 1108=114, 1109=118, 1110=101, 1111=114, 1112=67, 1113=65, 1114=46, 1115=99, 1116=114, 1117=116, 1118=48, 1119=12, 1120=6, 1121=3, 1122=85, 1123=29, 1124=19, 1125=1, 1126=1, 1127=255, 1128=4, 1129=2, 1130=48, 1131=0, 1132=48, 1133=13, 1134=6, 1135=9, 1136=42, 1137=134, 1138=72, 1139=134, 1140=247, 1141=13, 1142=1, 1143=1, 1144=11, 1145=5, 1146=0, 1147=3, 1148=130, 1149=1, 1150=1, 1151=0, 1152=197, 1153=181, 1154=184, 1155=225, 1156=179, 1157=74, 1158=239, 1159=183, 1160=20, 1161=206, 1162=188, 1163=199, 1164=218, 1165=49, 1166=213, 1167=40, 1168=53, 1169=148, 1170=17, 1171=14, 1172=247, 1173=122, 1174=76, 1175=156, 1176=235, 1177=74, 1178=84, 1179=171, 1180=74, 1181=156, 1182=210, 1183=248, 1184=16, 1185=222, 1186=3, 1187=1, 1188=193, 1189=147, 1190=104, 1191=65, 1192=130, 1193=65, 1194=202, 1195=152, 1196=181, 1197=239, 1198=226, 1199=212, 1200=121, 1201=23, 1202=249, 1203=206, 1204=243, 1205=241, 1206=198, 1207=145, 1208=151, 1209=61, 1210=222, 1211=163, 1212=27, 1213=130, 1214=183, 1215=137, 1216=94, 1217=121, 1218=241, 1219=187, 1220=226, 1221=215, 1222=238, 1223=104, 1224=120, 1225=159, 1226=49, 1227=55, 1228=155, 1229=7, 1230=207, 1231=52, 1232=119, 1233=218, 1234=7, 1235=69, 1236=244, 1237=114, 1238=255, 1239=126, 1240=97, 1241=226, 1242=155, 1243=150, 1244=94, 1245=5, 1246=217, 1247=101, 1248=188, 1249=120, 1250=220, 1251=199, 1252=223, 1253=30, 1254=214, 1255=189, 1256=223, 1257=217, 1258=186, 1259=122, 1260=180, 1261=250, 1262=150, 1263=167, 1264=11, 1265=196, 1266=218, 1267=211, 1268=205, 1269=61, 1270=134, 1271=209, 1272=73, 1273=210, 1274=189, 1275=166, 1276=125, 1277=120, 1278=201, 1279=178, 1280=211, 1281=176, 1282=144, 1283=102, 1284=17, 1285=244, 1286=83, 1287=131, 1288=108, 1289=241, 1290=66, 1291=108, 1292=253, 1293=147, 1294=91, 1295=219, 1296=79, 1297=204, 1298=169, 1299=8, 1300=222, 1301=84, 1302=195, 1303=129, 1304=137, 1305=128, 1306=231, 1307=73, 1308=168, 1309=73, 1310=0, 1311=196, 1312=41, 1313=150, 1314=188, 1315=57, 1316=67, 1317=106, 1318=145, 1319=220, 1320=254, 1321=150, 1322=84, 1323=236, 1324=67, 1325=170, 1326=106, 1327=152, 1328=64, 1329=179, 1330=117, 1331=122, 1332=76, 1333=88, 1334=44, 1335=40, 1336=9, 1337=153, 1338=114, 1339=61, 1340=242, 1341=16, 1342=132, 1343=67, 1344=45, 1345=160, 1346=34, 1347=23, 1348=103, 1349=198, 1350=149, 1351=125, 1352=4, 1353=182, 1354=35, 1355=147, 1356=97, 1357=185, 1358=19, 1359=136, 1360=76, 1361=41, 1362=27, 1363=177, 1364=242, 1365=126, 1366=7, 1367=184, 1368=87, 1369=196, 1370=45, 1371=169, 1372=226, 1373=24, 1374=29, 1375=173, 1376=221, 1377=45, 1378=66, 1379=222, 1380=90, 1381=249, 1382=21, 1383=64, 1384=233, 1385=88, 1386=108, 1387=68, 1388=24, 1389=77, 1390=154, 1391=215, 1392=120, 1393=8, 1394=194, 1395=99, 1396=132, 1397=60, 1398=239, 1399=172, 1400=62, 1401=254, 1402=103, 1403=247, 1404=122, 1405=35, 1406=80, 1407=56, 1408=164, 1409=2, 1410=4, 1411=0, 1412=166, 1413=12, 1414=4, 1415=10, 1416=116, 1417=46, 1418=105, 1419=111, 1420=110, 1421=105, 1422=99, 1423=46, 1424=105, 1425=111, 1426=169, 1427=5, 1428=2, 1429=3, 1430=0, 1431=253, 1432=32, 1433=170, 1434=129, 1435=195, 1436=4, 1437=129, 1438=192, 1439=75, 1440=71, 1441=23, 1442=187, 1443=196, 1444=45, 1445=195, 1446=103, 1447=79, 1448=72, 1449=86, 1450=186, 1451=146, 1452=183, 1453=84, 1454=93, 1455=72, 1456=69, 1457=203, 1458=89, 1459=123, 1460=190, 1461=164, 1462=5, 1463=220, 1464=113, 1465=244, 1466=251, 1467=144, 1468=65, 1469=8, 1470=241, 1471=139, 1472=47, 1473=183, 1474=168, 1475=214, 1476=236, 1477=252, 1478=147, 1479=14, 1480=94, 1481=253, 1482=42, 1483=232, 1484=80, 1485=109, 1486=233, 1487=96, 1488=152, 1489=101, 1490=172, 1491=132, 1492=36, 1493=121, 1494=102, 1495=110, 1496=255, 1497=205, 1498=211, 1499=135, 1500=179, 1501=17, 1502=117, 1503=90, 1504=100, 1505=73, 1506=82, 1507=228, 1508=189, 1509=140, 1510=217, 1511=133, 1512=7, 1513=1, 1514=160, 1515=80, 1516=208, 1517=173, 1518=142, 1519=162, 1520=240, 1521=103, 1522=236, 1523=32, 1524=155, 1525=127, 1526=191, 1527=230, 1528=131, 1529=25, 1530=147, 1531=106, 1532=231, 1533=253, 1534=17, 1535=242, 1536=42, 1537=155, 1538=29, 1539=218, 1540=112, 1541=209, 1542=163, 1543=209, 1544=232, 1545=227, 1546=117, 1547=146, 1548=8, 1549=93, 1550=143, 1551=248, 1552=83, 1553=255, 1554=129, 1555=9, 1556=123, 1557=95, 1558=111, 1559=146, 1560=179, 1561=105, 1562=7, 1563=101, 1564=134, 1565=190, 1566=194, 1567=169, 1568=45, 1569=84, 1570=180, 1571=140, 1572=167, 1573=90, 1574=130, 1575=201, 1576=158, 1577=112, 1578=164, 1579=4, 1580=164, 1581=50, 1582=248, 1583=56, 1584=105, 1585=140, 1586=9, 1587=242, 1588=70, 1589=143, 1590=79, 1591=208, 1592=255, 1593=62, 1594=199, 1595=162, 1596=241, 1597=32, 1598=204, 1599=168, 1600=139, 1601=80, 1602=251, 1603=206, 1604=168, 1605=89, 1606=144, 1607=222, 1608=154, 1609=232, 1610=162, 1611=14, 1612=91, 1613=116, 1614=12, 1615=37, 1616=68, 1617=179, 1618=144, 1619=131, 1620=160, 1621=26, 1622=78, 1623=205, 1624=74, 1625=240, 1626=237, 1627=109, 1628=75, 1629=65, 1630=88, list=[t.ionic.io:443::::::::], Agent=function Agent(options) {
http.Agent.call(this, options);
this.defaultPort = 443;
this.protocol = 'https:';
this.maxCachedSessions = this.options.maxCachedSessions;
if (this.maxCachedSessions === undefined)
this.maxCachedSessions = 100;

this._sessionCache = {
map: {},
list: []
};
}, request=function (options, cb) {
if (typeof options === 'string') {
options = url.parse(options);
if (!options.hostname) {
throw new Error('Unable to determine the domain name');
}
} else {
options = util._extend({}, options);
}
options._defaultAgent = globalAgent;
return http.request(options, cb);
}, get=function (options, cb) {
var req = exports.request(options, cb);
req.end();
return req;
}, agentClass=function Agent(options) {
http.Agent.call(this, options);
this.defaultPort = 443;
this.protocol = 'https:';
this.maxCachedSessions = this.options.maxCachedSessions;
if (this.maxCachedSessions === undefined)
this.maxCachedSessions = 100;

this._sessionCache = {
map: {},
list: []
};
}, href=https://codeload.github.com/driftyco/ionic2-app-base/zip/typescript, ntick=true, $ref=$, originalHost=codeload.github.com, originalHostHeaderName=host, $ref=$["socket"]["_httpMessage"]["agent"], _started=true, $ref=$["socket"]["_httpMessage"], _destdata=true, _ended=true, _callbackCalled=true, toJSON=function responseToJSON() {
var self = this
return {
statusCode: self.statusCode,
body: self.body,
headers: self.headers,
request: requestToJSON.call(self.request)
}
}, $ref=$["headers"], read=function (n) {
debug('read', n);
n = parseInt(n, 10);
var state = this._readableState;
var nOrig = n;

if (n !== 0)
state.emittedReadable = false;

// if we're doing read(0) to trigger a readable event, but we
// already have a bunch of data in the buffer, then just trigger
// the 'readable' event and move on.
if (n === 0 &&
state.needReadable &&
(state.length >= state.highWaterMark || state.ended)) {
debug('read: emitReadable', state.length, state.ended);
if (state.length === 0 && state.ended)
endReadable(this);
else
emitReadable(this);
return null;
}

n = howMuchToRead(n, state);

// if we've ended, and we're now clear, then finish it up.
if (n === 0 && state.ended) {
if (state.length === 0)
endReadable(this);
return null;
}

// All the actual chunk generation logic needs to be
// below the call to _read. The reason is that in certain
// synthetic stream cases, such as passthrough streams, _read
// may be a completely synchronous operation which may change
// the state of the read buffer, providing enough data when
// before there was not enough.
//
// So, the steps are:
// 1. Figure out what the state of things will be after we do
// a read from the buffer.
//
// 2. If that resulting state will trigger a _read, then call _read.
// Note that this may be asynchronous, or synchronous. Yes, it is
// deeply ugly to write APIs this way, but that still doesn't mean
// that the Readable class should behave improperly, as streams are
// designed to be sync/async agnostic.
// Take note if the _read call is sync or async (ie, if the read call
// has returned yet), so that we know whether or not it's safe to emit
// 'readable' etc.
//
// 3. Actually pull the requested chunks out of the buffer and return.

// if we need a readable event, then we need to do some reading.
var doRead = state.needReadable;
debug('need readable', doRead);

// if we currently have less than the highWaterMark, then also read some
if (state.length === 0 || state.length - n < state.highWaterMark) {
doRead = true;
debug('length less than watermark', doRead);
}

// however, if we've ended, then there's no point, and if we're already
// reading, then it's unnecessary.
if (state.ended || state.reading) {
doRead = false;
debug('reading or ended', doRead);
} else if (doRead) {
debug('do read');
state.reading = true;
state.sync = true;
// if the length is currently zero, then we need a readable event.
if (state.length === 0)
state.needReadable = true;
// call internal read method
this._read(state.highWaterMark);
state.sync = false;
// If _read pushed data synchronously, then reading will be false,
// and we need to re-evaluate how much data we can return to the user.
if (!state.reading)
n = howMuchToRead(nOrig, state);
}

var ret;
if (n > 0)
ret = fromList(n, state);
else
ret = null;

if (ret === null) {
state.needReadable = true;
n = 0;
} else {
state.length -= n;
}

if (state.length === 0) {
// If we have nothing in the buffer, then we want to know
// as soon as we do get something into the buffer.
if (!state.ended)
state.needReadable = true;

// If we tried to read() past the EOF, then emit end on the next tick.
if (nOrig !== n && state.ended)
  endReadable(this);

}

if (ret !== null)
this.emit('data', ret);

return ret;
}, 0=52, 1=48, 2=52, 3=58, 4=32, 5=78, 6=111, 7=116, 8=32, 9=70, 10=111, 11=117, 12=110, 13=100, 14=10
Caught exception:
undefined

Note: for support questions, please use one of these channels:

https://forum.ionicframework.com/
http://ionicworldwide.herokuapp.com/

Note: for build related issues you can open up an issue on the ionic-app-scripts repo

https://github.com/driftyco/ionic-app-scripts

Please ensure that you are on the latest version of the CLI.
npm view ionic@latest version

Short description of the problem:

What behavior are you expecting?

Steps to reproduce:
1.
2.
3.

insert any relevant code between the above and below backticks

Post the output of ionic info below please

Other information: (e.g. stacktraces, related issues, suggestions how to fix, stackoverflow links, forum links, etc)

@leodiegoo
Copy link

Any issues?

@ionitron-bot
Copy link

ionitron-bot bot commented Jul 12, 2018

Thanks for the issue! This issue appears to be associated with an old version of the Ionic CLI. Please update to the latest CLI version, which supports all versions of the Ionic Framework. If the issue is relevant and if it persists after updating to the latest CLI version, please create a new issue.

Thank you for using Ionic!

@ionitron-bot ionitron-bot bot closed this as completed Jul 12, 2018
@ionitron-bot ionitron-bot bot locked and limited conversation to collaborators Jul 12, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants