{ "nbformat": 4, "nbformat_minor": 0, "metadata": { "colab": { "name": "2.1 Programming Concepts.ipynb", "provenance": [], "collapsed_sections": [], "toc_visible": true, "include_colab_link": true }, "kernelspec": { "name": "python3", "display_name": "Python 3" } }, "cells": [ { "cell_type": "markdown", "metadata": { "id": "view-in-github", "colab_type": "text" }, "source": [ "\"Open" ] }, { "cell_type": "markdown", "metadata": { "id": "qYCvJRm3yGca", "colab_type": "text" }, "source": [ "# Coding the Illiac: Programming Concepts\n", " In the mid 1950's, Lejaren Hiller and Leonard Issacson composed the *Illiac Suite* (movements I and II) using a \"generate and test\" method. The program chose a note at random and then checked to see if the note passed a set of musical rules. If the note passed, it was added to the melody. If it failed, the program chose another random note and tried again. In this notebook, we'll learn the programming concepts needed to implement a musical \"generate and test.'' Yes, it's a bit of an oversimplification, as you'll see, but we have to start somehwere. Programming topics covered in this notebook are:\n", "* random numbers\n", "* comparison operators\n", "* logical operators\n", "* `if` statement\n", "* `while` loop\n", "\n" ] }, { "cell_type": "markdown", "metadata": { "id": "eDGlV0J5I1YF", "colab_type": "text" }, "source": [ "## Random numbers\n", "You can generate a random number by writing `random.randint(0,127)`. The two values in the parenthesis (in this case `0` and `127`) determine the range, and you can change those values to whatever you'd like.\n", "\n", "\n", "But, and this is super important, in order to use `randint()`, we first have to import the `random` module into our notebook session with the statement `import random`. You only need to do `import random` once per notebook session, and generally we do it, along with any other important, as the first few cells.\n", "\n", "Why? Python (and most programming languages) are organzed into a core language plus a bunch of additional libraries that extend the functionality of the core language. This gives us users a tremendous amount of flexibility when it comes to using the language, as well as the ability to write our own modules, which is one of the most powerful aspects of programming. Check out the documentation for the [`random` module](https://docs.python.org/2/library/random.html) to see what else it can do." ] }, { "cell_type": "code", "metadata": { "id": "ILHQLjYSI93d", "colab_type": "code", "colab": {} }, "source": [ "# import the module\n", "import random" ], "execution_count": 0, "outputs": [] }, { "cell_type": "code", "metadata": { "id": "VEYXVTugM-N7", "colab_type": "code", "outputId": "8a3d2484-2f9b-4dbe-f5dd-1f6fee9fa038", "colab": { "base_uri": "https://localhost:8080/", "height": 34 } }, "source": [ "# a random number between 0 and 127\n", "random.randint(0,127)" ], "execution_count": 0, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "106" ] }, "metadata": { "tags": [] }, "execution_count": 4 } ] }, { "cell_type": "markdown", "metadata": { "id": "7yB8vJFBNLee", "colab_type": "text" }, "source": [ "You can change the range of the random number generator by adjusting the values of `0` (minimum) and `127` (the maximum)." ] }, { "cell_type": "code", "metadata": { "id": "Yq18dlH6NIlP", "colab_type": "code", "outputId": "a4f95827-8a9f-49a1-8a3f-a89c5029e7f4", "colab": { "base_uri": "https://localhost:8080/", "height": 35 } }, "source": [ "# a random number between 13 and 29\n", "random.randint(13,29)" ], "execution_count": 0, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "23" ] }, "metadata": { "tags": [] }, "execution_count": 3 } ] }, { "cell_type": "markdown", "metadata": { "id": "reSv1kWRCe7E", "colab_type": "text" }, "source": [ "## Comparison Operators\n", "A comparison operators tests a relation between two values, returning a boolean of either `True` or `False` according to whether or not the relation holds. Python has a number of comparison operators `<`, `>`, `==`, `>=`, `<=`, and `!=` and you are probably already familiar with from math class. " ] }, { "cell_type": "code", "metadata": { "id": "z1IKilf1C7A6", "colab_type": "code", "outputId": "ed94cf86-c48b-4506-c4c6-3952239a825b", "colab": { "base_uri": "https://localhost:8080/", "height": 35 } }, "source": [ "# equality\n", "1 == 2" ], "execution_count": 0, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "False" ] }, "metadata": { "tags": [] }, "execution_count": 4 } ] }, { "cell_type": "code", "metadata": { "id": "XXjUWtguC9RK", "colab_type": "code", "outputId": "e8c239f7-0113-44a8-d7f4-5ee02209d4dd", "colab": { "base_uri": "https://localhost:8080/", "height": 35 } }, "source": [ "# inequality\n", "1 != 1" ], "execution_count": 0, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "False" ] }, "metadata": { "tags": [] }, "execution_count": 5 } ] }, { "cell_type": "code", "metadata": { "id": "3Y8qehyfC-4a", "colab_type": "code", "outputId": "1764065f-364e-4783-984f-a0f9ebf9033c", "colab": { "base_uri": "https://localhost:8080/", "height": 35 } }, "source": [ "# less than\n", "1 < 2" ], "execution_count": 0, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "True" ] }, "metadata": { "tags": [] }, "execution_count": 6 } ] }, { "cell_type": "code", "metadata": { "id": "y1xGrwZGDDks", "colab_type": "code", "outputId": "26ff4a6e-736d-4725-c026-63dc5e4a6417", "colab": { "base_uri": "https://localhost:8080/", "height": 35 } }, "source": [ "# greater than\n", "1 > 2" ], "execution_count": 0, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "False" ] }, "metadata": { "tags": [] }, "execution_count": 7 } ] }, { "cell_type": "code", "metadata": { "id": "9scqA8TG9pQh", "colab_type": "code", "outputId": "cddb0455-c2fc-4813-a386-c2066589e1a5", "colab": { "base_uri": "https://localhost:8080/", "height": 35 } }, "source": [ "# greather than or equal to\n", "1 >= 1" ], "execution_count": 0, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "True" ] }, "metadata": { "tags": [] }, "execution_count": 8 } ] }, { "cell_type": "code", "metadata": { "id": "PMzTuY9A9pEE", "colab_type": "code", "outputId": "481b6ca1-2320-4490-fa03-3c886008dfa9", "colab": { "base_uri": "https://localhost:8080/", "height": 35 } }, "source": [ "# less than or equal to\n", "2 <= 1" ], "execution_count": 0, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "False" ] }, "metadata": { "tags": [] }, "execution_count": 9 } ] }, { "cell_type": "markdown", "metadata": { "id": "kdhjIJz9mxVA", "colab_type": "text" }, "source": [ "## Logical Operators\n", "Logical operators — such as `and`, `or`, and `not` — combine logical (`True` or `False`) values into complex expressions. In this tutorial, we'll use logical operators to combine multiple comparison operators in order to express sophistaced musical concepts." ] }, { "cell_type": "code", "metadata": { "id": "VUzmPn5rppEl", "colab_type": "code", "outputId": "632f1d89-5a6e-452e-8904-123aff539d57", "colab": { "base_uri": "https://localhost:8080/", "height": 52 } }, "source": [ "# and evaluates to True if both values are True\n", "print(1==1 and 2==2)\n", "print(1==1 and 2!=2)" ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "True\n", "False\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "id": "y9eCElYHqUAc", "colab_type": "code", "outputId": "6be825fc-ae91-43d8-96b3-28fd96021b73", "colab": { "base_uri": "https://localhost:8080/", "height": 52 } }, "source": [ "# or evaluates to True if as long as one value is True\n", "print(1==1 or 2!=2)\n", "print(1!=1 or 2!=2)" ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "True\n", "False\n" ], "name": "stdout" } ] }, { "cell_type": "code", "metadata": { "id": "A6y_fG01qUNG", "colab_type": "code", "outputId": "1e4f0bac-b0d0-4b10-ec65-a418b8c1ddc9", "colab": { "base_uri": "https://localhost:8080/", "height": 35 } }, "source": [ "# not gives the opposite of the logical value\n", "print(not 1==1)" ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "False\n" ], "name": "stdout" } ] }, { "cell_type": "markdown", "metadata": { "id": "v4lkdH94ro16", "colab_type": "text" }, "source": [ "Logical operators are pretty straightforward when combining two values, but they can get pretty confusing when combining more than two values... You just kind of have to stare at it until it clicks." ] }, { "cell_type": "markdown", "metadata": { "id": "ZaePIz6gEWP8", "colab_type": "text" }, "source": [ "##the `if` statement\n", "An `if` statement is used when you want to perform different actions according to whether or not a condition is `True` or `False`." ] }, { "cell_type": "markdown", "metadata": { "id": "XR5-WJL6uj0U", "colab_type": "text" }, "source": [ "Which of these lines will print?" ] }, { "cell_type": "code", "metadata": { "id": "yKjnv9S5Etsm", "colab_type": "code", "outputId": "20e86f62-2088-4441-a96b-ab7a157d9f09", "colab": { "base_uri": "https://localhost:8080/", "height": 35 } }, "source": [ "if 1 < 2:\n", " print(\"one is less than two!\")\n", "\n", "if 1 > 2:\n", " print(\"one is greater than two!\")" ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "one is less than two!\n" ], "name": "stdout" } ] }, { "cell_type": "markdown", "metadata": { "id": "khDpeEO3FJjE", "colab_type": "text" }, "source": [ "Note that the code inside the false `if` statement is skipped. What counts as \"inside\" the `if` statment, anyway? Remember, in Python, whitespace is meaningful. The code \"inside\" the `if` statement is indented by one tab space." ] }, { "cell_type": "markdown", "metadata": { "id": "JIqSCeNoCapY", "colab_type": "text" }, "source": [ "##the `while` loop\n", "A `while` loop is a control structure that repeatedly executes a block of code as long as a given *condition* is `True`. It allows us to perform an action over and over and over again. Once the condition becomes `False`, however, the program moves out of the loop and on to the next lines of code. The block of code inside the loop is delineated by an indentation of one tab space. The basic structure of a `while` loop looks like this:\n", "\n", "```python\n", "while condition:\n", " statement(s)\n", "```\n", "\n" ] }, { "cell_type": "markdown", "metadata": { "id": "TdSHQFhgAOdf", "colab_type": "text" }, "source": [ "In the cell below, the condition is `len(my_music) < 5` and the code block is the following indented lines that print and add an element to `my_music`. In order for the `while` to terminate, we need to grow `my_music` such that the condition eventually beomes `False`. Otherwise we'd never leave...\n" ] }, { "cell_type": "code", "metadata": { "id": "d8pfvrV9CdVS", "colab_type": "code", "outputId": "3edc8231-8063-4ccc-8610-13cc0722cba2", "colab": { "base_uri": "https://localhost:8080/", "height": 138 } }, "source": [ "# start with my_music as an empty list\n", "my_music = []\n", "\n", "# print for sanity check\n", "print(\"we are about to enter a while loop!\")\n", "\n", "# loop until my_music has 5 notes\n", "while len(my_music) < 5:\n", " \n", " # add an element to my_music\n", " my_music += [1]\n", "\n", " # print for sanity check\n", " print(\"we are inside the loop. my_music is:\", my_music)\n", " \n", "# we are no longer inside the loop\n", "print(\"we are no longer inside the loop. moving on with the program...\")" ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "we are about to enter a while loop!\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1, 1]\n", "we are inside the loop. my_music is: [1, 1, 1]\n", "we are inside the loop. my_music is: [1, 1, 1, 1]\n", "we are inside the loop. my_music is: [1, 1, 1, 1, 1]\n", "we are no longer inside the loop. moving on with the program...\n" ], "name": "stdout" } ] }, { "cell_type": "markdown", "metadata": { "id": "xXmGH402ABnp", "colab_type": "text" }, "source": [ "It is easy to enter an infinite loop! This happens when your condition never becomes `False`. Can you see what went wrong? Hint: I only changed one tiny little character from the cell above. You can force exit the loop by clicking the stop button that appears to the left of the cell. Or just move on if you believe me..." ] }, { "cell_type": "code", "metadata": { "id": "rKlTa1b3CcGs", "colab_type": "code", "outputId": "e542b460-fef4-42c9-a7d0-91ddf87e0e2d", "colab": { "base_uri": "https://localhost:8080/", "height": 104907 } }, "source": [ "# start with my_music as an empty list\n", "my_music = []\n", "\n", "# print for sanity check\n", "print(\"we are about to enter a while loop!\")\n", "\n", "# loop until my_music has 5 notes\n", "while len(my_music) < 5:\n", " \n", " # print for sanity check\n", " print(\"we are inside the loop. my_music is:\", my_music)\n", "\n", " # add an element to my_music\n", " my_music = [1]\n", " \n", "# we are no longer inside the loop\n", "print(\"we are no longer inside the loop. moving on with the program...\")" ], "execution_count": 0, "outputs": [ { "output_type": "stream", "text": [ "we are about to enter a while loop!\n", "we are inside the loop. my_music is: []\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is: [1]\n", "we are inside the loop. my_music is:" ], "name": "stdout" }, { "output_type": "error", "ename": "KeyboardInterrupt", "evalue": "ignored", "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m()\u001b[0m\n\u001b[1;32m 8\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 9\u001b[0m \u001b[0;31m# print for sanity check\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 10\u001b[0;31m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"we are inside the loop. my_music is:\"\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmy_music\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 11\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 12\u001b[0m \u001b[0;31m# add an element to my_music\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/usr/local/lib/python3.6/dist-packages/ipykernel/iostream.py\u001b[0m in \u001b[0;36mwrite\u001b[0;34m(self, string)\u001b[0m\n\u001b[1;32m 348\u001b[0m \u001b[0mstring\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mstring\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdecode\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mencoding\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m'replace'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 349\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 350\u001b[0;31m \u001b[0mis_child\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m(\u001b[0m\u001b[0;32mnot\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_is_master_process\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 351\u001b[0m \u001b[0;31m# only touch the buffer in the IO thread to avoid races\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 352\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mpub_thread\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mschedule\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;32mlambda\u001b[0m \u001b[0;34m:\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_buffer\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mwrite\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mstring\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;32m/usr/local/lib/python3.6/dist-packages/ipykernel/iostream.py\u001b[0m in \u001b[0;36m_is_master_process\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 283\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 284\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_is_master_process\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 285\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mos\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mgetpid\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_master_pid\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 286\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 287\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mset_parent\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mparent\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;31mKeyboardInterrupt\u001b[0m: " ] } ] }, { "cell_type": "code", "metadata": { "id": "VIcFmKDsMPyd", "colab_type": "code", "colab": {} }, "source": [ "" ], "execution_count": 0, "outputs": [] } ] }