@charset "UTF-8";
.switch {
  position: relative;
  display: inline-block;
  width: 65px;
  height: 30px;
  margin-left: 10px;
  margin-right: 10px;
}

.switch:hover {
  cursor: pointer;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #4589b7;
  transition: 0.4s;
  font-size: 24px;
}

.slider:before {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  position: absolute;
  height: 100%;
  width: 50%;
  transition: 0.6s;
  content: "music_off";
  color: #c1c1c1;
  background-color: #263635;
  padding-top: 4px;
  padding-left: 4px;
}

input:checked + .slider:before {
  transform: translateX(100%);
  content: "music_note";
  color: #00551e;
  background-color: #f2f2f2;
}

.music-toggle .slider:before {
  content: "music_off";
}

.music-toggle input:checked + .slider:before {
  content: "music_note";
}

.sound-toggle .slider:before {
  content: "volume_off";
}

.sound-toggle input:checked + .slider:before {
  content: "volume_up";
}

@media (max-width: 850px) {
  .switch {
    height: 20px;
    width: 52px;
  }
  .slider:before {
    font-size: 16px;
    padding-top: 3px;
    padding-left: 5px;
  }
}
.volume-label {
  display: flex;
  position: absolute;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 8px;
}

.volume-slider {
  appearance: none;
  width: 100%;
  height: 6px;
  background: #f2f2f2;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

@media (hover: hover) {
  .volume-slider {
    opacity: 0.7;
  }
  .volume-slider:hover {
    opacity: 1;
    cursor: pointer;
  }
}
/* The slider handle (webkit: Chrome, Opera, Safari, Edge; moz: Firefox) */
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 6px;
  height: 6px;
  background: #4589b7;
  cursor: pointer;
}

.volume-slider::-moz-range-thumb {
  width: 6px;
  height: 6px;
  background: #4589b7;
  cursor: pointer;
}

@media (max-width: 850px) {
  .volume-label {
    margin-top: 5px;
  }
  .volume-slider {
    height: 3px;
  }
}
*,
*:before,
*:after {
  box-sizing: inherit;
  font-family: inherit;
  margin: 0;
}

html {
  box-sizing: border-box;
  background-image: linear-gradient(354deg, #ac7a00, #0f0c04);
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.hidden {
  display: none !important;
}

.material-icons,
.material-icons-outlined {
  position: relative;
  font-size: 32px;
  color: #223a14;
  user-select: none;
  top: 2px;
}

img {
  user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select {
  border: none;
  background-color: #b4c3ae;
  opacity: 0.85;
  transition: 0.3s;
  user-select: none;
}
button:focus,
select:focus {
  outline: none;
}

@media (hover: hover) {
  button,
  select {
    opacity: 0.75;
  }
  button:hover,
  select:hover {
    cursor: pointer;
    opacity: 1;
  }
}
button:disabled {
  pointer-events: none;
}

.container {
  height: 100%;
  display: grid;
  column-gap: 68px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 100px 1fr 100px;
  background-image: url("../images/hall2.jpg");
  background-size: cover;
  background-position: center;
}

@media (max-width: 850px) {
  .container {
    grid-template-columns: 1fr;
    grid-template-rows: 50px 30px 1fr 1fr;
    background-image: url("../images/hall.jpg");
  }
}
@media (min-width: 851px) and (max-height: 790px) {
  .container {
    grid-template-rows: auto 1fr 88px;
  }
}
@media (min-width: 851px) and (max-height: 640px) {
  .container {
    grid-template-rows: auto 1fr 50px;
  }
}
.control-panel {
  grid-row: 1/2;
  grid-column: 1/3;
  width: 100%;
  justify-self: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: rgba(160, 112, 53, 0.5960784314);
  align-self: stretch;
  z-index: 1;
}
.control-panel button {
  transition: opacity 0.5s color 0.3s;
}
.control-panel div,
.control-panel button {
  margin: 10px;
}
.control-panel select,
.control-panel button {
  color: black;
  font-size: 15px;
  padding: 5px;
  height: 32px;
}
.control-panel select {
  width: 100%;
}
.control-panel h3 {
  color: #2f0a05;
  text-shadow: 0px 1px 0px #ffe7bf;
  margin-bottom: 4px;
  font-size: 36px;
  font-family: "Tangerine", cursive;
  user-select: none;
}

.control-panel.preferences button {
  background-color: #849455;
  padding: 5px 18px 5px 18px;
  opacity: 0.85;
}
.control-panel.preferences button:hover {
  opacity: 1;
  background-color: #b4c3ae;
}

@media (min-width: 851px) and (max-height: 790px) {
  .control-panel select,
  .control-panel button {
    font-size: 15px;
    padding: 3px 5px 3px 5px;
    height: 28px;
  }
  .control-panel div,
  .control-panel button {
    margin: 5px 10px 5px 10px;
  }
}
@media (min-width: 851px) and (max-height: 640px) {
  .control-panel select,
  .control-panel button {
    font-size: 13px;
    padding: 1px 3px 1px 3px;
    height: 22px;
  }
  .control-panel h3 {
    font-size: 28px;
  }
}
@media (max-width: 850px) {
  .control-panel {
    grid-column: 1/2;
  }
  .control-panel.preferences {
    align-self: start;
    flex-direction: column;
    grid-row: span 3;
    justify-content: start;
    align-items: center;
    z-index: 4;
    padding-bottom: 20px;
  }
  .control-panel.preferences select,
  .control-panel.preferences button {
    width: 157px;
    color: black;
  }
  .control-panel.preferences button {
    position: relative;
    margin-top: 27px;
    font-weight: bold;
    transition: 0.6s;
    width: 125px;
  }
  .control-panel.preferences button:before {
    content: "";
    position: absolute;
    height: 100%;
    aspect-ratio: 1;
    background-color: inherit;
    top: 0;
    left: -16px;
    border-radius: 50%;
  }
  .control-panel.preferences button:after {
    content: "";
    position: absolute;
    height: 100%;
    aspect-ratio: 1;
    background-color: inherit;
    top: 0;
    left: 109px;
    border-radius: 50%;
  }
}
.control-panel button.reset {
  background-color: #7a2e2e;
  color: white;
  letter-spacing: 0.1ch;
  padding: 0.4ch 0.65ch 0.4ch 0.8ch;
}

@media (max-width: 850px) {
  .control-panel .reset {
    font-size: 18px;
  }
}
.control-panel .navigation {
  color: black;
  transition: 1s;
}

.control-panel .navigation:disabled {
  color: rgba(16, 16, 16, 0.3019607843);
  opacity: 0.75;
}

.control-panel .navigation,
.control-panel .reset {
  font-size: 20px;
  padding: 6px;
  position: relative;
  height: auto;
}

@property --border-glow {
  syntax: "<color>";
  inherits: false;
  initial-value: #4993ed;
}
.control-panel .navigation:enabled:before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  animation: enabled ease-in-out 1.3s infinite alternate;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
}

.control-panel .reset.glow:before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  animation: enabled ease-in-out 1.3s infinite alternate;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  --border-glow: #e1b771;
}

@keyframes enabled {
  0% {
    border: 4px solid rgba(255, 255, 255, 0);
  }
  100% {
    border: 4px solid var(--border-glow);
  }
}
.control-panel.in-game,
.control-panel.setup {
  align-items: center;
}

.control-panel > * {
  display: none;
}

.control-panel.preferences .settings {
  display: block;
}

.control-panel.setup .reset {
  display: block;
}

.control-panel.in-game.two-player .navigation,
.control-panel.in-game .reset {
  display: block;
}

.control-panel.preferences + .settings-panel {
  display: none;
}

.settings-panel {
  position: relative;
  grid-row: 1/2;
  grid-column: 1/3;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.settings-panel .material-icons {
  top: 0;
  font-size: 30px;
  transition: color 0.3s, rotate 1s;
  color: #f2f2f2;
}
@media (hover: hover) {
  .settings-panel .material-icons:hover {
    cursor: pointer;
    color: #c8d0ac;
  }
}
.settings-panel .settings-toggle {
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  top: 0;
  padding-left: 8px;
  padding-right: 8px;
  border-right: 1px solid rgba(148, 173, 148, 0);
  font-size: 30px;
  transition: background-color 1s;
}
.settings-panel ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 2;
  height: 100px;
  width: 0;
  overflow: hidden;
  padding-left: 0;
  white-space: nowrap;
  background-color: rgba(79, 95, 47, 0.9098039216);
  opacity: 0.5;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s;
}
.settings-panel ul li {
  display: inline-flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding-left: 10px;
  padding-right: 12px;
  border-right: 1px solid #94ad94;
  color: #223a14;
  opacity: 0.85;
  transition: color 0.2s;
}
.settings-panel ul li:last-child {
  border-right: none;
}
.settings-panel.open ul {
  width: 271px;
  opacity: 1;
}
.settings-panel.open .settings-toggle {
  background-color: rgba(79, 95, 47, 0.9098039216);
  border-right: 1px solid #94ad94;
  transition: background-color 0.5s;
}
.settings-panel.open .gear {
  rotate: 180deg;
}

@media (max-width: 850px) {
  .settings-panel {
    grid-column: 1/2;
    height: 100%;
  }
  .settings-panel .about,
  .settings-panel .settings-toggle .material-icons {
    font-size: 24px;
  }
  .settings-panel ul {
    height: 100%;
  }
  .settings-panel.open ul {
    width: 236px;
  }
}
.curtain {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #4f5f2f;
  z-index: 10;
  opacity: 1;
  transition: opacity 2s;
  pointer-events: none;
}

.invisible {
  opacity: 0;
}

.game-over .curtain {
  opacity: 1;
  background-color: rgba(101, 98, 137, 0.5607843137);
}

.board::before,
.board-setup-container::before,
.broadcast {
  content: "Intermission...";
  position: absolute;
  transform: translate(-11px, -70px);
  color: #053778;
  text-shadow: 0px 1px 0px #ffffff;
  background-color: rgba(226, 226, 226, 0.5490196078);
  padding: 7px;
  width: calc(100% + 22px);
  font-family: "Tangerine", cursive;
  font-size: 31px;
  pointer-events: none;
}

.board-setup-container::after {
  content: "";
  position: absolute;
  width: var(--audio-progress, 0%);
  height: 3px;
  bottom: -3px;
  background: linear-gradient(90deg, rgb(71, 0, 223) 15%, rgb(15, 146, 231) 87%);
  opacity: var(--audio-progress-opacity, 0);
  transition: width 0.2s linear, opacity 0.5s;
  pointer-events: none;
}

.broadcast {
  text-shadow: none;
}

.board-setup-container:has(.curtain:not(.invisible))::before {
  color: #de130f;
  text-shadow: 0px 1px 0px #000000;
  background-color: rgba(44, 24, 0, 0.7490196078);
}

#board1::before {
  content: "Intermission...";
}

#board1:has(.curtain.invisible)::before {
  content: "Player 1";
}

#board2::before {
  content: "Intermission...";
}

#board2:has(.curtain.invisible)::before {
  content: "Player 2";
}

.board-setup-container:has(.invisible)::before {
  content: "Instrument Selection";
}

.container:has(.board-setup-container:not(.hidden)) #board1::before {
  content: "Player 1 Setup";
}

.container:has(.board-setup-container:not(.hidden)) #board2:has(.curtain.invisible)::before {
  content: "Player 2 Setup";
}

.defense::before {
  color: #de130f;
  background-color: rgba(44, 24, 0, 0.7490196078);
  text-shadow: 0px 1px 0px #000000;
}

@property --start-color {
  syntax: "<color>";
  inherits: false;
  initial-value: rgba(217, 0, 0, 0.9294117647);
}
@property --end-color {
  syntax: "<color>";
  inherits: false;
  initial-value: rgba(144, 193, 255, 0.9607843137);
}
.board {
  position: relative;
  margin: 30px;
  outline: 11px solid rgba(160, 111, 53, 0.768627451);
  width: 72%;
  max-width: 500px;
  justify-self: center;
  aspect-ratio: 1;
  display: inline-grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(10, 1fr);
  grid-row-start: 2;
  z-index: 1;
  background-color: #5c3b19;
  grid-gap: 1px;
}
.board .cell {
  background-color: #fffbf1;
}
.board .cell.attacked {
  background-color: rgba(144, 193, 255, 0.9607843137);
  pointer-events: none;
  animation: swell 1s ease-in-out 1;
}
.board .cell.attacked.highlight-placed {
  background-color: rgba(161, 0, 0, 0.9215686275);
  --end-color: #a10000eb;
}
.board .cell.final-attack {
  animation: long-swell 3s ease-in-out 1;
}
.board .highlight-hovered {
  background-color: aquamarine;
}
.board .highlight-hovered-invalid {
  background-color: #a1b8b0;
}
.board .highlight-placed {
  background-color: #b3aa92;
}
.board.defense {
  grid-column-start: 2;
}
.board.defense .highlight-placed {
  background-color: #fffbf1;
}
@media (hover: hover) {
  .board.defense .cell:not(.attacked):hover {
    cursor: pointer;
    background-color: rgba(217, 0, 0, 0.9294117647);
  }
}
.board.defense .cell:not(.attacked).sunk.highlight-placed {
  background-color: rgba(161, 0, 0, 0.9215686275);
}
.board.game-over .highlight-placed {
  background-color: #b3aa92;
  transition: 1.5s;
}
.board.offense {
  grid-column-start: 1;
}
.board.offense div:not(.moves) {
  pointer-events: none;
}
.board.offense .cell {
  --start-color: #fffbf1;
}
.board.offense .highlight-placed {
  --start-color: #b3aa92;
}
@media (hover: none) {
  .board .cell {
    --start-color: #fffbf1;
  }
}
.board.disabled div:not(.moves) {
  pointer-events: none;
}

@keyframes swell {
  0% {
    transform: scale(1);
    background-color: var(--start-color);
  }
  50% {
    transform: scale(1.2);
    background-color: #3d0a43;
  }
  100% {
    transform: scale(1);
    background-color: var(--end-color);
  }
}
@keyframes long-swell {
  0% {
    transform: scale(1);
    background-color: var(--start-color);
    z-index: 3;
  }
  15% {
    transform: scale(1.2);
    background-color: #3d0a43;
  }
  30% {
    transform: scale(1);
    background-color: #360404;
  }
  100% {
    background-color: var(--end-color);
  }
}
.placed-img {
  object-fit: contain;
  padding: 5px;
  transform-origin: 0 0;
  filter: drop-shadow(1px 5px 3px rgba(72, 46, 3, 0.8));
}

.placed-img-wrapper {
  overflow: hidden;
  z-index: 4;
  opacity: 0.8;
}

.defense .placed-img-wrapper {
  opacity: 0;
  pointer-events: none;
}

.offense .placed-img-wrapper,
.sunk.placed-img-wrapper:not(.stealth),
.game-over .placed-img-wrapper {
  z-index: 4;
  transition: 1.5s;
}

.offense .placed-img-wrapper {
  opacity: 0.8;
}

.offense .placed-img-wrapper:has(img[src*="bass.png"]) {
  opacity: 0.55;
}

.offense .placed-img-wrapper:has(img[src*=tuba]),
.offense .placed-img-wrapper:has(img[src*=bassdrum]) {
  opacity: 0.65;
}

.sunk.placed-img-wrapper:not(.stealth) {
  opacity: 0.7;
}

.sunk.placed-img-wrapper:not(.stealth):has(img[src*=tuba]),
.sunk.placed-img-wrapper:not(.stealth):has(img[src*=bassdrum]) {
  opacity: 0.55;
}

.game-over .placed-img-wrapper {
  opacity: 0.8 !important;
}

.board-setup-container {
  position: relative;
  display: grid;
  grid-template-rows: 116px 1fr auto;
  grid-template-columns: 1fr;
  grid-row-start: 2;
  margin: 30px;
  outline: 11px solid rgba(160, 111, 53, 0.768627451);
  width: 72%;
  max-width: 500px;
  justify-self: center;
  aspect-ratio: 1;
}
.board-setup-container button {
  background: none;
  padding: 0;
}
.board-setup-container button:disabled {
  opacity: 35%;
}

@media (max-width: 850px) {
  .board::before,
  .board-setup-container::before,
  .broadcast {
    transform: translate(-11px, -56px);
    padding: 5px 5px 5px 10px;
    font-size: 25px;
  }
  .broadcast {
    padding-left: 9px;
  }
  .board {
    grid-row-start: 3;
    max-width: 372px;
  }
  .board-setup-container {
    grid-row-start: 4;
    max-width: 372px;
  }
  .board.defense {
    grid-column-start: 1;
    grid-row-start: 4;
  }
}
@media (max-width: 850px) and (max-height: 1000px) and (min-height: 901px) {
  .board,
  .board-setup-container {
    width: 294px;
    height: 294px;
  }
}
@media (max-width: 1050px) and (min-width: 1020px) and (max-height: 700px) {
  .board,
  .board-setup-container {
    width: 362px;
    height: 362px;
  }
}
.staging-buttons {
  background-color: #fffbf1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 4px;
  grid-row: 3/4;
  grid-column: 1/-1;
}

.inst-stats .material-icons-outlined {
  position: relative;
  background: linear-gradient(90deg, rgb(53, 72, 38) 15%, rgb(46, 147, 71) 87%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.inst-sample .material-icons {
  background: linear-gradient(90deg, rgb(71, 0, 223) 15%, rgb(15, 146, 231) 87%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.random-enhanced .material-icons {
  background: linear-gradient(to right, #ef5350, #f48fb1, #7e57c2, #2196f3, #26c6da, #43a047, #eeff41, #f9a825, #ff5722);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.preview-container {
  grid-row: 1/2;
  grid-column: 1/-1;
  display: flex;
  align-items: end;
  padding: 2px 10px 5px 10px;
  background-color: #fffbf1;
  border-bottom: 1px dashed rgba(160, 111, 53, 0.768627451);
  padding-bottom: 5px;
  overflow: hidden;
}

.remaining-fleet div,
.preview-container div {
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  margin-right: 11px;
}

.preview-container div:has(.hidden) {
  display: none;
}

.preview-container div:has(.horn) {
  margin-left: -3px;
}

.remaining-fleet span,
.preview-container span {
  width: 4px;
  height: 0px;
  margin-top: 9px;
  margin-bottom: 1px;
  position: relative;
  box-shadow: 0px 0px 2px 2px #42ae2e;
}

.preview-container .disabled + span {
  box-shadow: 0px 0px 2px 2px #6b6b6b;
}

.remaining-fleet .trombone + span,
.preview-container .trombone + span {
  left: 2px;
}

.remaining-fleet .bassoon + span,
.preview-container .bassoon + span {
  right: 1px;
}

.remaining-fleet .tuba + span,
.preview-container .tuba + span {
  left: 3px;
}

.remaining-fleet .harp + span,
.preview-container .harp + span {
  right: 3px;
}

.img-preview {
  max-height: calc(100% - 10px);
  max-width: 100%;
}
.img-preview.disabled {
  filter: grayscale(0.8) opacity(0.4);
  pointer-events: none;
}
.img-preview:hover {
  cursor: pointer;
}

.img-preview.trombone,
.remaining-fleet img.trombone {
  max-height: calc(96% - 10px);
}
.img-preview.bassoon, .img-preview.tuba,
.remaining-fleet img.bassoon,
.remaining-fleet img.tuba {
  max-height: calc(90% - 10px);
}
.img-preview.viola,
.remaining-fleet img.viola {
  max-height: calc(75% - 10px);
}
.img-preview.trumpet, .img-preview.violin, .img-preview.clarinet, .img-preview.flute, .img-preview.oboe,
.remaining-fleet img.trumpet,
.remaining-fleet img.violin,
.remaining-fleet img.clarinet,
.remaining-fleet img.flute,
.remaining-fleet img.oboe {
  max-height: calc(70% - 10px);
}
.img-preview.cymbals, .img-preview.snare,
.remaining-fleet img.cymbals,
.remaining-fleet img.snare {
  max-height: calc(55% - 10px);
}
.img-preview.horn, .img-preview.glockenspiel,
.remaining-fleet img.horn,
.remaining-fleet img.glockenspiel {
  max-height: calc(50% - 10px);
}
.img-preview.piccolo, .img-preview.cabasa,
.remaining-fleet img.piccolo,
.remaining-fleet img.cabasa {
  max-height: calc(45% - 10px);
}

.preview-container div:has(.bass:not(.hidden)) + div img.cello,
.remaining-fleet div:has(.bass:not(.hidden)) + div img.cello {
  max-height: calc(90% - 10px);
}

.preview-container div:has(.cabasa) {
  margin-left: 3px;
  margin-right: 14px;
}

.staging-area {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fffbf1;
  grid-row: 2/4;
  grid-column: 1/-1;
}

.stats-panel {
  z-index: 2;
  grid-row: 2/3;
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  grid-template-rows: max(22px, 15%) 1fr;
  background-color: #c0ced9;
  opacity: 0;
  transition: 1s;
  pointer-events: none;
}

.stats-panel.active {
  opacity: 1;
  pointer-events: all;
}

.stats-panel .title {
  grid-row: 1/2;
  grid-column: 1/3;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, rgb(133, 191, 214) 0%, rgb(176, 217, 206) 100%);
  box-shadow: 0px 5px 17px 3px #e3edf6;
  font-size: 1.7vw;
  letter-spacing: 0.1ch;
}
.stats-panel .title h3 a {
  position: relative;
}
.stats-panel .title h3 a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease-in-out;
}
@media (hover: hover) {
  .stats-panel .title h3 a:hover::after {
    width: 100%;
  }
}

.inst-details {
  font-size: 1.2vw;
  display: grid;
  grid-template-rows: auto 1fr;
  user-select: none;
}
.inst-details h6 {
  font-size: 1.3vw;
  margin-bottom: 0.7vw;
  letter-spacing: 0.5ch;
}
.inst-details ul {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.stats-panel .stats {
  grid-row: 2/3;
  grid-column: 1/2;
  padding: 8px 0 6px 10px;
}
.stats-panel .stats .stats-label {
  display: flex;
  justify-content: space-between;
}

.stats-bar {
  width: 100%;
  height: 3px;
  margin-top: 2px;
  background-color: gray;
}

.stats-bar-inner {
  height: 100%;
  background-color: #fe3d00;
}

.stats-panel .notes {
  grid-row: 2/3;
  grid-column: 2/3;
  padding: 8px 6px 6px 20px;
}
.stats-panel .notes h6 {
  position: relative;
  left: -11px;
}
.stats-panel .notes ul {
  position: relative;
}
.stats-panel .notes ul span {
  position: absolute;
  left: -11px;
  rotate: 90deg;
  scale: 90%;
}

@media (max-width: 850px) {
  .stats-panel {
    grid-template-rows: max(15px, 14%) 1fr;
    grid-template-columns: 1fr 2fr;
  }
  .stats-panel .title {
    font-size: 12px;
    padding: 1px;
  }
  .inst-details {
    font-size: 1vh;
  }
  .inst-details h6 {
    font-size: 9px;
    margin-bottom: 3px;
  }
  .stats-panel .stats {
    padding: 4px 0 4px 6px;
  }
  .stats-panel .notes {
    padding: 4px 2px 4px 16px;
  }
  .stats-bar {
    height: 2px;
  }
}
@media (max-width: 850px) and (max-height: 810px) {
  .stats-bar {
    height: 1px;
    margin-top: 1px;
  }
}
.staging-img {
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  object-fit: contain;
  padding: 5px;
  z-index: 2;
  animation: flash 1.4s ease-in-out infinite alternate;
  transition: opacity 1s;
}
.staging-img:hover {
  cursor: grab;
}

.board-setup-container:has(.stats-panel.active) .staging-img {
  opacity: 0;
}

.staging-area.small-board img[src*="bass.png"].staging-img,
.staging-area.small-board img[src*=harp].staging-img {
  scale: 0.7;
  transition: scale 0.5s;
}

.staging-area.small-board img[src*="cello.png"].staging-img,
.staging-area.small-board img[src*=trombone].staging-img {
  scale: 0.8;
  transition: scale 0.5s;
}

.staging-area.small-board img[src*="cello.png"].staging-img.grabbing,
.staging-area.small-board img[src*=trombone].staging-img.grabbing,
.staging-area.small-board img[src*="bass.png"].staging-img.grabbing,
.staging-area.small-board img[src*=harp].staging-img.grabbing {
  scale: 1;
}

img[src*=flute].staging-img,
img[src*=clarinet].staging-img,
img[src*=piccolo].staging-img {
  animation: flash-intense 1.4s ease-in-out infinite alternate;
}

@keyframes flash {
  0% {
    filter: saturate(0.9) drop-shadow(0px 0px 6px rgba(255, 0, 0, 0));
  }
  100% {
    filter: saturate(1.2) drop-shadow(0px 0px 11px rgba(231, 52, 52, 0.6784313725));
  }
}
@keyframes flash-intense {
  0% {
    filter: saturate(0.9) drop-shadow(0px 0px 6px rgba(255, 0, 0, 0));
  }
  100% {
    filter: saturate(1.2) drop-shadow(0px 0px 5px #e10000);
  }
}
.grabbing {
  cursor: grabbing !important;
}

.stretch-trombone {
  object-fit: fill;
  padding: 10px 1px 10px 1px;
}

.stretch-trumpet {
  object-fit: fill;
  padding: 6px 3px 6px 3px;
}

.stretch-violin {
  object-fit: fill;
  padding: 11px 3px 11px 3px;
}

.stretch-viola {
  object-fit: fill;
  padding: 8px 2px 8px 2px;
}

.stretch-cello {
  object-fit: fill;
  padding: 4px 3px 4px 3px;
}

.board.covered {
  background-color: purple;
}

.remaining-fleet {
  position: absolute;
  width: calc(100% + 22px);
  height: 110px;
  top: calc(100% + 21px);
  left: -11px;
  display: flex;
  align-items: end;
  padding: 6px 14px;
  background-color: rgba(65, 68, 76, 0.8509803922);
  pointer-events: none;
  transition: opacity 2s;
}

.remaining-fleet * {
  transition: 2s;
}

.remaining-fleet.opaque * {
  opacity: 0;
}

.remaining-fleet div:has(.hidden) {
  display: none;
}

.remaining-fleet div {
  margin-right: 6%;
}

.remaining-fleet span {
  box-shadow: 0px 0px 2px 2px #6baeec;
}

.remaining-fleet .sunk + span {
  box-shadow: 0px 0px 2px 2px #c70c09;
}

.remaining-fleet img {
  max-height: calc(100% - 10px);
  max-width: 100%;
}

.remaining-fleet img.sunk {
  filter: grayscale(1) opacity(0.9);
}

.remaining-fleet img.sunk.trumpet,
.remaining-fleet img.sunk.trombone,
.remaining-fleet img.sunk.tuba,
.remaining-fleet img.sunk.horn {
  filter: grayscale(1) opacity(0.5);
}

.remaining-fleet div:has(.trombone),
.remaining-fleet div:has(.trumpet),
.remaining-fleet div:has(.tuba) {
  margin-left: -3px;
}

.remaining-fleet div:has(.horn) {
  margin-left: -6px;
}

@media (min-width: 851px) and (max-height: 700px) {
  .remaining-fleet {
    height: 96px;
  }
}
@media (max-width: 850px) {
  .remaining-fleet {
    z-index: 10;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: calc(50% - 45px);
    padding-bottom: calc(50% - 45px);
    padding-left: 7px;
    background-color: rgba(65, 68, 76, 0.9215686275);
    border: 0;
    opacity: 0;
    transition: opacity 1.5s;
  }
  .remaining-fleet.active {
    opacity: 1;
  }
  .remaining-fleet:before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(50% - 45px);
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.4392156863);
  }
  .remaining-fleet:after {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(50% - 45px);
    top: calc(50% + 45px);
    left: 0;
    background-color: rgba(255, 255, 255, 0.4392156863);
  }
  .remaining-fleet div {
    height: 75%;
    margin-top: 6px;
    margin-bottom: 6px;
    margin-right: 5.5%;
  }
  .board:has(.remaining-fleet.active) div {
    pointer-events: none;
  }
}
.moves {
  position: absolute;
  right: -4px;
  top: -56px;
  display: flex;
  transition: 2s;
}

.broadcast.active + .moves {
  pointer-events: none;
}

@media (max-width: 850px) {
  .moves {
    top: -47px;
  }
}
@property --a {
  syntax: "<angle>";
  inherits: false;
  initial-value: 90deg;
}
@property --c {
  syntax: "<color>";
  inherits: false;
  initial-value: #d6b76a;
}
@property --c2 {
  syntax: "<color>";
  inherits: false;
  initial-value: #899267;
}
@property --c3 {
  syntax: "<color>";
  inherits: false;
  initial-value: #d6b76a;
}
.move {
  height: 20px;
  width: 20px;
  margin-left: 5px;
  border-radius: 50%;
  background: linear-gradient(var(--a), var(--c), var(--c2));
  animation: lava 9s linear infinite;
}

.moved {
  border: 1px solid var(--c3);
  animation: color-shift 5s linear infinite;
  background: transparent;
}

@keyframes lava {
  0% {
    --a: 0deg;
    --c: #bb2a2a;
    --c2: #899267;
  }
  50% {
    --c: #ffab24;
    --c2: #67a2da;
  }
  100% {
    --a: 360deg;
    --c: #bb2a2a;
    --c2: #899267;
  }
}
@keyframes color-shift {
  0% {
    --c3: #bb2a2a;
  }
  25% {
    --c3: #6e774d;
  }
  50% {
    --c3: #d08205;
  }
  75% {
    --c3: #67a2da;
  }
  100% {
    --c3: #bb2a2a;
  }
}
.attack-direction {
  position: absolute;
  left: 44%;
  top: calc(50% - 296px);
  width: 12%;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(0deg, rgba(121, 99, 99, 0) 0%, rgba(121, 99, 99, 0.7) 50%, rgba(121, 99, 99, 0) 100%);
  transition: opacity 2s;
}
.attack-direction * {
  filter: drop-shadow(0px 0px 11px #ff3c3c);
  user-select: none;
}
.attack-direction h3 {
  color: #ebf4ff;
  margin-bottom: -4px;
  font-size: 28px;
  letter-spacing: 1px;
  font-size: 22px;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 400;
  font-style: normal;
  white-space: nowrap;
  text-align: center;
  transition: 1s;
}
.attack-direction .player2 {
  display: none;
}
.attack-direction img.large {
  width: 92%;
  transition: 1s;
  transform: translateX(-5%);
  rotate: 15deg;
  margin-top: 20px;
}
.attack-direction img.small {
  display: none;
}

.attack-direction.player2 .player1 {
  display: none;
}
.attack-direction.player2 .player2 {
  display: block;
}

.attack-direction.computer img.large {
  rotate: -15deg;
  scale: -1 1;
  transform: translateX(-15%);
}
.attack-direction.computer img.small {
  rotate: -15deg;
  scale: 1;
}

.attack-direction.opaque * {
  opacity: 0;
}

.attack-direction.invisible {
  transition: 0s;
}

@media (max-width: 850px) {
  .attack-direction {
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr min(360px, 80%) 1fr;
    justify-items: center;
    align-items: center;
    background: none;
    overflow: hidden;
  }
  .attack-direction h3 {
    grid-column: 1/2;
    grid-row: 1/2;
    position: relative;
    margin-top: 70px;
    left: -15px;
    font-family: "Abril Fatface", serif;
    font-size: 30px;
    letter-spacing: -1px;
    word-spacing: -15px;
    text-shadow: 0px 0px 10px #ff3c3c;
    text-orientation: upright;
    writing-mode: vertical-rl;
  }
  @supports (hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none) {
    .attack-direction h3 {
      word-spacing: 12px;
    }
  }
  .attack-direction .game-state {
    left: 15px;
  }
  .attack-direction img.large {
    display: none;
  }
  .attack-direction img.small {
    display: block;
    height: 250px;
    margin-top: 70px;
    grid-column: 3;
    transition: 1s;
    rotate: 10deg;
    scale: 1 -1;
    filter: drop-shadow(0px 0px 11px #ff3c3c);
  }
}
@media (max-width: 570px) {
  .attack-direction img.small {
    height: 200px;
    rotate: 8deg;
  }
  .attack-direction.computer img.small {
    rotate: -8deg;
  }
}
@media (max-width: 520px) {
  .attack-direction h3 {
    left: -12px;
  }
  .attack-direction .game-state {
    left: 12px;
  }
}
@media (max-width: 470px) {
  .attack-direction h3 {
    left: 0;
    top: -170px;
  }
  .attack-direction .game-state {
    left: 0;
    top: 196px;
  }
}
@media (max-width: 440px) {
  .attack-direction img.small {
    position: relative;
    rotate: 3deg;
    right: 2px;
  }
  .attack-direction.computer img.small {
    rotate: -3deg;
  }
}
.info {
  display: none;
}

@media (max-width: 1200px) {
  .board-setup-container {
    grid-template-rows: 85px 1fr auto;
  }
  .preview-container div {
    height: 74px;
  }
  .staging-buttons {
    padding: 0 4px 4px 4px;
  }
  .staging-buttons .material-icons,
  .staging-buttons .material-icons-outlined {
    font-size: 30px;
  }
}
@media (max-width: 1040px) {
  .staging-buttons {
    padding: 0 3px 2px 3px;
  }
  .staging-buttons .material-icons,
  .staging-buttons .material-icons-outlined {
    font-size: 26px;
  }
}
@media (max-width: 950px) {
  .staging-buttons {
    padding: 0 2px 2px 2px;
  }
  .staging-buttons .material-icons,
  .staging-buttons .material-icons-outlined {
    font-size: 24px;
  }
}
@media (max-width: 850px) {
  .info {
    display: block;
    position: absolute;
    left: 74px;
    top: -50px;
    font-size: 25px;
    color: #053778;
    opacity: 0.75;
    transition: 0.3s;
    z-index: 1;
  }
  .info:hover {
    cursor: pointer;
    opacity: 0.9;
  }
  .defense > .info {
    color: rgba(208, 43, 21, 0.8588235294);
  }
  .board:has(.curtain:not(.invisible)) > .info {
    display: none;
  }
}
@media (min-width: 851px) and (max-height: 700px) {
  .board::before,
  .board-setup-container::before,
  .broadcast {
    font-size: 27px;
  }
  .moves {
    top: -59px;
  }
}
@media (max-width: 850px) and (max-height: 900px) {
  .container {
    grid-template-rows: 44px 30px 1fr 1fr;
  }
  .board-setup-container {
    grid-template-rows: 71px 1fr auto;
  }
  .preview-container div {
    height: 60px;
  }
  .control-panel .navigation,
  .control-panel .reset {
    font-size: 18px;
    padding: 5px;
  }
  .control-panel div,
  .control-panel button {
    margin: 4px;
  }
  .board,
  .board-setup-container {
    max-width: 292px;
  }
  .staging-buttons {
    padding: 0 2px 0 2px;
  }
  .staging-buttons .material-icons,
  .staging-buttons .material-icons-outlined {
    font-size: 20px;
  }
  .attack-direction {
    grid-template-columns: 1fr min(320px, 80%) 1fr;
  }
}
@media (max-width: 850px) and (max-height: 810px) {
  .board,
  .board-setup-container {
    max-width: 247px;
  }
  .board::before,
  .board-setup-container::before,
  .broadcast {
    padding: 4px 4px 4px 9px;
    font-size: 22px;
  }
  .control-panel .navigation,
  .control-panel .reset {
    font-size: 15px;
  }
  .broadcast {
    padding-left: 7px;
  }
  .info {
    left: 62px;
    font-size: 22px;
  }
  .moves {
    top: -48px;
  }
  .move {
    margin-left: 3px;
    height: 17px;
    width: 17px;
  }
  .board-setup-container {
    grid-template-rows: 80px 1fr auto;
  }
  .preview-container div {
    height: 69px;
  }
  .attack-direction {
    grid-template-columns: 1fr min(275px, 80%) 1fr;
  }
  .attack-direction h3 {
    margin-top: 122px;
    letter-spacing: -5px;
  }
}
@media (max-width: 850px) and (max-height: 720px) {
  .board,
  .board-setup-container {
    max-width: 229px;
  }
  .board::before,
  .board-setup-container::before,
  .broadcast {
    transform: translate(-11px, -48px);
  }
  .board-setup-container {
    grid-template-rows: 77px 1fr auto;
  }
  .preview-container div {
    height: 66px;
  }
  .remaining-fleet div {
    height: 68%;
  }
  .attack-direction {
    grid-template-columns: 1fr min(247px, 80%) 1fr;
  }
  .moves {
    top: -39px;
  }
  .move {
    height: 16px;
    width: 16px;
    margin-left: 2px;
  }
  .info {
    font-size: 20px;
    top: -41px;
  }
  .staging-buttons .material-icons,
  .staging-buttons .material-icons-outlined {
    font-size: 18px;
    margin: -2px;
  }
  .set-board .material-icons {
    margin-left: 1px;
  }
  .clear .material-icons {
    margin-right: 1px;
  }
}
@media (max-width: 470px) and (max-height: 800px) {
  .attack-direction .game-state {
    top: 130px;
  }
}
@media (max-width: 400px) and (max-height: 700px) {
  .staging-buttons {
    margin-top: 0;
  }
  .staging-buttons .material-icons,
  .staging-buttons .material-icons-outlined {
    font-size: 16px;
    margin: 0 1px 0 0;
  }
}
.intro-text {
  position: relative;
  top: -9%;
  grid-row: 2/4;
  grid-column: 1/-1;
  align-self: center;
  justify-self: center;
  width: min(80%, 450px);
  padding: 6px 12px 6px 12px;
  color: white;
  background-color: rgba(57, 32, 0, 0.8509803922);
  font-size: 22px;
  text-align: justify;
  animation: background-fade-in 6s;
}
.intro-text p::before {
  content: "​";
  content: "​"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  white-space: break-spaces;
  will-change: content;
  animation: typed-0 43.9s linear 1s 0 forwards, typed-0-final 18.66s linear 1s 1 forwards;
}
@keyframes typed-0-final {
  0%, 0.3215434084% {
    content: "​";
    content: "​"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  0.3225434084%, 0.6430868167% {
    content: "​";
    content: "​"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  0.6440868167%, 0.9646302251% {
    content: "​";
    content: "​"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  0.9656302251%, 1.2861736334% {
    content: "​";
    content: "​"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  1.2871736334%, 1.6077170418% {
    content: "​T";
    content: "​T"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  1.6087170418%, 1.9292604502% {
    content: "​Th";
    content: "​Th"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  1.9302604502%, 2.2508038585% {
    content: "​The";
    content: "​The"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  2.2518038585%, 2.5723472669% {
    content: "​The ";
    content: "​The "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  2.5733472669%, 2.8938906752% {
    content: "​The w";
    content: "​The w"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  2.8948906752%, 3.2154340836% {
    content: "​The wa";
    content: "​The wa"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  3.2164340836%, 3.536977492% {
    content: "​The wai";
    content: "​The wai"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  3.537977492%, 3.8585209003% {
    content: "​The wait";
    content: "​The wait"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  3.8595209003%, 4.1800643087% {
    content: "​The wait ";
    content: "​The wait "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  4.1810643087%, 4.501607717% {
    content: "​The wait i";
    content: "​The wait i"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  4.502607717%, 4.8231511254% {
    content: "​The wait is";
    content: "​The wait is"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  4.8241511254%, 5.1446945338% {
    content: "​The wait is ";
    content: "​The wait is "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  5.1456945338%, 5.4662379421% {
    content: "​The wait is o";
    content: "​The wait is o"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  5.4672379421%, 5.7877813505% {
    content: "​The wait is ov";
    content: "​The wait is ov"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  5.7887813505%, 6.1093247588% {
    content: "​The wait is ove";
    content: "​The wait is ove"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  6.1103247588%, 6.4308681672% {
    content: "​The wait is over";
    content: "​The wait is over"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  6.4318681672%, 6.7524115756% {
    content: "​The wait is over!";
    content: "​The wait is over!"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  6.7534115756%, 7.0739549839% {
    content: "​The wait is over!";
    content: "​The wait is over!"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  7.0749549839%, 7.3954983923% {
    content: "​The wait is over!";
    content: "​The wait is over!"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  7.3964983923%, 7.7170418006% {
    content: "​The wait is over!";
    content: "​The wait is over!"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  7.7180418006%, 8.038585209% {
    content: "​The wait is over!";
    content: "​The wait is over!"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  8.039585209%, 8.3601286174% {
    content: "​The wait is over!";
    content: "​The wait is over!"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  8.3611286174%, 8.6816720257% {
    content: "​The wait is over!";
    content: "​The wait is over!"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  8.6826720257%, 9.0032154341% {
    content: "​The wait is over! ";
    content: "​The wait is over! "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  9.0042154341%, 9.3247588424% {
    content: "​The wait is over! J";
    content: "​The wait is over! J"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  9.3257588424%, 9.6463022508% {
    content: "​The wait is over! Ja";
    content: "​The wait is over! Ja"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  9.6473022508%, 9.9678456592% {
    content: "​The wait is over! Jac";
    content: "​The wait is over! Jac"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  9.9688456592%, 10.2893890675% {
    content: "​The wait is over! Jaco";
    content: "​The wait is over! Jaco"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  10.2903890675%, 10.6109324759% {
    content: "​The wait is over! Jacob";
    content: "​The wait is over! Jacob"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  10.6119324759%, 10.9324758842% {
    content: "​The wait is over! Jacobs";
    content: "​The wait is over! Jacobs"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  10.9334758842%, 11.2540192926% {
    content: "​The wait is over! Jacobs ";
    content: "​The wait is over! Jacobs "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  11.2550192926%, 11.575562701% {
    content: "​The wait is over! Jacobs M";
    content: "​The wait is over! Jacobs M"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  11.576562701%, 11.8971061093% {
    content: "​The wait is over! Jacobs Mu";
    content: "​The wait is over! Jacobs Mu"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  11.8981061093%, 12.2186495177% {
    content: "​The wait is over! Jacobs Mus";
    content: "​The wait is over! Jacobs Mus"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  12.2196495177%, 12.540192926% {
    content: "​The wait is over! Jacobs Musi";
    content: "​The wait is over! Jacobs Musi"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  12.541192926%, 12.8617363344% {
    content: "​The wait is over! Jacobs Music";
    content: "​The wait is over! Jacobs Music"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  12.8627363344%, 13.1832797428% {
    content: "​The wait is over! Jacobs Music ";
    content: "​The wait is over! Jacobs Music "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  13.1842797428%, 13.5048231511% {
    content: "​The wait is over! Jacobs Music C";
    content: "​The wait is over! Jacobs Music C"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  13.5058231511%, 13.8263665595% {
    content: "​The wait is over! Jacobs Music Ce";
    content: "​The wait is over! Jacobs Music Ce"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  13.8273665595%, 14.1479099678% {
    content: "​The wait is over! Jacobs Music Cen";
    content: "​The wait is over! Jacobs Music Cen"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  14.1489099678%, 14.4694533762% {
    content: "​The wait is over! Jacobs Music Cent";
    content: "​The wait is over! Jacobs Music Cent"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  14.4704533762%, 14.7909967846% {
    content: "​The wait is over! Jacobs Music Cente";
    content: "​The wait is over! Jacobs Music Cente"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  14.7919967846%, 15.1125401929% {
    content: "​The wait is over! Jacobs Music Center";
    content: "​The wait is over! Jacobs Music Center"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  15.1135401929%, 15.4340836013% {
    content: "​The wait is over! Jacobs Music Center ";
    content: "​The wait is over! Jacobs Music Center "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  15.4350836013%, 15.7556270096% {
    content: "​The wait is over! Jacobs Music Center i";
    content: "​The wait is over! Jacobs Music Center i"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  15.7566270096%, 16.077170418% {
    content: "​The wait is over! Jacobs Music Center is";
    content: "​The wait is over! Jacobs Music Center is"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  16.078170418%, 16.3987138264% {
    content: "​The wait is over! Jacobs Music Center is ";
    content: "​The wait is over! Jacobs Music Center is "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  16.3997138264%, 16.7202572347% {
    content: "​The wait is over! Jacobs Music Center is f";
    content: "​The wait is over! Jacobs Music Center is f"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  16.7212572347%, 17.0418006431% {
    content: "​The wait is over! Jacobs Music Center is fi";
    content: "​The wait is over! Jacobs Music Center is fi"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  17.0428006431%, 17.3633440514% {
    content: "​The wait is over! Jacobs Music Center is fin";
    content: "​The wait is over! Jacobs Music Center is fin"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  17.3643440514%, 17.6848874598% {
    content: "​The wait is over! Jacobs Music Center is fina";
    content: "​The wait is over! Jacobs Music Center is fina"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  17.6858874598%, 18.0064308682% {
    content: "​The wait is over! Jacobs Music Center is final";
    content: "​The wait is over! Jacobs Music Center is final"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  18.0074308682%, 18.3279742765% {
    content: "​The wait is over! Jacobs Music Center is finall";
    content: "​The wait is over! Jacobs Music Center is finall"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  18.3289742765%, 18.6495176849% {
    content: "​The wait is over! Jacobs Music Center is finally";
    content: "​The wait is over! Jacobs Music Center is finally"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  18.6505176849%, 18.9710610932% {
    content: "​The wait is over! Jacobs Music Center is finally ";
    content: "​The wait is over! Jacobs Music Center is finally "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  18.9720610932%, 19.2926045016% {
    content: "​The wait is over! Jacobs Music Center is finally c";
    content: "​The wait is over! Jacobs Music Center is finally c"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  19.2936045016%, 19.61414791% {
    content: "​The wait is over! Jacobs Music Center is finally co";
    content: "​The wait is over! Jacobs Music Center is finally co"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  19.61514791%, 19.9356913183% {
    content: "​The wait is over! Jacobs Music Center is finally com";
    content: "​The wait is over! Jacobs Music Center is finally com"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  19.9366913183%, 20.2572347267% {
    content: "​The wait is over! Jacobs Music Center is finally comp";
    content: "​The wait is over! Jacobs Music Center is finally comp"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  20.2582347267%, 20.578778135% {
    content: "​The wait is over! Jacobs Music Center is finally compl";
    content: "​The wait is over! Jacobs Music Center is finally compl"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  20.579778135%, 20.9003215434% {
    content: "​The wait is over! Jacobs Music Center is finally comple";
    content: "​The wait is over! Jacobs Music Center is finally comple"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  20.9013215434%, 21.2218649518% {
    content: "​The wait is over! Jacobs Music Center is finally complet";
    content: "​The wait is over! Jacobs Music Center is finally complet"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  21.2228649518%, 21.5434083601% {
    content: "​The wait is over! Jacobs Music Center is finally complete";
    content: "​The wait is over! Jacobs Music Center is finally complete"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  21.5444083601%, 21.8649517685% {
    content: "​The wait is over! Jacobs Music Center is finally complete,";
    content: "​The wait is over! Jacobs Music Center is finally complete,"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  21.8659517685%, 22.1864951768% {
    content: "​The wait is over! Jacobs Music Center is finally complete,";
    content: "​The wait is over! Jacobs Music Center is finally complete,"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  22.1874951768%, 22.5080385852% {
    content: "​The wait is over! Jacobs Music Center is finally complete, ";
    content: "​The wait is over! Jacobs Music Center is finally complete, "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  22.5090385852%, 22.8295819936% {
    content: "​The wait is over! Jacobs Music Center is finally complete, a";
    content: "​The wait is over! Jacobs Music Center is finally complete, a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  22.8305819936%, 23.1511254019% {
    content: "​The wait is over! Jacobs Music Center is finally complete, an";
    content: "​The wait is over! Jacobs Music Center is finally complete, an"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  23.1521254019%, 23.4726688103% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and";
    content: "​The wait is over! Jacobs Music Center is finally complete, and"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  23.4736688103%, 23.7942122186% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  23.7952122186%, 24.115755627% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and t";
    content: "​The wait is over! Jacobs Music Center is finally complete, and t"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  24.116755627%, 24.4372990354% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and th";
    content: "​The wait is over! Jacobs Music Center is finally complete, and th"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  24.4382990354%, 24.7588424437% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  24.7598424437%, 25.0803858521% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  25.0813858521%, 25.4019292605% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the S";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the S"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  25.4029292605%, 25.7234726688% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the Sa";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the Sa"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  25.7244726688%, 26.0450160772% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  26.0460160772%, 26.3665594855% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  26.3675594855%, 26.6881028939% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San D";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San D"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  26.6891028939%, 27.0096463023% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Di";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Di"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  27.0106463023%, 27.3311897106% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Die";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Die"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  27.3321897106%, 27.652733119% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Dieg";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Dieg"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  27.653733119%, 27.9742765273% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  27.9752765273%, 28.2958199357% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  28.2968199357%, 28.6173633441% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego S";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego S"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  28.6183633441%, 28.9389067524% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Sy";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Sy"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  28.9399067524%, 29.2604501608% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Sym";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Sym"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  29.2614501608%, 29.5819935691% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symp";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symp"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  29.5829935691%, 29.9035369775% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symph";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symph"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  29.9045369775%, 30.2250803859% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Sympho";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Sympho"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  30.2260803859%, 30.5466237942% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphon";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphon"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  30.5476237942%, 30.8681672026% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  30.8691672026%, 31.1897106109% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  31.1907106109%, 31.5112540193% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony h";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony h"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  31.5122540193%, 31.8327974277% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony ha";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony ha"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  31.8337974277%, 32.154340836% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  32.155340836%, 32.4758842444% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  32.4768842444%, 32.7974276527% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  32.7984276527%, 33.1189710611% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  33.1199710611%, 33.4405144695% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a h";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a h"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  33.4415144695%, 33.7620578778% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a ho";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a ho"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  33.7630578778%, 34.0836012862% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a hom";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a hom"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  34.0846012862%, 34.4051446945% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  34.4061446945%, 34.7266881029% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  34.7276881029%, 35.0482315113% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home a";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  35.0492315113%, 35.3697749196% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home ag";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home ag"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  35.3707749196%, 35.691318328% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home aga";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home aga"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  35.692318328%, 36.0128617363% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home agai";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home agai"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  36.0138617363%, 36.3344051447% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  36.3354051447%, 36.6559485531% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  36.6569485531%, 36.9774919614% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  36.9784919614%, 37.2990353698% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  37.3000353698%, 37.6205787781% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  37.6215787781%, 37.9421221865% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  37.9431221865%, 38.2636655949% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  38.2646655949%, 38.5852090032% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  38.5862090032%, 38.9067524116% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  38.9077524116%, 39.2282958199% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  39.2292958199%, 39.5498392283% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  39.5508392283%, 39.8713826367% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  39.8723826367%, 40.192926045% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. B";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. B"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  40.193926045%, 40.5144694534% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. Bu";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. Bu"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  40.5154694534%, 40.8360128617% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  40.8370128617%, 41.1575562701% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  41.1585562701%, 41.4790996785% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But a";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  41.4800996785%, 41.8006430868% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But al";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But al"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  41.8016430868%, 42.1221864952% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But ala";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But ala"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  42.1231864952%, 42.4437299035% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  42.4447299035%, 42.7652733119% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  42.7662733119%, 43.0868167203% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas —";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas —"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  43.0878167203%, 43.4083601286% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  43.4093601286%, 43.729903537% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  43.730903537%, 44.0514469453% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  44.0524469453%, 44.3729903537% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a r";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a r"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  44.3739903537%, 44.6945337621% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a ri";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a ri"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  44.6955337621%, 45.0160771704% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a riv";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a riv"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  45.0170771704%, 45.3376205788% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a riva";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a riva"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  45.3386205788%, 45.6591639871% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  45.6601639871%, 45.9807073955% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  45.9817073955%, 46.3022508039% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival o";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival o"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  46.3032508039%, 46.6237942122% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival or";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival or"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  46.6247942122%, 46.9453376206% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orc";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orc"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  46.9463376206%, 47.2668810289% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orch";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orch"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  47.2678810289%, 47.5884244373% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orche";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orche"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  47.5894244373%, 47.9099678457% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orches";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orches"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  47.9109678457%, 48.231511254% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchest";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchest"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  48.232511254%, 48.5530546624% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestr";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestr"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  48.5540546624%, 48.8745980707% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  48.8755980707%, 49.1961414791% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  49.1971414791%, 49.5176848875% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra h";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra h"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  49.5186848875%, 49.8392282958% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra ha";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra ha"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  49.8402282958%, 50.1607717042% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  50.1617717042%, 50.4823151125% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  50.4833151125%, 50.8038585209% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has c";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has c"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  50.8048585209%, 51.1254019293% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has cl";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has cl"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  51.1264019293%, 51.4469453376% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has cla";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has cla"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  51.4479453376%, 51.768488746% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has clai";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has clai"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  51.769488746%, 52.0900321543% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claim";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claim"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  52.0910321543%, 52.4115755627% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claime";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claime"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  52.4125755627%, 52.7331189711% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  52.7341189711%, 53.0546623794% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  53.0556623794%, 53.3762057878% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed t";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed t"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  53.3772057878%, 53.6977491961% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed th";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed th"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  53.6987491961%, 54.0192926045% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  54.0202926045%, 54.3408360129% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  54.3418360129%, 54.6623794212% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the h";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the h"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  54.6633794212%, 54.9839228296% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the ha";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the ha"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  54.9849228296%, 55.3054662379% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hal";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hal"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  55.3064662379%, 55.6270096463% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  55.6280096463%, 55.9485530547% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  55.9495530547%, 56.270096463% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall a";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  56.271096463%, 56.5916398714% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  56.5926398714%, 56.9131832797% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  56.9141832797%, 57.2347266881% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as i";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as i"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  57.2357266881%, 57.5562700965% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as it";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as it"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  57.5572700965%, 57.8778135048% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  57.8788135048%, 58.1993569132% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  58.2003569132%, 58.5209003215% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its o";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its o"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  58.5219003215%, 58.8424437299% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its ow";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its ow"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  58.8434437299%, 59.1639871383% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  59.1649871383%, 59.4855305466% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  59.4865305466%, 59.807073955% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  59.808073955%, 60.1286173633% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  60.1296173633%, 60.4501607717% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  60.4511607717%, 60.7717041801% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  60.7727041801%, 61.0932475884% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  61.0942475884%, 61.4147909968% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  61.4157909968%, 61.7363344051% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  61.7373344051%, 62.0578778135% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  62.0588778135%, 62.3794212219% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. P";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. P"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  62.3804212219%, 62.7009646302% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Pe";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Pe"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  62.7019646302%, 63.0225080386% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  63.0235080386%, 63.3440514469% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  63.3450514469%, 63.6655948553% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per I";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per I"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  63.6665948553%, 63.9871382637% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per IC";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per IC"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  63.9881382637%, 64.308681672% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICS";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICS"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  64.309681672%, 64.6302250804% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSO";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSO"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  64.6312250804%, 64.9517684887% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  64.9527684887%, 65.2733118971% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  65.2743118971%, 65.5948553055% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM b";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM b"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  65.5958553055%, 65.9163987138% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM by";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM by"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  65.9173987138%, 66.2379421222% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM byl";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM byl"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  66.2389421222%, 66.5594855305% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM byla";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM byla"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  66.5604855305%, 66.8810289389% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaw";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaw"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  66.8820289389%, 67.2025723473% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  67.2035723473%, 67.5241157556% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws,";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws,"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  67.5251157556%, 67.845659164% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  67.846659164%, 68.1672025723% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, t";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, t"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  68.1682025723%, 68.4887459807% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, th";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, th"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  68.4897459807%, 68.8102893891% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, the";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, the"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  68.8112893891%, 69.1318327974% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, ther";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, ther"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  69.1328327974%, 69.4533762058% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  69.4543762058%, 69.7749196141% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  69.7759196141%, 70.0964630225% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there i";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there i"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  70.0974630225%, 70.4180064309% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  70.4190064309%, 70.7395498392% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  70.7405498392%, 71.0610932476% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is o";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is o"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  71.0620932476%, 71.3826366559% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is on";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is on"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  71.3836366559%, 71.7041800643% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is onl";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is onl"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  71.7051800643%, 72.0257234727% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  72.0267234727%, 72.347266881% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  72.348266881%, 72.6688102894% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only o";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only o"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  72.6698102894%, 72.9903536977% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only on";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only on"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  72.9913536977%, 73.3118971061% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  73.3128971061%, 73.6334405145% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  73.6344405145%, 73.9549839228% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one w";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one w"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  73.9559839228%, 74.2765273312% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one wa";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one wa"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  74.2775273312%, 74.5980707395% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  74.5990707395%, 74.9196141479% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  74.9206141479%, 75.2411575563% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way t";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way t"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  75.2421575563%, 75.5627009646% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  75.5637009646%, 75.884244373% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  75.885244373%, 76.2057877814% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to d";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to d"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  76.2067877814%, 76.5273311897% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to de";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to de"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  76.5283311897%, 76.8488745981% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to det";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to det"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  76.8498745981%, 77.1704180064% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to dete";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to dete"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  77.1714180064%, 77.4919614148% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to deter";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to deter"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  77.4929614148%, 77.8135048232% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determ"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  77.8145048232%, 78.1350482315% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determi";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determi"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  78.1360482315%, 78.4565916399% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determin";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determin"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  78.4575916399%, 78.7781350482% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  78.7791350482%, 79.0996784566% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  79.1006784566%, 79.421221865% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine w";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine w"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  79.422221865%, 79.7427652733% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine wh";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine wh"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  79.7437652733%, 80.0643086817% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  80.0653086817%, 80.38585209% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  80.38685209%, 80.7073954984% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who s";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who s"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  80.7083954984%, 81.0289389068% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who sh";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who sh"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  81.0299389068%, 81.3504823151% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who sho";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who sho"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  81.3514823151%, 81.6720257235% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who shou";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who shou"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  81.6730257235%, 81.9935691318% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who shoul";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who shoul"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  81.9945691318%, 82.3151125402% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  82.3161125402%, 82.6366559486% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  82.6376559486%, 82.9581993569% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should r";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should r"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  82.9591993569%, 83.2797427653% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should ri";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should ri"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  83.2807427653%, 83.6012861736% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rig";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rig"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  83.6022861736%, 83.922829582% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should righ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should righ"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  83.923829582%, 84.2443729904% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should right";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should right"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  84.2453729904%, 84.5659163987% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightf";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightf"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  84.5669163987%, 84.8874598071% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfu";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfu"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  84.8884598071%, 85.2090032154% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightful";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightful"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  85.2100032154%, 85.5305466238% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfull";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfull"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  85.5315466238%, 85.8520900322% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  85.8530900322%, 86.1736334405% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  86.1746334405%, 86.4951768489% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully t";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully t"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  86.4961768489%, 86.8167202572% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully ta";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully ta"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  86.8177202572%, 87.1382636656% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully tak";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully tak"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  87.1392636656%, 87.459807074% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  87.460807074%, 87.7813504823% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  87.7823504823%, 88.1028938907% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take t";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take t"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  88.1038938907%, 88.424437299% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take th";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take th"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  88.425437299%, 88.7459807074% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  88.7469807074%, 89.0675241158% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  89.0685241158%, 89.3890675241% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the s";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the s"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  89.3900675241%, 89.7106109325% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the st";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the st"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  89.7116109325%, 90.0321543408% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the sta";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the sta"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  90.0331543408%, 90.3536977492% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stag";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stag"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  90.3546977492%, 90.6752411576% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  90.6762411576%, 90.9967845659% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  90.9977845659%, 91.3183279743% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  91.3193279743%, 91.6398713826% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  91.6408713826%, 91.961414791% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  91.962414791%, 92.2829581994% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  92.2839581994%, 92.6045016077% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  92.6055016077%, 92.9260450161% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  92.9270450161%, 93.2475884244% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  93.2485884244%, 93.5691318328% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  93.5701318328%, 93.8906752412% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  93.8916752412%, 94.2122186495% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a g";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a g"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  94.2132186495%, 94.5337620579% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a ga";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a ga"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  94.5347620579%, 94.8553054662% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a gam";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a gam"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  94.8563054662%, 95.1768488746% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  95.1778488746%, 95.498392283% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  95.499392283%, 95.8199356913% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game o";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game o"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  95.8209356913%, 96.1414790997% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  96.1424790997%, 96.463022508% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  96.464022508%, 96.7845659164% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of b";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of b"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  96.7855659164%, 97.1061093248% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of ba";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of ba"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  97.1071093248%, 97.4276527331% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of bat";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of bat"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  97.4286527331%, 97.7491961415% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of batt";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of batt"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  97.7501961415%, 98.0707395498% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battl";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battl"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  98.0717395498%, 98.3922829582% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battle";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battle"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  98.3932829582%, 98.7138263666% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battles";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battles"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  98.7148263666%, 99.0353697749% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battlesh";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battlesh"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  99.0363697749%, 99.3569131833% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleshi";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleshi"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  99.3579131833%, 99.6784565916% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  99.6794565916%, 100% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
}
@keyframes typed-0 {
  0%, 0.1356742597% {
    content: "​";
    content: "​"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  0.1366742597%, 0.2723485194% {
    content: "​";
    content: "​"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  0.2733485194%, 0.409022779% {
    content: "​";
    content: "​"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  0.410022779%, 0.5456970387% {
    content: "​";
    content: "​"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  0.5466970387%, 0.6823712984% {
    content: "​T";
    content: "​T"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  0.6833712984%, 0.8190455581% {
    content: "​Th";
    content: "​Th"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  0.8200455581%, 0.9557198178% {
    content: "​The";
    content: "​The"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  0.9567198178%, 1.0923940774% {
    content: "​The ";
    content: "​The "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  1.0933940774%, 1.2290683371% {
    content: "​The w";
    content: "​The w"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  1.2300683371%, 1.3657425968% {
    content: "​The wa";
    content: "​The wa"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  1.3667425968%, 1.5024168565% {
    content: "​The wai";
    content: "​The wai"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  1.5034168565%, 1.6390911162% {
    content: "​The wait";
    content: "​The wait"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  1.6400911162%, 1.7757653759% {
    content: "​The wait ";
    content: "​The wait "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  1.7767653759%, 1.9124396355% {
    content: "​The wait i";
    content: "​The wait i"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  1.9134396355%, 2.0491138952% {
    content: "​The wait is";
    content: "​The wait is"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  2.0501138952%, 2.1857881549% {
    content: "​The wait is ";
    content: "​The wait is "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  2.1867881549%, 2.3224624146% {
    content: "​The wait is o";
    content: "​The wait is o"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  2.3234624146%, 2.4591366743% {
    content: "​The wait is ov";
    content: "​The wait is ov"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  2.4601366743%, 2.5958109339% {
    content: "​The wait is ove";
    content: "​The wait is ove"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  2.5968109339%, 2.7324851936% {
    content: "​The wait is over";
    content: "​The wait is over"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  2.7334851936%, 2.8691594533% {
    content: "​The wait is over!";
    content: "​The wait is over!"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  2.8701594533%, 3.005833713% {
    content: "​The wait is over!";
    content: "​The wait is over!"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  3.006833713%, 3.1425079727% {
    content: "​The wait is over!";
    content: "​The wait is over!"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  3.1435079727%, 3.2791822323% {
    content: "​The wait is over!";
    content: "​The wait is over!"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  3.2801822323%, 3.415856492% {
    content: "​The wait is over!";
    content: "​The wait is over!"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  3.416856492%, 3.5525307517% {
    content: "​The wait is over!";
    content: "​The wait is over!"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  3.5535307517%, 3.6892050114% {
    content: "​The wait is over!";
    content: "​The wait is over!"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  3.6902050114%, 3.8258792711% {
    content: "​The wait is over! ";
    content: "​The wait is over! "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  3.8268792711%, 3.9625535308% {
    content: "​The wait is over! J";
    content: "​The wait is over! J"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  3.9635535308%, 4.0992277904% {
    content: "​The wait is over! Ja";
    content: "​The wait is over! Ja"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  4.1002277904%, 4.2359020501% {
    content: "​The wait is over! Jac";
    content: "​The wait is over! Jac"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  4.2369020501%, 4.3725763098% {
    content: "​The wait is over! Jaco";
    content: "​The wait is over! Jaco"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  4.3735763098%, 4.5092505695% {
    content: "​The wait is over! Jacob";
    content: "​The wait is over! Jacob"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  4.5102505695%, 4.6459248292% {
    content: "​The wait is over! Jacobs";
    content: "​The wait is over! Jacobs"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  4.6469248292%, 4.7825990888% {
    content: "​The wait is over! Jacobs ";
    content: "​The wait is over! Jacobs "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  4.7835990888%, 4.9192733485% {
    content: "​The wait is over! Jacobs M";
    content: "​The wait is over! Jacobs M"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  4.9202733485%, 5.0559476082% {
    content: "​The wait is over! Jacobs Mu";
    content: "​The wait is over! Jacobs Mu"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  5.0569476082%, 5.1926218679% {
    content: "​The wait is over! Jacobs Mus";
    content: "​The wait is over! Jacobs Mus"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  5.1936218679%, 5.3292961276% {
    content: "​The wait is over! Jacobs Musi";
    content: "​The wait is over! Jacobs Musi"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  5.3302961276%, 5.4659703872% {
    content: "​The wait is over! Jacobs Music";
    content: "​The wait is over! Jacobs Music"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  5.4669703872%, 5.6026446469% {
    content: "​The wait is over! Jacobs Music ";
    content: "​The wait is over! Jacobs Music "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  5.6036446469%, 5.7393189066% {
    content: "​The wait is over! Jacobs Music C";
    content: "​The wait is over! Jacobs Music C"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  5.7403189066%, 5.8759931663% {
    content: "​The wait is over! Jacobs Music Ce";
    content: "​The wait is over! Jacobs Music Ce"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  5.8769931663%, 6.012667426% {
    content: "​The wait is over! Jacobs Music Cen";
    content: "​The wait is over! Jacobs Music Cen"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  6.013667426%, 6.1493416856% {
    content: "​The wait is over! Jacobs Music Cent";
    content: "​The wait is over! Jacobs Music Cent"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  6.1503416856%, 6.2860159453% {
    content: "​The wait is over! Jacobs Music Cente";
    content: "​The wait is over! Jacobs Music Cente"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  6.2870159453%, 6.422690205% {
    content: "​The wait is over! Jacobs Music Center";
    content: "​The wait is over! Jacobs Music Center"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  6.423690205%, 6.5593644647% {
    content: "​The wait is over! Jacobs Music Center ";
    content: "​The wait is over! Jacobs Music Center "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  6.5603644647%, 6.6960387244% {
    content: "​The wait is over! Jacobs Music Center i";
    content: "​The wait is over! Jacobs Music Center i"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  6.6970387244%, 6.8327129841% {
    content: "​The wait is over! Jacobs Music Center is";
    content: "​The wait is over! Jacobs Music Center is"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  6.8337129841%, 6.9693872437% {
    content: "​The wait is over! Jacobs Music Center is ";
    content: "​The wait is over! Jacobs Music Center is "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  6.9703872437%, 7.1060615034% {
    content: "​The wait is over! Jacobs Music Center is f";
    content: "​The wait is over! Jacobs Music Center is f"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  7.1070615034%, 7.2427357631% {
    content: "​The wait is over! Jacobs Music Center is fi";
    content: "​The wait is over! Jacobs Music Center is fi"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  7.2437357631%, 7.3794100228% {
    content: "​The wait is over! Jacobs Music Center is fin";
    content: "​The wait is over! Jacobs Music Center is fin"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  7.3804100228%, 7.5160842825% {
    content: "​The wait is over! Jacobs Music Center is fina";
    content: "​The wait is over! Jacobs Music Center is fina"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  7.5170842825%, 7.6527585421% {
    content: "​The wait is over! Jacobs Music Center is final";
    content: "​The wait is over! Jacobs Music Center is final"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  7.6537585421%, 7.7894328018% {
    content: "​The wait is over! Jacobs Music Center is finall";
    content: "​The wait is over! Jacobs Music Center is finall"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  7.7904328018%, 7.9261070615% {
    content: "​The wait is over! Jacobs Music Center is finally";
    content: "​The wait is over! Jacobs Music Center is finally"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  7.9271070615%, 8.0627813212% {
    content: "​The wait is over! Jacobs Music Center is finally ";
    content: "​The wait is over! Jacobs Music Center is finally "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  8.0637813212%, 8.1994555809% {
    content: "​The wait is over! Jacobs Music Center is finally c";
    content: "​The wait is over! Jacobs Music Center is finally c"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  8.2004555809%, 8.3361298405% {
    content: "​The wait is over! Jacobs Music Center is finally co";
    content: "​The wait is over! Jacobs Music Center is finally co"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  8.3371298405%, 8.4728041002% {
    content: "​The wait is over! Jacobs Music Center is finally com";
    content: "​The wait is over! Jacobs Music Center is finally com"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  8.4738041002%, 8.6094783599% {
    content: "​The wait is over! Jacobs Music Center is finally comp";
    content: "​The wait is over! Jacobs Music Center is finally comp"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  8.6104783599%, 8.7461526196% {
    content: "​The wait is over! Jacobs Music Center is finally compl";
    content: "​The wait is over! Jacobs Music Center is finally compl"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  8.7471526196%, 8.8828268793% {
    content: "​The wait is over! Jacobs Music Center is finally comple";
    content: "​The wait is over! Jacobs Music Center is finally comple"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  8.8838268793%, 9.019501139% {
    content: "​The wait is over! Jacobs Music Center is finally complet";
    content: "​The wait is over! Jacobs Music Center is finally complet"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  9.020501139%, 9.1561753986% {
    content: "​The wait is over! Jacobs Music Center is finally complete";
    content: "​The wait is over! Jacobs Music Center is finally complete"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  9.1571753986%, 9.2928496583% {
    content: "​The wait is over! Jacobs Music Center is finally complete,";
    content: "​The wait is over! Jacobs Music Center is finally complete,"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  9.2938496583%, 9.429523918% {
    content: "​The wait is over! Jacobs Music Center is finally complete,";
    content: "​The wait is over! Jacobs Music Center is finally complete,"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  9.430523918%, 9.5661981777% {
    content: "​The wait is over! Jacobs Music Center is finally complete, ";
    content: "​The wait is over! Jacobs Music Center is finally complete, "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  9.5671981777%, 9.7028724374% {
    content: "​The wait is over! Jacobs Music Center is finally complete, a";
    content: "​The wait is over! Jacobs Music Center is finally complete, a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  9.7038724374%, 9.839546697% {
    content: "​The wait is over! Jacobs Music Center is finally complete, an";
    content: "​The wait is over! Jacobs Music Center is finally complete, an"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  9.840546697%, 9.9762209567% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and";
    content: "​The wait is over! Jacobs Music Center is finally complete, and"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  9.9772209567%, 10.1128952164% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  10.1138952164%, 10.2495694761% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and t";
    content: "​The wait is over! Jacobs Music Center is finally complete, and t"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  10.2505694761%, 10.3862437358% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and th";
    content: "​The wait is over! Jacobs Music Center is finally complete, and th"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  10.3872437358%, 10.5229179954% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  10.5239179954%, 10.6595922551% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  10.6605922551%, 10.7962665148% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the S";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the S"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  10.7972665148%, 10.9329407745% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the Sa";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the Sa"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  10.9339407745%, 11.0696150342% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  11.0706150342%, 11.2062892938% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  11.2072892938%, 11.3429635535% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San D";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San D"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  11.3439635535%, 11.4796378132% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Di";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Di"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  11.4806378132%, 11.6163120729% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Die";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Die"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  11.6173120729%, 11.7529863326% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Dieg";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Dieg"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  11.7539863326%, 11.8896605923% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  11.8906605923%, 12.0263348519% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  12.0273348519%, 12.1630091116% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego S";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego S"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  12.1640091116%, 12.2996833713% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Sy";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Sy"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  12.3006833713%, 12.436357631% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Sym";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Sym"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  12.437357631%, 12.5730318907% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symp";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symp"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  12.5740318907%, 12.7097061503% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symph";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symph"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  12.7107061503%, 12.84638041% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Sympho";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Sympho"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  12.84738041%, 12.9830546697% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphon";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphon"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  12.9840546697%, 13.1197289294% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  13.1207289294%, 13.2564031891% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  13.2574031891%, 13.3930774487% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony h";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony h"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  13.3940774487%, 13.5297517084% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony ha";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony ha"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  13.5307517084%, 13.6664259681% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  13.6674259681%, 13.8031002278% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  13.8041002278%, 13.9397744875% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  13.9407744875%, 14.0764487472% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  14.0774487472%, 14.2131230068% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a h";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a h"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  14.2141230068%, 14.3497972665% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a ho";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a ho"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  14.3507972665%, 14.4864715262% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a hom";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a hom"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  14.4874715262%, 14.6231457859% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  14.6241457859%, 14.7598200456% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  14.7608200456%, 14.8964943052% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home a";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  14.8974943052%, 15.0331685649% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home ag";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home ag"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  15.0341685649%, 15.1698428246% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home aga";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home aga"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  15.1708428246%, 15.3065170843% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home agai";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home agai"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  15.3075170843%, 15.443191344% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  15.444191344%, 15.5798656036% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  15.5808656036%, 15.7165398633% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  15.7175398633%, 15.853214123% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  15.854214123%, 15.9898883827% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  15.9908883827%, 16.1265626424% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  16.1275626424%, 16.2632369021% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  16.2642369021%, 16.3999111617% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  16.4009111617%, 16.5365854214% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  16.5375854214%, 16.6732596811% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  16.6742596811%, 16.8099339408% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  16.8109339408%, 16.9466082005% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  16.9476082005%, 17.0832824601% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. B";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. B"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  17.0842824601%, 17.2199567198% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. Bu";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. Bu"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  17.2209567198%, 17.3566309795% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  17.3576309795%, 17.4933052392% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  17.4943052392%, 17.6299794989% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But a";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  17.6309794989%, 17.7666537585% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But al";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But al"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  17.7676537585%, 17.9033280182% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But ala";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But ala"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  17.9043280182%, 18.0400022779% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  18.0410022779%, 18.1766765376% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  18.1776765376%, 18.3133507973% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas —";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas —"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  18.3143507973%, 18.4500250569% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  18.4510250569%, 18.5866993166% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  18.5876993166%, 18.7233735763% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  18.7243735763%, 18.860047836% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a r";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a r"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  18.861047836%, 18.9967220957% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a ri";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a ri"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  18.9977220957%, 19.1333963554% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a riv";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a riv"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  19.1343963554%, 19.270070615% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a riva";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a riva"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  19.271070615%, 19.4067448747% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  19.4077448747%, 19.5434191344% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  19.5444191344%, 19.6800933941% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival o";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival o"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  19.6810933941%, 19.8167676538% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival or";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival or"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  19.8177676538%, 19.9534419134% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orc";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orc"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  19.9544419134%, 20.0901161731% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orch";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orch"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  20.0911161731%, 20.2267904328% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orche";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orche"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  20.2277904328%, 20.3634646925% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orches";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orches"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  20.3644646925%, 20.5001389522% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchest";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchest"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  20.5011389522%, 20.6368132118% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestr";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestr"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  20.6378132118%, 20.7734874715% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  20.7744874715%, 20.9101617312% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  20.9111617312%, 21.0468359909% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra h";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra h"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  21.0478359909%, 21.1835102506% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra ha";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra ha"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  21.1845102506%, 21.3201845103% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  21.3211845103%, 21.4568587699% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  21.4578587699%, 21.5935330296% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has c";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has c"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  21.5945330296%, 21.7302072893% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has cl";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has cl"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  21.7312072893%, 21.866881549% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has cla";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has cla"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  21.867881549%, 22.0035558087% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has clai";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has clai"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  22.0045558087%, 22.1402300683% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claim";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claim"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  22.1412300683%, 22.276904328% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claime";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claime"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  22.277904328%, 22.4135785877% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  22.4145785877%, 22.5502528474% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  22.5512528474%, 22.6869271071% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed t";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed t"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  22.6879271071%, 22.8236013667% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed th";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed th"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  22.8246013667%, 22.9602756264% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  22.9612756264%, 23.0969498861% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  23.0979498861%, 23.2336241458% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the h";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the h"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  23.2346241458%, 23.3702984055% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the ha";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the ha"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  23.3712984055%, 23.5069726651% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hal";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hal"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  23.5079726651%, 23.6436469248% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  23.6446469248%, 23.7803211845% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  23.7813211845%, 23.9169954442% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall a";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  23.9179954442%, 24.0536697039% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  24.0546697039%, 24.1903439636% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  24.1913439636%, 24.3270182232% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as i";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as i"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  24.3280182232%, 24.4636924829% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as it";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as it"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  24.4646924829%, 24.6003667426% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  24.6013667426%, 24.7370410023% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  24.7380410023%, 24.873715262% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its o";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its o"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  24.874715262%, 25.0103895216% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its ow";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its ow"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  25.0113895216%, 25.1470637813% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  25.1480637813%, 25.283738041% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  25.284738041%, 25.4204123007% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  25.4214123007%, 25.5570865604% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  25.5580865604%, 25.69376082% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  25.69476082%, 25.8304350797% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  25.8314350797%, 25.9671093394% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  25.9681093394%, 26.1037835991% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  26.1047835991%, 26.2404578588% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  26.2414578588%, 26.3771321185% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  26.3781321185%, 26.5138063781% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. P";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. P"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  26.5148063781%, 26.6504806378% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Pe";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Pe"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  26.6514806378%, 26.7871548975% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  26.7881548975%, 26.9238291572% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  26.9248291572%, 27.0605034169% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per I";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per I"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  27.0615034169%, 27.1971776765% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per IC";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per IC"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  27.1981776765%, 27.3338519362% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICS";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICS"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  27.3348519362%, 27.4705261959% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSO";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSO"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  27.4715261959%, 27.6072004556% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  27.6082004556%, 27.7438747153% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  27.7448747153%, 27.8805489749% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM b";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM b"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  27.8815489749%, 28.0172232346% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM by";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM by"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  28.0182232346%, 28.1538974943% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM byl";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM byl"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  28.1548974943%, 28.290571754% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM byla";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM byla"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  28.291571754%, 28.4272460137% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaw";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaw"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  28.4282460137%, 28.5639202733% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  28.5649202733%, 28.700594533% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws,";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws,"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  28.701594533%, 28.8372687927% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  28.8382687927%, 28.9739430524% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, t";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, t"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  28.9749430524%, 29.1106173121% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, th";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, th"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  29.1116173121%, 29.2472915718% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, the";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, the"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  29.2482915718%, 29.3839658314% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, ther";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, ther"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  29.3849658314%, 29.5206400911% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  29.5216400911%, 29.6573143508% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  29.6583143508%, 29.7939886105% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there i";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there i"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  29.7949886105%, 29.9306628702% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  29.9316628702%, 30.0673371298% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  30.0683371298%, 30.2040113895% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is o";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is o"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  30.2050113895%, 30.3406856492% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is on";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is on"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  30.3416856492%, 30.4773599089% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is onl";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is onl"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  30.4783599089%, 30.6140341686% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  30.6150341686%, 30.7507084282% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  30.7517084282%, 30.8873826879% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only o";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only o"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  30.8883826879%, 31.0240569476% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only on";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only on"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  31.0250569476%, 31.1607312073% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  31.1617312073%, 31.297405467% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  31.298405467%, 31.4340797267% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one w";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one w"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  31.4350797267%, 31.5707539863% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one wa";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one wa"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  31.5717539863%, 31.707428246% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  31.708428246%, 31.8441025057% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  31.8451025057%, 31.9807767654% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way t";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way t"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  31.9817767654%, 32.1174510251% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  32.1184510251%, 32.2541252847% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  32.2551252847%, 32.3907995444% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to d";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to d"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  32.3917995444%, 32.5274738041% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to de";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to de"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  32.5284738041%, 32.6641480638% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to det";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to det"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  32.6651480638%, 32.8008223235% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to dete";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to dete"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  32.8018223235%, 32.9374965831% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to deter";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to deter"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  32.9384965831%, 33.0741708428% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determ"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  33.0751708428%, 33.2108451025% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determi";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determi"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  33.2118451025%, 33.3475193622% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determin";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determin"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  33.3485193622%, 33.4841936219% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  33.4851936219%, 33.6208678815% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  33.6218678815%, 33.7575421412% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine w";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine w"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  33.7585421412%, 33.8942164009% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine wh";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine wh"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  33.8952164009%, 34.0308906606% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  34.0318906606%, 34.1675649203% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  34.1685649203%, 34.30423918% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who s";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who s"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  34.30523918%, 34.4409134396% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who sh";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who sh"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  34.4419134396%, 34.5775876993% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who sho";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who sho"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  34.5785876993%, 34.714261959% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who shou";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who shou"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  34.715261959%, 34.8509362187% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who shoul";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who shoul"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  34.8519362187%, 34.9876104784% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  34.9886104784%, 35.124284738% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  35.125284738%, 35.2609589977% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should r";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should r"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  35.2619589977%, 35.3976332574% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should ri";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should ri"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  35.3986332574%, 35.5343075171% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rig";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rig"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  35.5353075171%, 35.6709817768% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should righ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should righ"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  35.6719817768%, 35.8076560364% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should right";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should right"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  35.8086560364%, 35.9443302961% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightf";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightf"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  35.9453302961%, 36.0810045558% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfu";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfu"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  36.0820045558%, 36.2176788155% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightful";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightful"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  36.2186788155%, 36.3543530752% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfull";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfull"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  36.3553530752%, 36.4910273349% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  36.4920273349%, 36.6277015945% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  36.6287015945%, 36.7643758542% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully t";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully t"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  36.7653758542%, 36.9010501139% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully ta";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully ta"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  36.9020501139%, 37.0377243736% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully tak";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully tak"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  37.0387243736%, 37.1743986333% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  37.1753986333%, 37.3110728929% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  37.3120728929%, 37.4477471526% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take t";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take t"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  37.4487471526%, 37.5844214123% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take th";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take th"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  37.5854214123%, 37.721095672% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  37.722095672%, 37.8577699317% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  37.8587699317%, 37.9944441913% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the s";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the s"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  37.9954441913%, 38.131118451% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the st";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the st"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  38.132118451%, 38.2677927107% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the sta";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the sta"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  38.2687927107%, 38.4044669704% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stag";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stag"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  38.4054669704%, 38.5411412301% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  38.5421412301%, 38.6778154897% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  38.6788154897%, 38.8144897494% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  38.8154897494%, 38.9511640091% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  38.9521640091%, 39.0878382688% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  39.0888382688%, 39.2245125285% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  39.2255125285%, 39.3611867882% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  39.3621867882%, 39.4978610478% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  39.4988610478%, 39.6345353075% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  39.6355353075%, 39.7712095672% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  39.7722095672%, 39.9078838269% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  39.9088838269%, 40.0445580866% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a g";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a g"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  40.0455580866%, 40.1812323462% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a ga";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a ga"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  40.1822323462%, 40.3179066059% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a gam";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a gam"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  40.3189066059%, 40.4545808656% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  40.4555808656%, 40.5912551253% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  40.5922551253%, 40.727929385% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game o";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game o"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  40.728929385%, 40.8646036446% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  40.8656036446%, 41.0012779043% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  41.0022779043%, 41.137952164% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of b";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of b"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  41.138952164%, 41.2746264237% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of ba";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of ba"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  41.2756264237%, 41.4113006834% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of bat";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of bat"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  41.4123006834%, 41.5479749431% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of batt";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of batt"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  41.5489749431%, 41.6846492027% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battl";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battl"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  41.6856492027%, 41.8213234624% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battle";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battle"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  41.8223234624%, 41.9579977221% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battles";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battles"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  41.9589977221%, 42.0946719818% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battlesh";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battlesh"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  42.0956719818%, 42.2313462415% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleshi";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleshi"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  42.2323462415%, 42.3680205011% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  42.3690205011%, 47.2427357631% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  47.2437357631%, 47.4249681093% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  47.4259681093%, 47.6072004556% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleshi";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleshi"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  47.6082004556%, 47.7894328018% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battlesh";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battlesh"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  47.7904328018%, 47.9716651481% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battles";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battles"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  47.9726651481%, 48.1538974943% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battle";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battle"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  48.1548974943%, 48.3361298405% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battl";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battl"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  48.3371298405%, 48.5183621868% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of batt";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of batt"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  48.5193621868%, 48.700594533% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of bat";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of bat"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  48.701594533%, 48.8828268793% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of ba";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of ba"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  48.8838268793%, 49.0650592255% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of b";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of b"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  49.0660592255%, 49.2472915718% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  49.2482915718%, 49.429523918% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  49.430523918%, 49.6117562642% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game o";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game o"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  49.6127562642%, 49.7939886105% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  49.7949886105%, 49.9762209567% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  49.9772209567%, 50.158453303% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a gam";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a gam"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  50.159453303%, 50.3406856492% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a ga";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a ga"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  50.3416856492%, 50.5229179954% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a g";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a g"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  50.5239179954%, 50.7051503417% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  50.7061503417%, 50.8873826879% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  50.8883826879%, 51.0696150342% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  51.0706150342%, 51.2518473804% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage:"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  51.2528473804%, 51.4340797267% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  51.4350797267%, 51.6163120729% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stag";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stag"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  51.6173120729%, 51.7985444191% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the sta";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the sta"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  51.7995444191%, 51.9807767654% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the st";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the st"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  51.9817767654%, 52.1630091116% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the s";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the s"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  52.1640091116%, 52.3452414579% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  52.3462414579%, 52.5274738041% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  52.5284738041%, 52.7097061503% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take th";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take th"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  52.7107061503%, 52.8919384966% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take t";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take t"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  52.8929384966%, 53.0741708428% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  53.0751708428%, 53.2564031891% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  53.2574031891%, 53.4386355353% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully tak";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully tak"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  53.4396355353%, 53.6208678815% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully ta";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully ta"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  53.6218678815%, 53.8031002278% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully t";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully t"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  53.8041002278%, 53.985332574% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  53.986332574%, 54.1675649203% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  54.1685649203%, 54.3497972665% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfull";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfull"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  54.3507972665%, 54.5320296128% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightful";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightful"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  54.5330296128%, 54.714261959% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfu";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfu"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  54.715261959%, 54.8964943052% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightf";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightf"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  54.8974943052%, 55.0787266515% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should right";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should right"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  55.0797266515%, 55.2609589977% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should righ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should righ"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  55.2619589977%, 55.443191344% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rig";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rig"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  55.444191344%, 55.6254236902% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should ri";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should ri"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  55.6264236902%, 55.8076560364% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should r";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should r"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  55.8086560364%, 55.9898883827% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  55.9908883827%, 56.1721207289% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  56.1731207289%, 56.3543530752% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who shoul";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who shoul"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  56.3553530752%, 56.5365854214% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who shou";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who shou"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  56.5375854214%, 56.7188177677% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who sho";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who sho"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  56.7198177677%, 56.9010501139% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who sh";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who sh"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  56.9020501139%, 57.0832824601% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who s";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who s"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  57.0842824601%, 57.2655148064% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  57.2665148064%, 57.4477471526% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  57.4487471526%, 57.6299794989% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine wh";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine wh"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  57.6309794989%, 57.8122118451% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine w";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine w"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  57.8132118451%, 57.9944441913% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  57.9954441913%, 58.1766765376% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  58.1776765376%, 58.3589088838% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determin";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determin"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  58.3599088838%, 58.5411412301% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determi";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determi"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  58.5421412301%, 58.7233735763% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determ"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  58.7243735763%, 58.9056059226% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to deter";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to deter"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  58.9066059226%, 59.0878382688% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to dete";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to dete"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  59.0888382688%, 59.270070615% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to det";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to det"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  59.271070615%, 59.4523029613% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to de";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to de"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  59.4533029613%, 59.6345353075% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to d";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to d"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  59.6355353075%, 59.8167676538% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  59.8177676538%, 59.999% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  60%, 60.1812323462% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way t";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way t"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  60.1822323462%, 60.3634646925% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  60.3644646925%, 60.5456970387% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  60.5466970387%, 60.727929385% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one wa";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one wa"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  60.728929385%, 60.9101617312% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one w";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one w"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  60.9111617312%, 61.0923940774% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  61.0933940774%, 61.2746264237% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  61.2756264237%, 61.4568587699% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only on";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only on"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  61.4578587699%, 61.6390911162% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only o";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only o"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  61.6400911162%, 61.8213234624% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  61.8223234624%, 62.0035558087% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  62.0045558087%, 62.1857881549% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is onl";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is onl"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  62.1867881549%, 62.3680205011% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is on";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is on"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  62.3690205011%, 62.5502528474% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is o";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is o"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  62.5512528474%, 62.7324851936% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  62.7334851936%, 62.9147175399% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  62.9157175399%, 63.0969498861% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there i";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there i"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  63.0979498861%, 63.2791822323% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  63.2801822323%, 63.4614145786% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  63.4624145786%, 63.6436469248% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, ther";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, ther"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  63.6446469248%, 63.8258792711% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, the";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, the"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  63.8268792711%, 64.0081116173% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, th";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, th"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  64.0091116173%, 64.1903439636% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, t";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, t"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  64.1913439636%, 64.3725763098% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  64.3735763098%, 64.554808656% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws,";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws,"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  64.555808656%, 64.7370410023% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  64.7380410023%, 64.9192733485% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaw";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaw"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  64.9202733485%, 65.1015056948% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM byla";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM byla"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  65.1025056948%, 65.283738041% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM byl";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM byl"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  65.284738041%, 65.4659703872% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM by";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM by"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  65.4669703872%, 65.6482027335% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM b";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM b"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  65.6492027335%, 65.8304350797% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  65.8314350797%, 66.012667426% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  66.013667426%, 66.1948997722% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSO";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSO"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  66.1958997722%, 66.3771321185% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICS";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICS"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  66.3781321185%, 66.5593644647% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per IC";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per IC"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  66.5603644647%, 66.7415968109% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per I";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per I"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  66.7425968109%, 66.9238291572% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  66.9248291572%, 67.1060615034% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  67.1070615034%, 67.2882938497% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Pe";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Pe"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  67.2892938497%, 67.4705261959% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. P";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. P"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  67.4715261959%, 67.6527585421% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  67.6537585421%, 67.8349908884% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  67.8359908884%, 68.0172232346% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  68.0182232346%, 68.1994555809% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its ow";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its ow"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  68.2004555809%, 68.3816879271% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its o";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its o"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  68.3826879271%, 68.5639202733% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  68.5649202733%, 68.7461526196% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  68.7471526196%, 68.9283849658% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as it";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as it"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  68.9293849658%, 69.1106173121% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as i";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as i"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  69.1116173121%, 69.2928496583% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  69.2938496583%, 69.4750820046% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  69.4760820046%, 69.6573143508% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall a";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  69.6583143508%, 69.839546697% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  69.840546697%, 70.0217790433% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  70.0227790433%, 70.2040113895% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hal";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hal"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  70.2050113895%, 70.3862437358% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the ha";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the ha"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  70.3872437358%, 70.568476082% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the h";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the h"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  70.569476082%, 70.7507084282% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  70.7517084282%, 70.9329407745% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  70.9339407745%, 71.1151731207% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed th";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed th"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  71.1161731207%, 71.297405467% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed t";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed t"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  71.298405467%, 71.4796378132% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  71.4806378132%, 71.6618701595% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  71.6628701595%, 71.8441025057% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claime";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claime"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  71.8451025057%, 72.0263348519% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claim";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claim"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  72.0273348519%, 72.2085671982% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has clai";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has clai"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  72.2095671982%, 72.3907995444% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has cla";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has cla"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  72.3917995444%, 72.5730318907% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has cl";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has cl"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  72.5740318907%, 72.7552642369% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has c";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has c"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  72.7562642369%, 72.9374965831% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  72.9384965831%, 73.1197289294% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  73.1207289294%, 73.3019612756% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra ha";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra ha"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  73.3029612756%, 73.4841936219% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra h";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra h"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  73.4851936219%, 73.6664259681% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  73.6674259681%, 73.8486583144% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  73.8496583144%, 74.0308906606% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestr";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestr"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  74.0318906606%, 74.2131230068% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchest";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchest"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  74.2141230068%, 74.3953553531% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orches";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orches"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  74.3963553531%, 74.5775876993% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orche";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orche"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  74.5785876993%, 74.7598200456% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orch";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orch"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  74.7608200456%, 74.9420523918% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orc";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orc"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  74.9430523918%, 75.124284738% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival or";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival or"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  75.125284738%, 75.3065170843% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival o";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival o"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  75.3075170843%, 75.4887494305% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  75.4897494305%, 75.6709817768% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  75.6719817768%, 75.853214123% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a riva";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a riva"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  75.854214123%, 76.0354464692% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a riv";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a riv"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  76.0364464692%, 76.2176788155% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a ri";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a ri"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  76.2186788155%, 76.3999111617% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a r";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a r"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  76.4009111617%, 76.582143508% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  76.583143508%, 76.7643758542% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  76.7653758542%, 76.9466082005% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  76.9476082005%, 77.1288405467% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas —";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas —"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  77.1298405467%, 77.3110728929% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  77.3120728929%, 77.4933052392% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  77.4943052392%, 77.6755375854% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But ala";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But ala"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  77.6765375854%, 77.8577699317% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But al";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But al"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  77.8587699317%, 78.0400022779% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But a";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  78.0410022779%, 78.2222346241% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  78.2232346241%, 78.4044669704% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  78.4054669704%, 78.5866993166% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. Bu";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. Bu"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  78.5876993166%, 78.7689316629% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. B";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. B"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  78.7699316629%, 78.9511640091% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  78.9521640091%, 79.1333963554% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again.";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again."/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  79.1343963554%, 79.3156287016% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  79.3166287016%, 79.4978610478% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home agai";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home agai"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  79.4988610478%, 79.6800933941% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home aga";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home aga"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  79.6810933941%, 79.8623257403% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home ag";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home ag"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  79.8633257403%, 80.0445580866% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home a";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  80.0455580866%, 80.2267904328% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  80.2277904328%, 80.409022779% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  80.410022779%, 80.5912551253% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a hom";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a hom"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  80.5922551253%, 80.7734874715% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a ho";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a ho"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  80.7744874715%, 80.9557198178% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a h";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a h"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  80.9567198178%, 81.137952164% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  81.138952164%, 81.3201845103% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  81.3211845103%, 81.5024168565% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  81.5034168565%, 81.6846492027% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  81.6856492027%, 81.866881549% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony ha";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony ha"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  81.867881549%, 82.0491138952% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony h";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony h"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  82.0501138952%, 82.2313462415% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  82.2323462415%, 82.4135785877% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  82.4145785877%, 82.5958109339% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphon";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphon"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  82.5968109339%, 82.7780432802% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Sympho";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Sympho"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  82.7790432802%, 82.9602756264% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symph";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symph"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  82.9612756264%, 83.1425079727% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symp";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Symp"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  83.1435079727%, 83.3247403189% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Sym";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Sym"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  83.3257403189%, 83.5069726651% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Sy";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego Sy"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  83.5079726651%, 83.6892050114% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego S";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego S"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  83.6902050114%, 83.8714373576% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  83.8724373576%, 84.0536697039% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Diego"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  84.0546697039%, 84.2359020501% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Dieg";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Dieg"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  84.2369020501%, 84.4181343964% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Die";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Die"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  84.4191343964%, 84.6003667426% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Di";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San Di"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  84.6013667426%, 84.7825990888% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San D";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San D"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  84.7835990888%, 84.9648314351% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  84.9658314351%, 85.1470637813% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the San"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  85.1480637813%, 85.3292961276% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the Sa";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the Sa"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  85.3302961276%, 85.5115284738% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the S";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the S"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  85.5125284738%, 85.69376082% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  85.69476082%, 85.8759931663% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and the";
    content: "​The wait is over! Jacobs Music Center is finally complete, and the"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  85.8769931663%, 86.0582255125% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and th";
    content: "​The wait is over! Jacobs Music Center is finally complete, and th"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  86.0592255125%, 86.2404578588% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and t";
    content: "​The wait is over! Jacobs Music Center is finally complete, and t"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  86.2414578588%, 86.422690205% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and ";
    content: "​The wait is over! Jacobs Music Center is finally complete, and "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  86.423690205%, 86.6049225513% {
    content: "​The wait is over! Jacobs Music Center is finally complete, and";
    content: "​The wait is over! Jacobs Music Center is finally complete, and"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  86.6059225513%, 86.7871548975% {
    content: "​The wait is over! Jacobs Music Center is finally complete, an";
    content: "​The wait is over! Jacobs Music Center is finally complete, an"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  86.7881548975%, 86.9693872437% {
    content: "​The wait is over! Jacobs Music Center is finally complete, a";
    content: "​The wait is over! Jacobs Music Center is finally complete, a"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  86.9703872437%, 87.15161959% {
    content: "​The wait is over! Jacobs Music Center is finally complete, ";
    content: "​The wait is over! Jacobs Music Center is finally complete, "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  87.15261959%, 87.3338519362% {
    content: "​The wait is over! Jacobs Music Center is finally complete,";
    content: "​The wait is over! Jacobs Music Center is finally complete,"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  87.3348519362%, 87.5160842825% {
    content: "​The wait is over! Jacobs Music Center is finally complete";
    content: "​The wait is over! Jacobs Music Center is finally complete"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  87.5170842825%, 87.6983166287% {
    content: "​The wait is over! Jacobs Music Center is finally complet";
    content: "​The wait is over! Jacobs Music Center is finally complet"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  87.6993166287%, 87.8805489749% {
    content: "​The wait is over! Jacobs Music Center is finally comple";
    content: "​The wait is over! Jacobs Music Center is finally comple"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  87.8815489749%, 88.0627813212% {
    content: "​The wait is over! Jacobs Music Center is finally compl";
    content: "​The wait is over! Jacobs Music Center is finally compl"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  88.0637813212%, 88.2450136674% {
    content: "​The wait is over! Jacobs Music Center is finally comp";
    content: "​The wait is over! Jacobs Music Center is finally comp"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  88.2460136674%, 88.4272460137% {
    content: "​The wait is over! Jacobs Music Center is finally com";
    content: "​The wait is over! Jacobs Music Center is finally com"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  88.4282460137%, 88.6094783599% {
    content: "​The wait is over! Jacobs Music Center is finally co";
    content: "​The wait is over! Jacobs Music Center is finally co"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  88.6104783599%, 88.7917107062% {
    content: "​The wait is over! Jacobs Music Center is finally c";
    content: "​The wait is over! Jacobs Music Center is finally c"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  88.7927107062%, 88.9739430524% {
    content: "​The wait is over! Jacobs Music Center is finally ";
    content: "​The wait is over! Jacobs Music Center is finally "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  88.9749430524%, 89.1561753986% {
    content: "​The wait is over! Jacobs Music Center is finally";
    content: "​The wait is over! Jacobs Music Center is finally"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  89.1571753986%, 89.3384077449% {
    content: "​The wait is over! Jacobs Music Center is finall";
    content: "​The wait is over! Jacobs Music Center is finall"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  89.3394077449%, 89.5206400911% {
    content: "​The wait is over! Jacobs Music Center is final";
    content: "​The wait is over! Jacobs Music Center is final"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  89.5216400911%, 89.7028724374% {
    content: "​The wait is over! Jacobs Music Center is fina";
    content: "​The wait is over! Jacobs Music Center is fina"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  89.7038724374%, 89.8851047836% {
    content: "​The wait is over! Jacobs Music Center is fin";
    content: "​The wait is over! Jacobs Music Center is fin"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  89.8861047836%, 90.0673371298% {
    content: "​The wait is over! Jacobs Music Center is fi";
    content: "​The wait is over! Jacobs Music Center is fi"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  90.0683371298%, 90.2495694761% {
    content: "​The wait is over! Jacobs Music Center is f";
    content: "​The wait is over! Jacobs Music Center is f"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  90.2505694761%, 90.4318018223% {
    content: "​The wait is over! Jacobs Music Center is ";
    content: "​The wait is over! Jacobs Music Center is "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  90.4328018223%, 90.6140341686% {
    content: "​The wait is over! Jacobs Music Center is";
    content: "​The wait is over! Jacobs Music Center is"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  90.6150341686%, 90.7962665148% {
    content: "​The wait is over! Jacobs Music Center i";
    content: "​The wait is over! Jacobs Music Center i"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  90.7972665148%, 90.978498861% {
    content: "​The wait is over! Jacobs Music Center ";
    content: "​The wait is over! Jacobs Music Center "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  90.979498861%, 91.1607312073% {
    content: "​The wait is over! Jacobs Music Center";
    content: "​The wait is over! Jacobs Music Center"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  91.1617312073%, 91.3429635535% {
    content: "​The wait is over! Jacobs Music Cente";
    content: "​The wait is over! Jacobs Music Cente"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  91.3439635535%, 91.5251958998% {
    content: "​The wait is over! Jacobs Music Cent";
    content: "​The wait is over! Jacobs Music Cent"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  91.5261958998%, 91.707428246% {
    content: "​The wait is over! Jacobs Music Cen";
    content: "​The wait is over! Jacobs Music Cen"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  91.708428246%, 91.8896605923% {
    content: "​The wait is over! Jacobs Music Ce";
    content: "​The wait is over! Jacobs Music Ce"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  91.8906605923%, 92.0718929385% {
    content: "​The wait is over! Jacobs Music C";
    content: "​The wait is over! Jacobs Music C"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  92.0728929385%, 92.2541252847% {
    content: "​The wait is over! Jacobs Music ";
    content: "​The wait is over! Jacobs Music "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  92.2551252847%, 92.436357631% {
    content: "​The wait is over! Jacobs Music";
    content: "​The wait is over! Jacobs Music"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  92.437357631%, 92.6185899772% {
    content: "​The wait is over! Jacobs Musi";
    content: "​The wait is over! Jacobs Musi"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  92.6195899772%, 92.8008223235% {
    content: "​The wait is over! Jacobs Mus";
    content: "​The wait is over! Jacobs Mus"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  92.8018223235%, 92.9830546697% {
    content: "​The wait is over! Jacobs Mu";
    content: "​The wait is over! Jacobs Mu"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  92.9840546697%, 93.1652870159% {
    content: "​The wait is over! Jacobs M";
    content: "​The wait is over! Jacobs M"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  93.1662870159%, 93.3475193622% {
    content: "​The wait is over! Jacobs ";
    content: "​The wait is over! Jacobs "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  93.3485193622%, 93.5297517084% {
    content: "​The wait is over! Jacobs";
    content: "​The wait is over! Jacobs"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  93.5307517084%, 93.7119840547% {
    content: "​The wait is over! Jacob";
    content: "​The wait is over! Jacob"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  93.7129840547%, 93.8942164009% {
    content: "​The wait is over! Jaco";
    content: "​The wait is over! Jaco"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  93.8952164009%, 94.0764487472% {
    content: "​The wait is over! Jac";
    content: "​The wait is over! Jac"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  94.0774487472%, 94.2586810934% {
    content: "​The wait is over! Ja";
    content: "​The wait is over! Ja"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  94.2596810934%, 94.4409134396% {
    content: "​The wait is over! J";
    content: "​The wait is over! J"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  94.4419134396%, 94.6231457859% {
    content: "​The wait is over! ";
    content: "​The wait is over! "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  94.6241457859%, 94.8053781321% {
    content: "​The wait is over!";
    content: "​The wait is over!"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  94.8063781321%, 94.9876104784% {
    content: "​The wait is over";
    content: "​The wait is over"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  94.9886104784%, 95.1698428246% {
    content: "​The wait is ove";
    content: "​The wait is ove"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  95.1708428246%, 95.3520751708% {
    content: "​The wait is ov";
    content: "​The wait is ov"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  95.3530751708%, 95.5343075171% {
    content: "​The wait is o";
    content: "​The wait is o"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  95.5353075171%, 95.7165398633% {
    content: "​The wait is ";
    content: "​The wait is "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  95.7175398633%, 95.8987722096% {
    content: "​The wait is";
    content: "​The wait is"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  95.8997722096%, 96.0810045558% {
    content: "​The wait i";
    content: "​The wait i"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  96.0820045558%, 96.2632369021% {
    content: "​The wait ";
    content: "​The wait "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  96.2642369021%, 96.4454692483% {
    content: "​The wait";
    content: "​The wait"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  96.4464692483%, 96.6277015945% {
    content: "​The wai";
    content: "​The wai"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  96.6287015945%, 96.8099339408% {
    content: "​The wa";
    content: "​The wa"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  96.8109339408%, 96.992166287% {
    content: "​The w";
    content: "​The w"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  96.993166287%, 97.1743986333% {
    content: "​The ";
    content: "​The "/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  97.1753986333%, 97.3566309795% {
    content: "​The";
    content: "​The"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  97.3576309795%, 97.5388633257% {
    content: "​Th";
    content: "​Th"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  97.5398633257%, 97.721095672% {
    content: "​T";
    content: "​T"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
  97.722095672%, 100% {
    content: "​";
    content: "​"/"The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
    alt: "The wait is over! Jacobs Music Center is finally complete, and the San Diego Symphony has a home again. But alas — a rival orchestra has claimed the hall as its own. Per ICSOM bylaws, there is only one way to determine who should rightfully take the stage: a game of battleship.";
  }
}

@media (max-width: 850px) {
  .intro-text {
    grid-row: inherit;
    top: -30%;
    font-size: 24px;
  }
}
@media (max-width: 850px) and (max-height: 1250px) {
  .intro-text {
    top: -10%;
  }
}
@media (max-width: 850px) and (max-height: 1000px) {
  .intro-text {
    top: 6%;
    font-size: 21px;
  }
}
@media (max-width: 850px) and (max-height: 800px) {
  .control-panel.preferences h3 {
    font-size: 32px;
  }
  .control-panel.preferences select {
    height: 27px;
    font-size: 14px;
  }
  .intro-text {
    top: 11%;
    font-size: 17px;
  }
}
@keyframes background-fade-in {
  0% {
    background-color: transparent;
  }
  100% {
    background-color: rgba(57, 32, 0, 0.8509803922);
  }
}
.broadcast {
  background-color: #7d2523;
  color: #dddddd;
  z-index: 2;
  opacity: 0;
  transition: 2s;
}

.broadcast.active {
  opacity: 1;
}

.broadcast.game-over {
  background-color: #3a57a1;
}

.sound-control {
  position: relative;
}

/*# sourceMappingURL=style.css.map */
