diff --git a/Links Analysis Cross-Platforms/Top_Shared/Untitled1.ipynb b/Links Analysis Cross-Platforms/Top_Shared/Untitled1.ipynb new file mode 100644 index 00000000..aeccea33 --- /dev/null +++ b/Links Analysis Cross-Platforms/Top_Shared/Untitled1.ipynb @@ -0,0 +1,5865 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "d301d610", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: informationtracer in c:\\users\\leap\\anaconda3\\lib\\site-packages (0.1.3)\n", + "Requirement already satisfied: requests in c:\\users\\leap\\anaconda3\\lib\\site-packages (from informationtracer) (2.27.1)\n", + "Requirement already satisfied: urllib3<1.27,>=1.21.1 in c:\\users\\leap\\anaconda3\\lib\\site-packages (from requests->informationtracer) (1.26.9)\n", + "Requirement already satisfied: idna<4,>=2.5 in c:\\users\\leap\\anaconda3\\lib\\site-packages (from requests->informationtracer) (3.3)\n", + "Requirement already satisfied: certifi>=2017.4.17 in c:\\users\\leap\\anaconda3\\lib\\site-packages (from requests->informationtracer) (2021.10.8)\n", + "Requirement already satisfied: charset-normalizer~=2.0.0 in c:\\users\\leap\\anaconda3\\lib\\site-packages (from requests->informationtracer) (2.0.4)\n" + ] + } + ], + "source": [ + "!pip install informationtracer" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "cb39a9f1", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "ffbf0b45", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv(\"top_shared_yt_5_months.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "1a84c7c4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['shared_url', 'n_shared', 'from_n_users', 'users', 'n_urls', 'platform',\n", + " 'from', 'id/url', 'text', 'n_likes', 'total', 'url_id', 'n_replies',\n", + " 'score', 'retweet_count', 'favorite_count', 'n_views', 'n_dislikes',\n", + " 'n_favorites', 'n_comments', 'title'],\n", + " dtype='object')" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "id": "6e477613", + "metadata": {}, + "outputs": [], + "source": [ + "change = \"../../Change/Filtered Data/\"" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "d85ba7d2", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Volume in drive G is Essentials\n", + " Volume Serial Number is 7063-374D\n", + "\n", + " Directory of G:\\Freelance\\Christina\\Change\\Filtered Data\n", + "\n", + "01/27/2022 02:47 PM .\n", + "01/27/2022 02:47 PM ..\n", + "01/26/2022 02:24 PM .ipynb_checkpoints\n", + "01/07/2022 09:32 PM 70,087,291 4_months_instagram_data.csv\n", + "01/26/2022 10:41 AM 89,708 all_petitions_milestones_dec.csv\n", + "01/26/2022 10:38 AM 2,444,581 df_all_petitions_comments_4.csv\n", + "01/26/2022 10:38 AM 992,657 df_all_petitions_comments_dec.csv\n", + "01/26/2022 10:41 AM 167,119 df_all_petitions_milestones_4.csv\n", + "01/26/2022 10:49 AM 86 df_petition_slug_4.csv\n", + "01/26/2022 10:49 AM 86 df_petition_slug_dec.csv\n", + "01/26/2022 10:44 AM 356,617 df_petitions_AH_4.csv\n", + "01/26/2022 10:44 AM 124,044 df_petitions_AH_dec.csv\n", + "01/27/2022 02:42 PM New folder\n", + "01/26/2022 03:26 PM 323,776 Untitled.ipynb\n", + " 10 File(s) 74,585,965 bytes\n", + " 4 Dir(s) 69,465,780,224 bytes free\n" + ] + } + ], + "source": [ + "ls \"../../Change/Filtered Data/\"" + ] + }, + { + "cell_type": "code", + "execution_count": 92, + "id": "8096da2c", + "metadata": {}, + "outputs": [], + "source": [ + "change_AH_petitions = pd.concat([pd.read_csv(change + \"df_petitions_AH_4.csv\"),\n", + " pd.read_csv(change + \"df_petitions_AH_dec.csv\")])" + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "id": "303117d4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['_index', '_type', '_id', '_score', '_source__total_signature_count',\n", + " '_source__created_locale', '_source__first_name',\n", + " '_source__weekly_signature_count', '_source__recent_activity_date',\n", + " '_source__is_pledge',\n", + " ...\n", + " 'petition__organization__photo_id', 'petition__photo',\n", + " 'petition__restricted_location__city',\n", + " 'petition__restricted_location__country_code',\n", + " 'petition__restricted_location__lat',\n", + " 'petition__restricted_location__lng',\n", + " 'petition__restricted_location__state_code',\n", + " 'petition__restricted_location__google_places_id',\n", + " 'petition__restricted_location__photo_id', 'petition__missingPetition'],\n", + " dtype='object', length=367)" + ] + }, + "execution_count": 93, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "change_AH_petitions.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 95, + "id": "02c76b71", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['shared_url', 'n_shared', 'from_n_users', 'users', 'n_urls', 'platform',\n", + " 'from', 'id/url', 'text', 'n_likes', 'total', 'url_id', 'n_replies',\n", + " 'score', 'retweet_count', 'favorite_count', 'n_views', 'n_dislikes',\n", + " 'n_favorites', 'n_comments', 'title'],\n", + " dtype='object')" + ] + }, + "execution_count": 95, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 99, + "id": "2cb2734e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['_source__slug',\n", + " 'petition__slug',\n", + " 'petition__user__slug',\n", + " 'petition__primary_target__slug',\n", + " 'petition__organization__slug']" + ] + }, + "execution_count": 99, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "[i for i in change_AH_petitions.columns if \"_slug\" in i]" + ] + }, + { + "cell_type": "code", + "execution_count": 121, + "id": "dc92b026", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['_source__targeting_description',\n", + " 'highlight__description',\n", + " 'petition__description',\n", + " 'petition__targeting_description',\n", + " 'petition__victory_description',\n", + " 'petition__user__description',\n", + " 'petition__primary_target__description',\n", + " 'highlight__targeting_description']" + ] + }, + "execution_count": 121, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "[i for i in change_AH_petitions.columns if \"description\" in i.lower()]" + ] + }, + { + "cell_type": "code", + "execution_count": 107, + "id": "c1bab51d", + "metadata": {}, + "outputs": [], + "source": [ + "change_AH_petitions.reset_index(drop=True, inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 108, + "id": "6b89aff4", + "metadata": {}, + "outputs": [], + "source": [ + "change_AH_petitions[\"shared_url\"] = \"https://www.change.org/p/\" + change_AH_petitions.petition__slug" + ] + }, + { + "cell_type": "code", + "execution_count": 110, + "id": "7022a280", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars'" + ] + }, + "execution_count": 110, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "change_AH_petitions.shared_url[0" + ] + }, + { + "cell_type": "code", + "execution_count": 117, + "id": "b19638fb", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
_index_type_id_source__created_locale_source__first_name_source__recent_activity_date_source__targeting_description_source__created_at_source__country_code_source__last_name...petition__user__rolespetition__targetspetition__creator_namepetition__display_titlepetition__petition_titlepetition__petition_statuspetition__primary_target__display_namepetition__primary_target__typepetition__primary_target__slugshared_url
0petitions-enpetitions26062476::Amber Hearden-USKasandra2021-01-14 22:55:30+00:00United States Supreme Court, UK Parliament2020-11-28T03:46:49ZUSWildfong...[][{'id': 49770, 'display_name': 'United States ...Kasandra WildfongUnited States Supreme Court: Put Amber Heard B...United States Supreme Court: Put Amber Heard B...activeUnited States Supreme CourtCustomunited-states-supreme-court-2https://www.change.org/p/united-states-supreme...
1petitions-enpetitions27418140::Amber Hearden-CAlonzo2021-02-17 23:39:26+00:00DC Comics, ABC, CBS, New York Times, Warner Br...2021-02-17T23:39:26ZCAwalter...[][{'id': 49293, 'display_name': 'DC Comics', 'e...lonzo walterDC Comics: Amber Heard is a Victim of Domestic...DC Comics: Amber Heard is a Victim of Domestic...activeDC ComicsCustomdc-comicshttps://www.change.org/p/dc-comics-amber-heard...
2petitions-enpetitions26842623::Amber Heardde-DEPrincess Consuela2021-01-14 12:15:03+00:00Twitter, Amber Heard2021-01-14T12:15:03ZDEBananahammock...[][{'id': 33678, 'display_name': 'Twitter', 'ema...Princess Consuela BananahammockPetition to Hold Amber Heard Accountable! Ambe...Petition to Hold Amber Heard Accountable! Ambe...activeTwitterCustomtwitter-2https://www.change.org/p/petition-to-hold-ambe...
3petitions-enpetitions25829282::Amber Hearden-USMegan2021-03-23 00:30:46+00:00Johnny's fans, The Walt Disney Company, Hollywood2020-11-14T04:38:59ZUSPicton...[][{'id': 11999829, 'display_name': \"Johnny's fa...Megan PictonJohnny's fans: To get Johnny depp’s career backJohnny's fans: To get Johnny depp’s career backactiveJohnny's fansCustomjohnny-s-fanshttps://www.change.org/p/johnny-s-fans-to-get-...
4petitions-enpetitions27318890::Amber Hearden-USJaden2021-02-11 22:41:07+00:00Hollywood, Warner Brothers, Michael Bay, Unive...2021-02-11T22:41:07ZUSTvedt...[][{'id': 63672, 'display_name': 'Hollywood', 'e...Jaden TvedtHollywood: Blacklist Amber Heard from film rolesHollywood: Blacklist Amber Heard from film rolesactiveHollywoodCustomhollywood-2https://www.change.org/p/hollywood-blacklist-a...
5petitions-enpetitions25924579::Amber Hearden-USOnalee2021-03-26 22:35:24+00:00Everyone2020-11-20T01:46:42ZUSWalker...[][{'id': 571119, 'display_name': 'Everyone', 'e...Onalee WalkerEveryone : Replace Amber heard with Jackseptic...Everyone : Replace Amber heard with Jackseptic...activeEveryoneCustomeveryonehttps://www.change.org/p/everyone-replace-ambe...
6petitions-enpetitions27239635::Amber Hearden-USSpencer2021-02-07 05:36:12+00:00DC Entertainment, Warner Brothers, Time Warner...2021-02-07T05:36:12ZFIHansen...[][{'id': 12147154, 'display_name': 'DC Entertai...Spencer HansenDC Entertainment: Keep Amber Heard as Mera. Wo...DC Entertainment: Keep Amber Heard as Mera. Wo...activeDC EntertainmentCustomdc-entertainment-3e287725-7a4e-4538-8e0c-188de...https://www.change.org/p/dc-entertainment-keep...
7petitions-enpetitions27423923::Amber Hearden-USBraxton2021-02-18 05:32:13+00:00Walt Disney, Warner Brothers, Dior, HBO, ABC2021-02-18T05:32:13ZNLS...[][{'id': 886215, 'display_name': 'Walt Disney',...Braxton SWalt Disney: Johnny Depp is a Wife Beater! Amb...Walt Disney: Johnny Depp is a Wife Beater! Amb...activeWalt DisneyCustomwalt-disney-3https://www.change.org/p/walt-disney-johnny-de...
8petitions-enpetitions27423923::Amber Hearden-USBraxton2021-02-18 05:32:13+00:00Walt Disney, Warner Brothers, Dior, HBO, ABC2021-02-18T05:32:13ZNLS...[][{'id': 886215, 'display_name': 'Walt Disney',...Braxton SWalt Disney: Johnny Depp is a Wife Beater! Amb...Walt Disney: Johnny Depp is a Wife Beater! Amb...activeWalt DisneyCustomwalt-disney-3https://www.change.org/p/walt-disney-johnny-de...
9petitions-enpetitions27469459::Amber Heardfr-FRDeonte2021-02-20 20:24:13+00:00United Nations, Joseph R. Biden, Kamala Harris...2021-02-20T20:24:13ZFRfranecki...[][{'id': 16447, 'display_name': 'United Nations...Deonte FRANECKIUnited Nations: Save Amber Heard & Women's Rig...United Nations: Save Amber Heard & Women's Rig...activeUnited NationsCustomunited-nations-102https://www.change.org/p/united-nations-save-a...
10petitions-enpetitions27173218::Amber Hearden-USCrista2021-02-03 08:52:29+00:00Federal Bureau of Investigation, California St...2021-02-03T08:52:29ZUSVan Nostrand...[][{'id': 24575, 'display_name': 'Federal Bureau...Crista Van NostrandFederal Bureau of Investigation: Charge Amber ...Federal Bureau of Investigation: Charge Amber ...activeFederal Bureau of InvestigationCustomfederal-bureau-of-investigation-19https://www.change.org/p/federal-bureau-of-inv...
11petitions-enpetitions27399238::Amber Hearden-USEileen2021-02-16 19:36:47+00:00Walt Disney, Walt Disney Animation Studios, Di...2021-02-16T19:36:47ZUSMahallati...[][{'id': 886215, 'display_name': 'Walt Disney',...Eileen MahallatiWalt Disney: DO NOT HIRE AMBER HEARD FOR TANGL...Walt Disney: DO NOT HIRE AMBER HEARD FOR TANGL...activeWalt DisneyCustomwalt-disney-3https://www.change.org/p/walt-disney-do-not-hi...
12petitions-enpetitions26738181::Amber Hearden-USJonathan2021-01-07 18:38:39+00:00Warner Brothers Studios2021-01-07T18:38:39ZUSBrock...[][{'id': 21187, 'display_name': 'Warner Brother...Jonathan BrockWarner Brothers Studios: BoyCott Warner Studio...Warner Brothers Studios: BoyCott Warner Studio...activeWarner Brothers StudiosCustomwarner-brothers-studios-2https://www.change.org/p/warner-brothers-studi...
13petitions-enpetitions22546601::Amber Hearden-USAmber2021-04-23 03:33:28+00:00Kamala Harris, Marco Rubio, Ron DeSantis, Alce...2020-06-01T21:11:23ZUSZenisek...[][{'id': 828533, 'display_name': 'Kamala Harris...Amber ZenisekDonald J. Trump: Free Rapper:Ynw Melly! He is ...Donald J. Trump: Free Rapper:Ynw Melly! He is ...activeKamala HarrisCustomkamala-harris-attorney-generalhttps://www.change.org/p/donald-j-trump-free-r...
14petitions-enpetitions16710360::Amber Hearden-GBLorraine2021-04-25 08:45:48+00:00Amber Rudd MP2019-07-15T22:53:46ZGBMitchell...[][{'id': 1041288, 'display_name': 'Amber Rudd M...Lorraine MitchellAmber Rudd MP: Victims of stalkers to be infor...Amber Rudd MP: Victims of stalkers to be infor...activeAmber Rudd MPCustomAmber-Rudd-MPhttps://www.change.org/p/amber-rudd-mp-victims...
15petitions-enpetitions28290128::Amber Hearden-USShauna2021-04-14 13:15:45+00:00Round Rock ISD Board Members, Amy Weir, Cory V...2021-04-10T03:46:16ZUSKinn...[][{'id': 12263869, 'display_name': 'Round Rock ...Shauna KinnRound Rock ISD Board Members: Mask Choice for ...Round Rock ISD Board Members: Mask Choice for ...activeRound Rock ISD Board MembersCustomround-rock-isd-board-members-11a8c606-09e1-437...https://www.change.org/p/round-rock-isd-board-...
16petitions-enpetitions26950695::Amber Hearden-USStacey2021-03-07 16:36:09+00:00United States Supreme Court2021-01-20T16:29:30ZUSKincaid...[][{'id': 49770, 'display_name': 'United States ...Stacey KincaidUnited States Supreme Court: Stop Hunting WolvesUnited States Supreme Court: Stop Hunting WolvesactiveUnited States Supreme CourtCustomunited-states-supreme-court-2https://www.change.org/p/united-states-supreme...
17petitions-enpetitions26686297::Amber Hearden-USAmber2021-01-06 23:57:07+00:00Michael F. Bennet, Colorado Governor, Colorado...2021-01-04T22:59:28ZUSGalvan...[][{'id': 759715, 'display_name': 'Michael F. Be...Amber GalvanMichael F. Bennet: Arapahoe County, CO claims ...Michael F. Bennet: Arapahoe County, CO claims ...activeMichael F. BennetPoliticianmichael-bennet-5https://www.change.org/p/michael-f-bennet-arap...
18petitions-enpetitions27509887::Amber Hearden-USAmber Zichao2021-03-30 18:19:47+00:00University of Connecticut2021-02-23T03:32:09ZUSLi...[][{'id': 657753, 'display_name': 'University of...Amber Zichao LiUniversity of Connecticut: Support and ensure ...University of Connecticut: Support and ensure ...victoryUniversity of ConnecticutCustomuniversity-of-connecticuthttps://www.change.org/p/university-of-connect...
19petitions-enpetitions26742263::Amber Heardfr-FRFlorian2021-01-08 00:03:14+00:00Johnny Depp, Marvel, Warner Brothers, SONY, Th...2021-01-08T00:03:14ZUSBalavoine...[][{'id': 591569, 'display_name': 'Johnny Depp',...Florian BalavoineJohnny Depp: We want JOHNNY DEPP back in 2021Johnny Depp: We want JOHNNY DEPP back in 2021activeJohnny DeppCustomjohnny-depphttps://www.change.org/p/johnny-depp-we-want-j...
20petitions-enpetitions26712848::Amber Heardde-DEAnna2021-01-06 13:13:00+00:00Warner Brothers, Walt Disney2021-01-06T13:13:00ZDEMichael...[][{'id': 886222, 'display_name': 'Warner Brothe...Anna MichaelWarner Brothers: Johnny Depp's career mustn't ...Warner Brothers: Johnny Depp's career mustn't ...activeWarner BrothersCustomwarner-brothers-7https://www.change.org/p/warner-brothers-johnn...
21petitions-enpetitions27483526::Amber Hearden-USCarl2021-02-26 00:04:13+00:00Oklahoma legislative branch, Oklahoma judicial...2021-02-21T17:05:23ZUSJameson...[][{'id': 12174022, 'display_name': 'Oklahoma le...Carl JamesonOklahoma legislative branch: Hold elected offi...Oklahoma legislative branch: Hold elected offi...activeOklahoma legislative branchCustomoklahoma-legislative-branchhttps://www.change.org/p/oklahoma-legislative-...
22petitions-enpetitions26640906::Amber Hearden-GBChloe2021-01-02 05:04:54+00:00Warner Brothers2021-01-02T05:04:54ZGBLouise...[][{'id': 886222, 'display_name': 'Warner Brothe...Chloe LouiseWarner Brothers: Boycott Aquaman 2 & fantastic...Warner Brothers: Boycott Aquaman 2 & fantastic...activeWarner BrothersCustomwarner-brothers-7https://www.change.org/p/warner-brothers-boyco...
23petitions-enpetitions27682533::Amber Hearden-USCro2021-03-05 18:45:27+00:00Warner Brothers, Jason Kilar2021-03-05T18:45:27ZUSKmn...[][{'id': 886222, 'display_name': 'Warner Brothe...Cro KmnWarner Brothers: FIRE Toby, Richard, Walter, a...Warner Brothers: FIRE Toby, Richard, Walter, a...activeWarner BrothersCustomwarner-brothers-7https://www.change.org/p/warner-brothers-fire-...
24petitions-enpetitions26693611::Amber Hearden-GBMaisy - Anne2021-01-05 20:50:49+00:00The Walt Disney Company, Warner Brothers, Society2021-01-05T09:54:11ZGBClark...[][{'id': 207498, 'display_name': 'The Walt Disn...Maisy - Anne ClarkWarner Bros Disney The jury : Cheers to bringi...Warner Bros Disney The jury : Cheers to bringi...activeThe Walt Disney CompanyCustomthe-walt-disney-company-2https://www.change.org/p/warner-bros-disney-th...
25petitions-enpetitions27132600::Amber Hearden-USKenneth2021-01-31 23:06:10+00:00California State Senate2021-01-31T23:06:10ZUSYu...[][{'id': 808977, 'display_name': 'California St...Kenneth YuCalifornia State Senate: Men's rights and the ...California State Senate: Men's rights and the ...activeCalifornia State SenateGroupcalifornia-state-senatehttps://www.change.org/p/california-state-sena...
26petitions-enpetitions28461196::Amber Hearden-USLaura2021-04-19 15:41:14+00:00Optomen2021-04-19T15:41:14ZUSAzarowicz...[][{'id': 12281524, 'display_name': 'Optomen ', ...Laura AzarowiczOptomen: Stop Johnny Depp Documentary by ITVOptomen: Stop Johnny Depp Documentary by ITVactiveOptomenCustomoptomenhttps://www.change.org/p/optomen-stop-johnny-d...
27petitions-enpetitions26284669::Amber Heardes-419Sandra2020-12-12 05:40:34+00:00Zack Snyder.2020-12-12T05:40:34ZMXMirelva...[][{'id': 12061133, 'display_name': 'Zack Snyder...Sandra MirelvaZack Snyder.: Amber Heard Out ir Justice LeagueZack Snyder.: Amber Heard Out ir Justice LeagueactiveZack Snyder.Customzack-snyder-0dc1b941-e6ee-48f3-959d-c9ac0df1f3e4https://www.change.org/p/zack-snyder-amber-hea...
28petitions-enpetitions26583137::Amber Hearden-GBRebecca2020-12-30 10:53:13+00:00Amber Heard2020-12-29T20:17:15ZGBShorten...[][{'id': 10149883, 'display_name': 'Amber Heard...Rebecca ShortenAmber Heard: A Public Letter to Amber HeardAmber Heard: A Public Letter to Amber HeardactiveAmber HeardCustomamber-heardhttps://www.change.org/p/amber-heard-a-public-...
29petitions-enpetitions26130632::Amber Hearden-USCarlos2020-12-02 04:47:40+00:00Who ever makes the movie2020-12-02T04:47:40ZUSWholeo...[][{'id': 12030459, 'display_name': 'Who ever ma...Carlos WholeoWho ever makes the movie: Keep Amber Heard as ...Who ever makes the movie: Keep Amber Heard as ...activeWho ever makes the movieCustomwho-ever-makes-the-moviehttps://www.change.org/p/who-ever-makes-the-mo...
30petitions-enpetitions26128212::Amber Heardes-419Yennifer2020-12-02 01:14:07+00:00Amber Heard2020-12-02T01:14:07ZCOHoyos...[][{'id': 10149883, 'display_name': 'Amber Heard...Yennifer HoyosAmber Heard: Queremos salvar la carrera de Joh...Amber Heard: Queremos salvar la carrera de Joh...activeAmber HeardCustomamber-heardhttps://www.change.org/p/amber-heard-queremos-...
31petitions-enpetitions26152026::Amber Hearden-USKaitlyn2020-12-03 14:36:50+00:00Warner Brothers2020-12-03T14:36:50ZUSHaestier...[][{'id': 886222, 'display_name': 'Warner Brothe...Kaitlyn HaestierWarner Brothers: To get Amber Heard fired in A...Warner Brothers: To get Amber Heard fired in A...activeWarner BrothersCustomwarner-brothers-7https://www.change.org/p/warner-brothers-to-ge...
32petitions-enpetitions26296405::Amber Hearden-USErin2020-12-12 22:21:18+00:00Change​.​org, Warner Brothers2020-12-12T22:21:18ZUSKroncke...[][{'id': 564946, 'display_name': 'Change.org', ...Erin Kronckechange​.​org : Petitions to Remove Amber Heard...change​.​org : Petitions to Remove Amber Heard...activeChange.orgCustomchange-org-4https://www.change.org/p/change-org-petitions-...
33petitions-enpetitions26431518::Amber Hearden-USAleksandar2020-12-20 23:59:28+00:00Warner Brothers2020-12-20T23:59:28ZBGVelichkov...[][{'id': 886222, 'display_name': 'Warner Brothe...Aleksandar VelichkovWarner Brothers: Replace Amber Heard in Justic...Warner Brothers: Replace Amber Heard in Justic...activeWarner BrothersCustomwarner-brothers-7https://www.change.org/p/warner-brothers-repla...
34petitions-enpetitions26528188::Amber Hearden-USLilya2020-12-26 19:08:52+00:00United Nations, L'Oréal, Warner Brothers, The ...2020-12-26T19:08:52ZGBC...[][{'id': 16447, 'display_name': 'United Nations...Lilya CUnited Nations: Remove Amber Heard as a spokes...United Nations: Remove Amber Heard as a spokes...activeUnited NationsCustomunited-nations-102https://www.change.org/p/united-nations-remove...
35petitions-enpetitions26356786::Amber Hearden-USParsa2020-12-16 18:58:49+00:00The Walt Disney Company2020-12-16T18:58:49ZIRFarjam...[][{'id': 207498, 'display_name': 'The Walt Disn...Parsa FarjamThe Walt Disney Company: Petition to not watch...The Walt Disney Company: Petition to not watch...activeThe Walt Disney CompanyCustomthe-walt-disney-company-2https://www.change.org/p/the-walt-disney-compa...
36petitions-enpetitions26326810::Amber Hearden-USLuna2020-12-14 19:23:22+00:00Amber Heard., Justice System2020-12-14T19:23:22ZUSPrado...[][{'id': 12051826, 'display_name': 'Amber Heard...Luna PradoAmber Heard.: Have Amber Heard plead Guilty fo...Amber Heard.: Have Amber Heard plead Guilty fo...activeAmber Heard.Customamber-heard-3f4f09b0-b168-4f5c-8faf-8451c0528895https://www.change.org/p/amber-heard-have-ambe...
37petitions-enpetitions26326810::Amber Hearden-USLuna2020-12-14 19:23:22+00:00Amber Heard., Justice System2020-12-14T19:23:22ZUSPrado...[][{'id': 12051826, 'display_name': 'Amber Heard...Luna PradoAmber Heard.: Have Amber Heard plead Guilty fo...Amber Heard.: Have Amber Heard plead Guilty fo...activeAmber Heard.Customamber-heard-3f4f09b0-b168-4f5c-8faf-8451c0528895https://www.change.org/p/amber-heard-have-ambe...
38petitions-enpetitions24907002::Amber Hearden-USAmber2020-12-20 03:57:15+00:00Dorchester County2020-09-25T23:18:28ZUSHotelling...[][{'id': 10904520, 'display_name': 'Dorchester ...Amber HotellingDD2 parents and teacher : Stay the course, sti...DD2 parents and teacher : Stay the course, sti...activeDorchester CountyCustomdorchester-countyhttps://www.change.org/p/dd2-parents-and-teach...
39petitions-enpetitions26487837::Amber Hearden-USSpencer2020-12-24 07:05:38+00:00All Amber heard movies, All movies that remov...2020-12-24T07:05:38ZUSPark...[][{'id': 12067737, 'display_name': 'All Amber h...Spencer ParkAll Amber heard movies: To get Amber heard rem...All Amber heard movies: To get Amber heard rem...activeAll Amber heard moviesCustomall-amber-heard-movieshttps://www.change.org/p/all-amber-heard-movie...
40petitions-enpetitions26339003::Amber Hearden-USIsabella2020-12-15 17:32:35+00:00Johnny Depp, Amber Heard, abuse, Violence2020-12-15T17:32:35ZNORamos Ottersen...[][{'id': 591569, 'display_name': 'Johnny Depp',...Isabella Ramos OttersenJohnny depp: #justiceforjohnnydeppJohnny depp: #justiceforjohnnydeppactiveJohnny DeppCustomjohnny-depphttps://www.change.org/p/johnny-depp-justicefo...
41petitions-enpetitions26329743::Amber Hearden-AUAmber2020-12-15 00:21:00+00:00women, mothers, Younge people2020-12-15T00:02:59ZAUKefford...[][{'id': 598071, 'display_name': 'women', 'emai...Amber KeffordWomen: The age women are allowed paps smears t...Women: The age women are allowed paps smears t...activewomenCustomwomenhttps://www.change.org/p/women-the-age-women-a...
42petitions-enpetitions26318980::Amber Hearden-INRishita2020-12-14 07:28:52+00:00Johnny depp as jack sparrow2020-12-14T07:28:52ZINPratap...[][{'id': 12050817, 'display_name': 'Johnny depp...Justice for johnny deppJohnny depp as jack sparrow: Bring back johnny...Johnny depp as jack sparrow: Bring back johnny...activeJohnny depp as jack sparrowCustomjohnny-depp-as-jack-sparrowhttps://www.change.org/p/johnny-depp-as-jack-s...
43petitions-enpetitions26370742::Amber Hearden-USZoe2020-12-17 16:23:27+00:00Royal Courts of Justice2020-12-17T16:23:27ZUSYoung...[][{'id': 2366596, 'display_name': 'Royal Courts...Zoe YoungRoyal Courts of Justice: Justice for Johnny DeppRoyal Courts of Justice: Justice for Johnny DeppactiveRoyal Courts of JusticeCustomroyal-courts-of-justice-2https://www.change.org/p/royal-courts-of-justi...
44petitions-enpetitions26541613::Amber Hearden-USAlice2020-12-27 13:41:41+00:00Netflix2020-12-27T13:41:41ZUSBeasley...[][{'id': 886206, 'display_name': 'Netflix', 'em...Alice BeasleyNetflix: Bring Johnny Depp Titles back to NetflixNetflix: Bring Johnny Depp Titles back to NetflixactiveNetflixCustomnetflix-11https://www.change.org/p/netflix-bring-johnny-...
45petitions-enpetitions26278314::Amber Hearden-CANoah2020-12-11 19:37:33+00:00Walt Disney, The Walt Disney Company2020-12-11T19:37:33ZCAHutchison...[][{'id': 886215, 'display_name': 'Walt Disney',...Noah HutchisonWalt Disney: Johnny Depp for the next Sith LordWalt Disney: Johnny Depp for the next Sith LordactiveWalt DisneyCustomwalt-disney-3https://www.change.org/p/walt-disney-johnny-de...
\n", + "

46 rows × 41 columns

\n", + "
" + ], + "text/plain": [ + " _index _type _id _source__created_locale \\\n", + "0 petitions-en petitions 26062476::Amber Heard en-US \n", + "1 petitions-en petitions 27418140::Amber Heard en-CA \n", + "2 petitions-en petitions 26842623::Amber Heard de-DE \n", + "3 petitions-en petitions 25829282::Amber Heard en-US \n", + "4 petitions-en petitions 27318890::Amber Heard en-US \n", + "5 petitions-en petitions 25924579::Amber Heard en-US \n", + "6 petitions-en petitions 27239635::Amber Heard en-US \n", + "7 petitions-en petitions 27423923::Amber Heard en-US \n", + "8 petitions-en petitions 27423923::Amber Heard en-US \n", + "9 petitions-en petitions 27469459::Amber Heard fr-FR \n", + "10 petitions-en petitions 27173218::Amber Heard en-US \n", + "11 petitions-en petitions 27399238::Amber Heard en-US \n", + "12 petitions-en petitions 26738181::Amber Heard en-US \n", + "13 petitions-en petitions 22546601::Amber Heard en-US \n", + "14 petitions-en petitions 16710360::Amber Heard en-GB \n", + "15 petitions-en petitions 28290128::Amber Heard en-US \n", + "16 petitions-en petitions 26950695::Amber Heard en-US \n", + "17 petitions-en petitions 26686297::Amber Heard en-US \n", + "18 petitions-en petitions 27509887::Amber Heard en-US \n", + "19 petitions-en petitions 26742263::Amber Heard fr-FR \n", + "20 petitions-en petitions 26712848::Amber Heard de-DE \n", + "21 petitions-en petitions 27483526::Amber Heard en-US \n", + "22 petitions-en petitions 26640906::Amber Heard en-GB \n", + "23 petitions-en petitions 27682533::Amber Heard en-US \n", + "24 petitions-en petitions 26693611::Amber Heard en-GB \n", + "25 petitions-en petitions 27132600::Amber Heard en-US \n", + "26 petitions-en petitions 28461196::Amber Heard en-US \n", + "27 petitions-en petitions 26284669::Amber Heard es-419 \n", + "28 petitions-en petitions 26583137::Amber Heard en-GB \n", + "29 petitions-en petitions 26130632::Amber Heard en-US \n", + "30 petitions-en petitions 26128212::Amber Heard es-419 \n", + "31 petitions-en petitions 26152026::Amber Heard en-US \n", + "32 petitions-en petitions 26296405::Amber Heard en-US \n", + "33 petitions-en petitions 26431518::Amber Heard en-US \n", + "34 petitions-en petitions 26528188::Amber Heard en-US \n", + "35 petitions-en petitions 26356786::Amber Heard en-US \n", + "36 petitions-en petitions 26326810::Amber Heard en-US \n", + "37 petitions-en petitions 26326810::Amber Heard en-US \n", + "38 petitions-en petitions 24907002::Amber Heard en-US \n", + "39 petitions-en petitions 26487837::Amber Heard en-US \n", + "40 petitions-en petitions 26339003::Amber Heard en-US \n", + "41 petitions-en petitions 26329743::Amber Heard en-AU \n", + "42 petitions-en petitions 26318980::Amber Heard en-IN \n", + "43 petitions-en petitions 26370742::Amber Heard en-US \n", + "44 petitions-en petitions 26541613::Amber Heard en-US \n", + "45 petitions-en petitions 26278314::Amber Heard en-CA \n", + "\n", + " _source__first_name _source__recent_activity_date \\\n", + "0 Kasandra 2021-01-14 22:55:30+00:00 \n", + "1 lonzo 2021-02-17 23:39:26+00:00 \n", + "2 Princess Consuela 2021-01-14 12:15:03+00:00 \n", + "3 Megan 2021-03-23 00:30:46+00:00 \n", + "4 Jaden 2021-02-11 22:41:07+00:00 \n", + "5 Onalee 2021-03-26 22:35:24+00:00 \n", + "6 Spencer 2021-02-07 05:36:12+00:00 \n", + "7 Braxton 2021-02-18 05:32:13+00:00 \n", + "8 Braxton 2021-02-18 05:32:13+00:00 \n", + "9 Deonte 2021-02-20 20:24:13+00:00 \n", + "10 Crista 2021-02-03 08:52:29+00:00 \n", + "11 Eileen 2021-02-16 19:36:47+00:00 \n", + "12 Jonathan 2021-01-07 18:38:39+00:00 \n", + "13 Amber 2021-04-23 03:33:28+00:00 \n", + "14 Lorraine 2021-04-25 08:45:48+00:00 \n", + "15 Shauna 2021-04-14 13:15:45+00:00 \n", + "16 Stacey 2021-03-07 16:36:09+00:00 \n", + "17 Amber 2021-01-06 23:57:07+00:00 \n", + "18 Amber Zichao 2021-03-30 18:19:47+00:00 \n", + "19 Florian 2021-01-08 00:03:14+00:00 \n", + "20 Anna 2021-01-06 13:13:00+00:00 \n", + "21 Carl 2021-02-26 00:04:13+00:00 \n", + "22 Chloe 2021-01-02 05:04:54+00:00 \n", + "23 Cro 2021-03-05 18:45:27+00:00 \n", + "24 Maisy - Anne 2021-01-05 20:50:49+00:00 \n", + "25 Kenneth 2021-01-31 23:06:10+00:00 \n", + "26 Laura 2021-04-19 15:41:14+00:00 \n", + "27 Sandra 2020-12-12 05:40:34+00:00 \n", + "28 Rebecca 2020-12-30 10:53:13+00:00 \n", + "29 Carlos 2020-12-02 04:47:40+00:00 \n", + "30 Yennifer 2020-12-02 01:14:07+00:00 \n", + "31 Kaitlyn 2020-12-03 14:36:50+00:00 \n", + "32 Erin 2020-12-12 22:21:18+00:00 \n", + "33 Aleksandar 2020-12-20 23:59:28+00:00 \n", + "34 Lilya 2020-12-26 19:08:52+00:00 \n", + "35 Parsa 2020-12-16 18:58:49+00:00 \n", + "36 Luna 2020-12-14 19:23:22+00:00 \n", + "37 Luna 2020-12-14 19:23:22+00:00 \n", + "38 Amber 2020-12-20 03:57:15+00:00 \n", + "39 Spencer 2020-12-24 07:05:38+00:00 \n", + "40 Isabella 2020-12-15 17:32:35+00:00 \n", + "41 Amber 2020-12-15 00:21:00+00:00 \n", + "42 Rishita 2020-12-14 07:28:52+00:00 \n", + "43 Zoe 2020-12-17 16:23:27+00:00 \n", + "44 Alice 2020-12-27 13:41:41+00:00 \n", + "45 Noah 2020-12-11 19:37:33+00:00 \n", + "\n", + " _source__targeting_description _source__created_at \\\n", + "0 United States Supreme Court, UK Parliament 2020-11-28T03:46:49Z \n", + "1 DC Comics, ABC, CBS, New York Times, Warner Br... 2021-02-17T23:39:26Z \n", + "2 Twitter, Amber Heard 2021-01-14T12:15:03Z \n", + "3 Johnny's fans, The Walt Disney Company, Hollywood 2020-11-14T04:38:59Z \n", + "4 Hollywood, Warner Brothers, Michael Bay, Unive... 2021-02-11T22:41:07Z \n", + "5 Everyone 2020-11-20T01:46:42Z \n", + "6 DC Entertainment, Warner Brothers, Time Warner... 2021-02-07T05:36:12Z \n", + "7 Walt Disney, Warner Brothers, Dior, HBO, ABC 2021-02-18T05:32:13Z \n", + "8 Walt Disney, Warner Brothers, Dior, HBO, ABC 2021-02-18T05:32:13Z \n", + "9 United Nations, Joseph R. Biden, Kamala Harris... 2021-02-20T20:24:13Z \n", + "10 Federal Bureau of Investigation, California St... 2021-02-03T08:52:29Z \n", + "11 Walt Disney, Walt Disney Animation Studios, Di... 2021-02-16T19:36:47Z \n", + "12 Warner Brothers Studios 2021-01-07T18:38:39Z \n", + "13 Kamala Harris, Marco Rubio, Ron DeSantis, Alce... 2020-06-01T21:11:23Z \n", + "14 Amber Rudd MP 2019-07-15T22:53:46Z \n", + "15 Round Rock ISD Board Members, Amy Weir, Cory V... 2021-04-10T03:46:16Z \n", + "16 United States Supreme Court 2021-01-20T16:29:30Z \n", + "17 Michael F. Bennet, Colorado Governor, Colorado... 2021-01-04T22:59:28Z \n", + "18 University of Connecticut 2021-02-23T03:32:09Z \n", + "19 Johnny Depp, Marvel, Warner Brothers, SONY, Th... 2021-01-08T00:03:14Z \n", + "20 Warner Brothers, Walt Disney 2021-01-06T13:13:00Z \n", + "21 Oklahoma legislative branch, Oklahoma judicial... 2021-02-21T17:05:23Z \n", + "22 Warner Brothers 2021-01-02T05:04:54Z \n", + "23 Warner Brothers, Jason Kilar 2021-03-05T18:45:27Z \n", + "24 The Walt Disney Company, Warner Brothers, Society 2021-01-05T09:54:11Z \n", + "25 California State Senate 2021-01-31T23:06:10Z \n", + "26 Optomen 2021-04-19T15:41:14Z \n", + "27 Zack Snyder. 2020-12-12T05:40:34Z \n", + "28 Amber Heard 2020-12-29T20:17:15Z \n", + "29 Who ever makes the movie 2020-12-02T04:47:40Z \n", + "30 Amber Heard 2020-12-02T01:14:07Z \n", + "31 Warner Brothers 2020-12-03T14:36:50Z \n", + "32 Change​.​org, Warner Brothers 2020-12-12T22:21:18Z \n", + "33 Warner Brothers 2020-12-20T23:59:28Z \n", + "34 United Nations, L'Oréal, Warner Brothers, The ... 2020-12-26T19:08:52Z \n", + "35 The Walt Disney Company 2020-12-16T18:58:49Z \n", + "36 Amber Heard., Justice System 2020-12-14T19:23:22Z \n", + "37 Amber Heard., Justice System 2020-12-14T19:23:22Z \n", + "38 Dorchester County 2020-09-25T23:18:28Z \n", + "39 All Amber heard movies, All movies that remov... 2020-12-24T07:05:38Z \n", + "40 Johnny Depp, Amber Heard, abuse, Violence 2020-12-15T17:32:35Z \n", + "41 women, mothers, Younge people 2020-12-15T00:02:59Z \n", + "42 Johnny depp as jack sparrow 2020-12-14T07:28:52Z \n", + "43 Royal Courts of Justice 2020-12-17T16:23:27Z \n", + "44 Netflix 2020-12-27T13:41:41Z \n", + "45 Walt Disney, The Walt Disney Company 2020-12-11T19:37:33Z \n", + "\n", + " _source__country_code _source__last_name ... petition__user__roles \\\n", + "0 US Wildfong ... [] \n", + "1 CA walter ... [] \n", + "2 DE Bananahammock ... [] \n", + "3 US Picton ... [] \n", + "4 US Tvedt ... [] \n", + "5 US Walker ... [] \n", + "6 FI Hansen ... [] \n", + "7 NL S ... [] \n", + "8 NL S ... [] \n", + "9 FR franecki ... [] \n", + "10 US Van Nostrand ... [] \n", + "11 US Mahallati ... [] \n", + "12 US Brock ... [] \n", + "13 US Zenisek ... [] \n", + "14 GB Mitchell ... [] \n", + "15 US Kinn ... [] \n", + "16 US Kincaid ... [] \n", + "17 US Galvan ... [] \n", + "18 US Li ... [] \n", + "19 US Balavoine ... [] \n", + "20 DE Michael ... [] \n", + "21 US Jameson ... [] \n", + "22 GB Louise ... [] \n", + "23 US Kmn ... [] \n", + "24 GB Clark ... [] \n", + "25 US Yu ... [] \n", + "26 US Azarowicz ... [] \n", + "27 MX Mirelva ... [] \n", + "28 GB Shorten ... [] \n", + "29 US Wholeo ... [] \n", + "30 CO Hoyos ... [] \n", + "31 US Haestier ... [] \n", + "32 US Kroncke ... [] \n", + "33 BG Velichkov ... [] \n", + "34 GB C ... [] \n", + "35 IR Farjam ... [] \n", + "36 US Prado ... [] \n", + "37 US Prado ... [] \n", + "38 US Hotelling ... [] \n", + "39 US Park ... [] \n", + "40 NO Ramos Ottersen ... [] \n", + "41 AU Kefford ... [] \n", + "42 IN Pratap ... [] \n", + "43 US Young ... [] \n", + "44 US Beasley ... [] \n", + "45 CA Hutchison ... [] \n", + "\n", + " petition__targets \\\n", + "0 [{'id': 49770, 'display_name': 'United States ... \n", + "1 [{'id': 49293, 'display_name': 'DC Comics', 'e... \n", + "2 [{'id': 33678, 'display_name': 'Twitter', 'ema... \n", + "3 [{'id': 11999829, 'display_name': \"Johnny's fa... \n", + "4 [{'id': 63672, 'display_name': 'Hollywood', 'e... \n", + "5 [{'id': 571119, 'display_name': 'Everyone', 'e... \n", + "6 [{'id': 12147154, 'display_name': 'DC Entertai... \n", + "7 [{'id': 886215, 'display_name': 'Walt Disney',... \n", + "8 [{'id': 886215, 'display_name': 'Walt Disney',... \n", + "9 [{'id': 16447, 'display_name': 'United Nations... \n", + "10 [{'id': 24575, 'display_name': 'Federal Bureau... \n", + "11 [{'id': 886215, 'display_name': 'Walt Disney',... \n", + "12 [{'id': 21187, 'display_name': 'Warner Brother... \n", + "13 [{'id': 828533, 'display_name': 'Kamala Harris... \n", + "14 [{'id': 1041288, 'display_name': 'Amber Rudd M... \n", + "15 [{'id': 12263869, 'display_name': 'Round Rock ... \n", + "16 [{'id': 49770, 'display_name': 'United States ... \n", + "17 [{'id': 759715, 'display_name': 'Michael F. Be... \n", + "18 [{'id': 657753, 'display_name': 'University of... \n", + "19 [{'id': 591569, 'display_name': 'Johnny Depp',... \n", + "20 [{'id': 886222, 'display_name': 'Warner Brothe... \n", + "21 [{'id': 12174022, 'display_name': 'Oklahoma le... \n", + "22 [{'id': 886222, 'display_name': 'Warner Brothe... \n", + "23 [{'id': 886222, 'display_name': 'Warner Brothe... \n", + "24 [{'id': 207498, 'display_name': 'The Walt Disn... \n", + "25 [{'id': 808977, 'display_name': 'California St... \n", + "26 [{'id': 12281524, 'display_name': 'Optomen ', ... \n", + "27 [{'id': 12061133, 'display_name': 'Zack Snyder... \n", + "28 [{'id': 10149883, 'display_name': 'Amber Heard... \n", + "29 [{'id': 12030459, 'display_name': 'Who ever ma... \n", + "30 [{'id': 10149883, 'display_name': 'Amber Heard... \n", + "31 [{'id': 886222, 'display_name': 'Warner Brothe... \n", + "32 [{'id': 564946, 'display_name': 'Change.org', ... \n", + "33 [{'id': 886222, 'display_name': 'Warner Brothe... \n", + "34 [{'id': 16447, 'display_name': 'United Nations... \n", + "35 [{'id': 207498, 'display_name': 'The Walt Disn... \n", + "36 [{'id': 12051826, 'display_name': 'Amber Heard... \n", + "37 [{'id': 12051826, 'display_name': 'Amber Heard... \n", + "38 [{'id': 10904520, 'display_name': 'Dorchester ... \n", + "39 [{'id': 12067737, 'display_name': 'All Amber h... \n", + "40 [{'id': 591569, 'display_name': 'Johnny Depp',... \n", + "41 [{'id': 598071, 'display_name': 'women', 'emai... \n", + "42 [{'id': 12050817, 'display_name': 'Johnny depp... \n", + "43 [{'id': 2366596, 'display_name': 'Royal Courts... \n", + "44 [{'id': 886206, 'display_name': 'Netflix', 'em... \n", + "45 [{'id': 886215, 'display_name': 'Walt Disney',... \n", + "\n", + " petition__creator_name \\\n", + "0 Kasandra Wildfong \n", + "1 lonzo walter \n", + "2 Princess Consuela Bananahammock \n", + "3 Megan Picton \n", + "4 Jaden Tvedt \n", + "5 Onalee Walker \n", + "6 Spencer Hansen \n", + "7 Braxton S \n", + "8 Braxton S \n", + "9 Deonte FRANECKI \n", + "10 Crista Van Nostrand \n", + "11 Eileen Mahallati \n", + "12 Jonathan Brock \n", + "13 Amber Zenisek \n", + "14 Lorraine Mitchell \n", + "15 Shauna Kinn \n", + "16 Stacey Kincaid \n", + "17 Amber Galvan \n", + "18 Amber Zichao Li \n", + "19 Florian Balavoine \n", + "20 Anna Michael \n", + "21 Carl Jameson \n", + "22 Chloe Louise \n", + "23 Cro Kmn \n", + "24 Maisy - Anne Clark \n", + "25 Kenneth Yu \n", + "26 Laura Azarowicz \n", + "27 Sandra Mirelva \n", + "28 Rebecca Shorten \n", + "29 Carlos Wholeo \n", + "30 Yennifer Hoyos \n", + "31 Kaitlyn Haestier \n", + "32 Erin Kroncke \n", + "33 Aleksandar Velichkov \n", + "34 Lilya C \n", + "35 Parsa Farjam \n", + "36 Luna Prado \n", + "37 Luna Prado \n", + "38 Amber Hotelling \n", + "39 Spencer Park \n", + "40 Isabella Ramos Ottersen \n", + "41 Amber Kefford \n", + "42 Justice for johnny depp \n", + "43 Zoe Young \n", + "44 Alice Beasley \n", + "45 Noah Hutchison \n", + "\n", + " petition__display_title \\\n", + "0 United States Supreme Court: Put Amber Heard B... \n", + "1 DC Comics: Amber Heard is a Victim of Domestic... \n", + "2 Petition to Hold Amber Heard Accountable! Ambe... \n", + "3 Johnny's fans: To get Johnny depp’s career back \n", + "4 Hollywood: Blacklist Amber Heard from film roles \n", + "5 Everyone : Replace Amber heard with Jackseptic... \n", + "6 DC Entertainment: Keep Amber Heard as Mera. Wo... \n", + "7 Walt Disney: Johnny Depp is a Wife Beater! Amb... \n", + "8 Walt Disney: Johnny Depp is a Wife Beater! Amb... \n", + "9 United Nations: Save Amber Heard & Women's Rig... \n", + "10 Federal Bureau of Investigation: Charge Amber ... \n", + "11 Walt Disney: DO NOT HIRE AMBER HEARD FOR TANGL... \n", + "12 Warner Brothers Studios: BoyCott Warner Studio... \n", + "13 Donald J. Trump: Free Rapper:Ynw Melly! He is ... \n", + "14 Amber Rudd MP: Victims of stalkers to be infor... \n", + "15 Round Rock ISD Board Members: Mask Choice for ... \n", + "16 United States Supreme Court: Stop Hunting Wolves \n", + "17 Michael F. Bennet: Arapahoe County, CO claims ... \n", + "18 University of Connecticut: Support and ensure ... \n", + "19 Johnny Depp: We want JOHNNY DEPP back in 2021 \n", + "20 Warner Brothers: Johnny Depp's career mustn't ... \n", + "21 Oklahoma legislative branch: Hold elected offi... \n", + "22 Warner Brothers: Boycott Aquaman 2 & fantastic... \n", + "23 Warner Brothers: FIRE Toby, Richard, Walter, a... \n", + "24 Warner Bros Disney The jury : Cheers to bringi... \n", + "25 California State Senate: Men's rights and the ... \n", + "26 Optomen: Stop Johnny Depp Documentary by ITV \n", + "27 Zack Snyder.: Amber Heard Out ir Justice League \n", + "28 Amber Heard: A Public Letter to Amber Heard \n", + "29 Who ever makes the movie: Keep Amber Heard as ... \n", + "30 Amber Heard: Queremos salvar la carrera de Joh... \n", + "31 Warner Brothers: To get Amber Heard fired in A... \n", + "32 change​.​org : Petitions to Remove Amber Heard... \n", + "33 Warner Brothers: Replace Amber Heard in Justic... \n", + "34 United Nations: Remove Amber Heard as a spokes... \n", + "35 The Walt Disney Company: Petition to not watch... \n", + "36 Amber Heard.: Have Amber Heard plead Guilty fo... \n", + "37 Amber Heard.: Have Amber Heard plead Guilty fo... \n", + "38 DD2 parents and teacher : Stay the course, sti... \n", + "39 All Amber heard movies: To get Amber heard rem... \n", + "40 Johnny depp: #justiceforjohnnydepp \n", + "41 Women: The age women are allowed paps smears t... \n", + "42 Johnny depp as jack sparrow: Bring back johnny... \n", + "43 Royal Courts of Justice: Justice for Johnny Depp \n", + "44 Netflix: Bring Johnny Depp Titles back to Netflix \n", + "45 Walt Disney: Johnny Depp for the next Sith Lord \n", + "\n", + " petition__petition_title \\\n", + "0 United States Supreme Court: Put Amber Heard B... \n", + "1 DC Comics: Amber Heard is a Victim of Domestic... \n", + "2 Petition to Hold Amber Heard Accountable! Ambe... \n", + "3 Johnny's fans: To get Johnny depp’s career back \n", + "4 Hollywood: Blacklist Amber Heard from film roles \n", + "5 Everyone : Replace Amber heard with Jackseptic... \n", + "6 DC Entertainment: Keep Amber Heard as Mera. Wo... \n", + "7 Walt Disney: Johnny Depp is a Wife Beater! Amb... \n", + "8 Walt Disney: Johnny Depp is a Wife Beater! Amb... \n", + "9 United Nations: Save Amber Heard & Women's Rig... \n", + "10 Federal Bureau of Investigation: Charge Amber ... \n", + "11 Walt Disney: DO NOT HIRE AMBER HEARD FOR TANGL... \n", + "12 Warner Brothers Studios: BoyCott Warner Studio... \n", + "13 Donald J. Trump: Free Rapper:Ynw Melly! He is ... \n", + "14 Amber Rudd MP: Victims of stalkers to be infor... \n", + "15 Round Rock ISD Board Members: Mask Choice for ... \n", + "16 United States Supreme Court: Stop Hunting Wolves \n", + "17 Michael F. Bennet: Arapahoe County, CO claims ... \n", + "18 University of Connecticut: Support and ensure ... \n", + "19 Johnny Depp: We want JOHNNY DEPP back in 2021 \n", + "20 Warner Brothers: Johnny Depp's career mustn't ... \n", + "21 Oklahoma legislative branch: Hold elected offi... \n", + "22 Warner Brothers: Boycott Aquaman 2 & fantastic... \n", + "23 Warner Brothers: FIRE Toby, Richard, Walter, a... \n", + "24 Warner Bros Disney The jury : Cheers to bringi... \n", + "25 California State Senate: Men's rights and the ... \n", + "26 Optomen: Stop Johnny Depp Documentary by ITV \n", + "27 Zack Snyder.: Amber Heard Out ir Justice League \n", + "28 Amber Heard: A Public Letter to Amber Heard \n", + "29 Who ever makes the movie: Keep Amber Heard as ... \n", + "30 Amber Heard: Queremos salvar la carrera de Joh... \n", + "31 Warner Brothers: To get Amber Heard fired in A... \n", + "32 change​.​org : Petitions to Remove Amber Heard... \n", + "33 Warner Brothers: Replace Amber Heard in Justic... \n", + "34 United Nations: Remove Amber Heard as a spokes... \n", + "35 The Walt Disney Company: Petition to not watch... \n", + "36 Amber Heard.: Have Amber Heard plead Guilty fo... \n", + "37 Amber Heard.: Have Amber Heard plead Guilty fo... \n", + "38 DD2 parents and teacher : Stay the course, sti... \n", + "39 All Amber heard movies: To get Amber heard rem... \n", + "40 Johnny depp: #justiceforjohnnydepp \n", + "41 Women: The age women are allowed paps smears t... \n", + "42 Johnny depp as jack sparrow: Bring back johnny... \n", + "43 Royal Courts of Justice: Justice for Johnny Depp \n", + "44 Netflix: Bring Johnny Depp Titles back to Netflix \n", + "45 Walt Disney: Johnny Depp for the next Sith Lord \n", + "\n", + " petition__petition_status petition__primary_target__display_name \\\n", + "0 active United States Supreme Court \n", + "1 active DC Comics \n", + "2 active Twitter \n", + "3 active Johnny's fans \n", + "4 active Hollywood \n", + "5 active Everyone \n", + "6 active DC Entertainment \n", + "7 active Walt Disney \n", + "8 active Walt Disney \n", + "9 active United Nations \n", + "10 active Federal Bureau of Investigation \n", + "11 active Walt Disney \n", + "12 active Warner Brothers Studios \n", + "13 active Kamala Harris \n", + "14 active Amber Rudd MP \n", + "15 active Round Rock ISD Board Members \n", + "16 active United States Supreme Court \n", + "17 active Michael F. Bennet \n", + "18 victory University of Connecticut \n", + "19 active Johnny Depp \n", + "20 active Warner Brothers \n", + "21 active Oklahoma legislative branch \n", + "22 active Warner Brothers \n", + "23 active Warner Brothers \n", + "24 active The Walt Disney Company \n", + "25 active California State Senate \n", + "26 active Optomen \n", + "27 active Zack Snyder. \n", + "28 active Amber Heard \n", + "29 active Who ever makes the movie \n", + "30 active Amber Heard \n", + "31 active Warner Brothers \n", + "32 active Change.org \n", + "33 active Warner Brothers \n", + "34 active United Nations \n", + "35 active The Walt Disney Company \n", + "36 active Amber Heard. \n", + "37 active Amber Heard. \n", + "38 active Dorchester County \n", + "39 active All Amber heard movies \n", + "40 active Johnny Depp \n", + "41 active women \n", + "42 active Johnny depp as jack sparrow \n", + "43 active Royal Courts of Justice \n", + "44 active Netflix \n", + "45 active Walt Disney \n", + "\n", + " petition__primary_target__type \\\n", + "0 Custom \n", + "1 Custom \n", + "2 Custom \n", + "3 Custom \n", + "4 Custom \n", + "5 Custom \n", + "6 Custom \n", + "7 Custom \n", + "8 Custom \n", + "9 Custom \n", + "10 Custom \n", + "11 Custom \n", + "12 Custom \n", + "13 Custom \n", + "14 Custom \n", + "15 Custom \n", + "16 Custom \n", + "17 Politician \n", + "18 Custom \n", + "19 Custom \n", + "20 Custom \n", + "21 Custom \n", + "22 Custom \n", + "23 Custom \n", + "24 Custom \n", + "25 Group \n", + "26 Custom \n", + "27 Custom \n", + "28 Custom \n", + "29 Custom \n", + "30 Custom \n", + "31 Custom \n", + "32 Custom \n", + "33 Custom \n", + "34 Custom \n", + "35 Custom \n", + "36 Custom \n", + "37 Custom \n", + "38 Custom \n", + "39 Custom \n", + "40 Custom \n", + "41 Custom \n", + "42 Custom \n", + "43 Custom \n", + "44 Custom \n", + "45 Custom \n", + "\n", + " petition__primary_target__slug \\\n", + "0 united-states-supreme-court-2 \n", + "1 dc-comics \n", + "2 twitter-2 \n", + "3 johnny-s-fans \n", + "4 hollywood-2 \n", + "5 everyone \n", + "6 dc-entertainment-3e287725-7a4e-4538-8e0c-188de... \n", + "7 walt-disney-3 \n", + "8 walt-disney-3 \n", + "9 united-nations-102 \n", + "10 federal-bureau-of-investigation-19 \n", + "11 walt-disney-3 \n", + "12 warner-brothers-studios-2 \n", + "13 kamala-harris-attorney-general \n", + "14 Amber-Rudd-MP \n", + "15 round-rock-isd-board-members-11a8c606-09e1-437... \n", + "16 united-states-supreme-court-2 \n", + "17 michael-bennet-5 \n", + "18 university-of-connecticut \n", + "19 johnny-depp \n", + "20 warner-brothers-7 \n", + "21 oklahoma-legislative-branch \n", + "22 warner-brothers-7 \n", + "23 warner-brothers-7 \n", + "24 the-walt-disney-company-2 \n", + "25 california-state-senate \n", + "26 optomen \n", + "27 zack-snyder-0dc1b941-e6ee-48f3-959d-c9ac0df1f3e4 \n", + "28 amber-heard \n", + "29 who-ever-makes-the-movie \n", + "30 amber-heard \n", + "31 warner-brothers-7 \n", + "32 change-org-4 \n", + "33 warner-brothers-7 \n", + "34 united-nations-102 \n", + "35 the-walt-disney-company-2 \n", + "36 amber-heard-3f4f09b0-b168-4f5c-8faf-8451c0528895 \n", + "37 amber-heard-3f4f09b0-b168-4f5c-8faf-8451c0528895 \n", + "38 dorchester-county \n", + "39 all-amber-heard-movies \n", + "40 johnny-depp \n", + "41 women \n", + "42 johnny-depp-as-jack-sparrow \n", + "43 royal-courts-of-justice-2 \n", + "44 netflix-11 \n", + "45 walt-disney-3 \n", + "\n", + " shared_url \n", + "0 https://www.change.org/p/united-states-supreme... \n", + "1 https://www.change.org/p/dc-comics-amber-heard... \n", + "2 https://www.change.org/p/petition-to-hold-ambe... \n", + "3 https://www.change.org/p/johnny-s-fans-to-get-... \n", + "4 https://www.change.org/p/hollywood-blacklist-a... \n", + "5 https://www.change.org/p/everyone-replace-ambe... \n", + "6 https://www.change.org/p/dc-entertainment-keep... \n", + "7 https://www.change.org/p/walt-disney-johnny-de... \n", + "8 https://www.change.org/p/walt-disney-johnny-de... \n", + "9 https://www.change.org/p/united-nations-save-a... \n", + "10 https://www.change.org/p/federal-bureau-of-inv... \n", + "11 https://www.change.org/p/walt-disney-do-not-hi... \n", + "12 https://www.change.org/p/warner-brothers-studi... \n", + "13 https://www.change.org/p/donald-j-trump-free-r... \n", + "14 https://www.change.org/p/amber-rudd-mp-victims... \n", + "15 https://www.change.org/p/round-rock-isd-board-... \n", + "16 https://www.change.org/p/united-states-supreme... \n", + "17 https://www.change.org/p/michael-f-bennet-arap... \n", + "18 https://www.change.org/p/university-of-connect... \n", + "19 https://www.change.org/p/johnny-depp-we-want-j... \n", + "20 https://www.change.org/p/warner-brothers-johnn... \n", + "21 https://www.change.org/p/oklahoma-legislative-... \n", + "22 https://www.change.org/p/warner-brothers-boyco... \n", + "23 https://www.change.org/p/warner-brothers-fire-... \n", + "24 https://www.change.org/p/warner-bros-disney-th... \n", + "25 https://www.change.org/p/california-state-sena... \n", + "26 https://www.change.org/p/optomen-stop-johnny-d... \n", + "27 https://www.change.org/p/zack-snyder-amber-hea... \n", + "28 https://www.change.org/p/amber-heard-a-public-... \n", + "29 https://www.change.org/p/who-ever-makes-the-mo... \n", + "30 https://www.change.org/p/amber-heard-queremos-... \n", + "31 https://www.change.org/p/warner-brothers-to-ge... \n", + "32 https://www.change.org/p/change-org-petitions-... \n", + "33 https://www.change.org/p/warner-brothers-repla... \n", + "34 https://www.change.org/p/united-nations-remove... \n", + "35 https://www.change.org/p/the-walt-disney-compa... \n", + "36 https://www.change.org/p/amber-heard-have-ambe... \n", + "37 https://www.change.org/p/amber-heard-have-ambe... \n", + "38 https://www.change.org/p/dd2-parents-and-teach... \n", + "39 https://www.change.org/p/all-amber-heard-movie... \n", + "40 https://www.change.org/p/johnny-depp-justicefo... \n", + "41 https://www.change.org/p/women-the-age-women-a... \n", + "42 https://www.change.org/p/johnny-depp-as-jack-s... \n", + "43 https://www.change.org/p/royal-courts-of-justi... \n", + "44 https://www.change.org/p/netflix-bring-johnny-... \n", + "45 https://www.change.org/p/walt-disney-johnny-de... \n", + "\n", + "[46 rows x 41 columns]" + ] + }, + "execution_count": 117, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "change_AH_petitions.dropna(axis=1).select_dtypes(\"object\")" + ] + }, + { + "cell_type": "code", + "execution_count": 122, + "id": "87642b81", + "metadata": {}, + "outputs": [], + "source": [ + "change_AH_petitions[\"platform\"] = \"change\"\n", + "change_AH_petitions[\"from\"] = \"AH_petitions\"\n", + "change_AH_petitions.rename(columns={\"petition__creator_name\": \"users\", \"petition__display_title\":\"title\",\n", + " \"petition__description\": \"text\"}, inplace=True)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 124, + "id": "088d6404", + "metadata": {}, + "outputs": [ + { + "ename": "KeyError", + "evalue": "\"['n_shared', 'from_n_users', 'n_urls', 'id/url', 'n_likes', 'total', 'url_id', 'n_replies', 'score', 'retweet_count', 'favorite_count', 'n_views', 'n_dislikes', 'n_favorites', 'n_comments'] not in index\"", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mKeyError\u001b[0m Traceback (most recent call last)", + "Input \u001b[1;32mIn [124]\u001b[0m, in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[1;32m----> 1\u001b[0m \u001b[43mchange_AH_petitions\u001b[49m\u001b[43m[\u001b[49m\u001b[43mdf\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcolumns\u001b[49m\u001b[43m]\u001b[49m\n", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\pandas\\core\\frame.py:3511\u001b[0m, in \u001b[0;36mDataFrame.__getitem__\u001b[1;34m(self, key)\u001b[0m\n\u001b[0;32m 3509\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m is_iterator(key):\n\u001b[0;32m 3510\u001b[0m key \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(key)\n\u001b[1;32m-> 3511\u001b[0m indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mcolumns\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_get_indexer_strict\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43mcolumns\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m)\u001b[49m[\u001b[38;5;241m1\u001b[39m]\n\u001b[0;32m 3513\u001b[0m \u001b[38;5;66;03m# take() does not accept boolean indexers\u001b[39;00m\n\u001b[0;32m 3514\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28mgetattr\u001b[39m(indexer, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mdtype\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;28;01mNone\u001b[39;00m) \u001b[38;5;241m==\u001b[39m \u001b[38;5;28mbool\u001b[39m:\n", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\pandas\\core\\indexes\\base.py:5782\u001b[0m, in \u001b[0;36mIndex._get_indexer_strict\u001b[1;34m(self, key, axis_name)\u001b[0m\n\u001b[0;32m 5779\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m 5780\u001b[0m keyarr, indexer, new_indexer \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_reindex_non_unique(keyarr)\n\u001b[1;32m-> 5782\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_raise_if_missing\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkeyarr\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mindexer\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43maxis_name\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 5784\u001b[0m keyarr \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mtake(indexer)\n\u001b[0;32m 5785\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(key, Index):\n\u001b[0;32m 5786\u001b[0m \u001b[38;5;66;03m# GH 42790 - Preserve name from an Index\u001b[39;00m\n", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\pandas\\core\\indexes\\base.py:5845\u001b[0m, in \u001b[0;36mIndex._raise_if_missing\u001b[1;34m(self, key, indexer, axis_name)\u001b[0m\n\u001b[0;32m 5842\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mNone of [\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mkey\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m] are in the [\u001b[39m\u001b[38;5;132;01m{\u001b[39;00maxis_name\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m]\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n\u001b[0;32m 5844\u001b[0m not_found \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mlist\u001b[39m(ensure_index(key)[missing_mask\u001b[38;5;241m.\u001b[39mnonzero()[\u001b[38;5;241m0\u001b[39m]]\u001b[38;5;241m.\u001b[39munique())\n\u001b[1;32m-> 5845\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mKeyError\u001b[39;00m(\u001b[38;5;124mf\u001b[39m\u001b[38;5;124m\"\u001b[39m\u001b[38;5;132;01m{\u001b[39;00mnot_found\u001b[38;5;132;01m}\u001b[39;00m\u001b[38;5;124m not in index\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n", + "\u001b[1;31mKeyError\u001b[0m: \"['n_shared', 'from_n_users', 'n_urls', 'id/url', 'n_likes', 'total', 'url_id', 'n_replies', 'score', 'retweet_count', 'favorite_count', 'n_views', 'n_dislikes', 'n_favorites', 'n_comments'] not in index\"" + ] + } + ], + "source": [ + "change_AH_petitions[df.columns]" + ] + }, + { + "cell_type": "code", + "execution_count": 125, + "id": "8748a14d", + "metadata": {}, + "outputs": [], + "source": [ + "change_AH_petitions[\"n_shared\"] = 0\n", + "change_AH_petitions[\"from_n_users\"] = 0\n", + "change_AH_petitions[\"n_urls\"] = 0\n", + "change_AH_petitions['id/url'] = \"https://www.change.org/p/\" + change_AH_petitions.petition__primary_target__slug" + ] + }, + { + "cell_type": "code", + "execution_count": 127, + "id": "394bb960", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
_score_source__relevant_location_source__movement_idspetition__idpetition__document_idpetition__deleted_atpetition__goalpetition__relevant_location__latpetition__relevant_location__lngpetition__relevant_location__photo_id...petition__organization__photo_idpetition__photopetition__restricted_location__citypetition__restricted_location__country_codepetition__restricted_location__latpetition__restricted_location__lngpetition__restricted_location__state_codepetition__restricted_location__google_places_idpetition__restricted_location__photo_idpetition__missingPetition
06.871536NaNNaN26062476.026062476.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
14.830578NaNNaN27418140.027418140.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
24.690952NaNNaN26842623.026842623.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
34.489668NaNNaN25829282.025829282.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
44.403112NaNNaN27318890.027318890.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
54.371252NaNNaN25924579.025924579.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
64.298368NaNNaN27239635.027239635.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
74.229726NaNNaN27423923.027423923.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
84.229726NaNNaN27423923.027423923.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
93.521588NaNNaN27469459.027469459.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
103.366223NaNNaN27173218.027173218.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
113.212051NaNNaN27399238.027399238.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
122.995342NaNNaN26738181.026738181.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
132.963478NaNNaN22546601.022546601.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
142.805274NaNNaN16710360.016710360.0NaNNaN55.3781-3.43597NaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
152.801931NaNNaN28290128.028290128.0NaNNaN30.5576-97.74850NaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
162.501768NaNNaN26950695.026950695.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
172.289612NaNNaN26686297.026686297.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
182.228191NaNNaN27509887.027509887.0NaNNaN41.7885-72.22930NaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
192.153162NaNNaN26742263.026742263.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
202.104354NaNNaN26712848.026712848.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
211.839986NaNNaN27483526.027483526.0NaNNaN34.9334-95.76970NaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
221.665596NaNNaN26640906.026640906.0NaNNaN55.3781-3.43597NaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
231.249513NaNNaN27682533.027682533.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
241.128124NaNNaN26693611.026693611.0NaNNaN55.3781-3.43597NaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
250.780564NaNNaN27132600.027132600.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
260.756333NaNNaN28461196.028461196.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
275.816754NaNNaN26284669.026284669.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
285.527645NaNNaN26583137.026583137.0NaNNaN55.3781-3.43597NaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
294.861100NaNNaN26130632.026130632.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
304.840632NaNNaN26128212.026128212.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
313.868375NaNNaN26152026.026152026.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
323.779577NaNNaN26296405.026296405.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
333.661229NaNNaN26431518.026431518.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
343.595950NaNNaN26528188.026528188.0NaNNaN55.3781-3.43597NaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
353.053718NaNNaN26356786.026356786.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
363.011303NaNNaN26326810.026326810.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
372.995642NaNNaN26326810.026326810.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
382.962225NaNNaN24907002.024907002.0NaNNaN33.0185-80.17570NaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
392.645293NaNNaN26487837.026487837.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
402.376055NaNNaN26339003.026339003.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
411.309114NaNNaN26329743.026329743.0NaNNaN-29.5328145.49100NaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
421.159562NaNNaN26318980.026318980.0NaNNaN20.593778.96290NaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
431.009221NaNNaN26370742.026370742.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
440.801632NaNNaN26541613.026541613.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
450.757293NaNNaN26278314.026278314.0NaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
\n", + "

46 rows × 210 columns

\n", + "
" + ], + "text/plain": [ + " _score _source__relevant_location _source__movement_ids petition__id \\\n", + "0 6.871536 NaN NaN 26062476.0 \n", + "1 4.830578 NaN NaN 27418140.0 \n", + "2 4.690952 NaN NaN 26842623.0 \n", + "3 4.489668 NaN NaN 25829282.0 \n", + "4 4.403112 NaN NaN 27318890.0 \n", + "5 4.371252 NaN NaN 25924579.0 \n", + "6 4.298368 NaN NaN 27239635.0 \n", + "7 4.229726 NaN NaN 27423923.0 \n", + "8 4.229726 NaN NaN 27423923.0 \n", + "9 3.521588 NaN NaN 27469459.0 \n", + "10 3.366223 NaN NaN 27173218.0 \n", + "11 3.212051 NaN NaN 27399238.0 \n", + "12 2.995342 NaN NaN 26738181.0 \n", + "13 2.963478 NaN NaN 22546601.0 \n", + "14 2.805274 NaN NaN 16710360.0 \n", + "15 2.801931 NaN NaN 28290128.0 \n", + "16 2.501768 NaN NaN 26950695.0 \n", + "17 2.289612 NaN NaN 26686297.0 \n", + "18 2.228191 NaN NaN 27509887.0 \n", + "19 2.153162 NaN NaN 26742263.0 \n", + "20 2.104354 NaN NaN 26712848.0 \n", + "21 1.839986 NaN NaN 27483526.0 \n", + "22 1.665596 NaN NaN 26640906.0 \n", + "23 1.249513 NaN NaN 27682533.0 \n", + "24 1.128124 NaN NaN 26693611.0 \n", + "25 0.780564 NaN NaN 27132600.0 \n", + "26 0.756333 NaN NaN 28461196.0 \n", + "27 5.816754 NaN NaN 26284669.0 \n", + "28 5.527645 NaN NaN 26583137.0 \n", + "29 4.861100 NaN NaN 26130632.0 \n", + "30 4.840632 NaN NaN 26128212.0 \n", + "31 3.868375 NaN NaN 26152026.0 \n", + "32 3.779577 NaN NaN 26296405.0 \n", + "33 3.661229 NaN NaN 26431518.0 \n", + "34 3.595950 NaN NaN 26528188.0 \n", + "35 3.053718 NaN NaN 26356786.0 \n", + "36 3.011303 NaN NaN 26326810.0 \n", + "37 2.995642 NaN NaN 26326810.0 \n", + "38 2.962225 NaN NaN 24907002.0 \n", + "39 2.645293 NaN NaN 26487837.0 \n", + "40 2.376055 NaN NaN 26339003.0 \n", + "41 1.309114 NaN NaN 26329743.0 \n", + "42 1.159562 NaN NaN 26318980.0 \n", + "43 1.009221 NaN NaN 26370742.0 \n", + "44 0.801632 NaN NaN 26541613.0 \n", + "45 0.757293 NaN NaN 26278314.0 \n", + "\n", + " petition__document_id petition__deleted_at petition__goal \\\n", + "0 26062476.0 NaN NaN \n", + "1 27418140.0 NaN NaN \n", + "2 26842623.0 NaN NaN \n", + "3 25829282.0 NaN NaN \n", + "4 27318890.0 NaN NaN \n", + "5 25924579.0 NaN NaN \n", + "6 27239635.0 NaN NaN \n", + "7 27423923.0 NaN NaN \n", + "8 27423923.0 NaN NaN \n", + "9 27469459.0 NaN NaN \n", + "10 27173218.0 NaN NaN \n", + "11 27399238.0 NaN NaN \n", + "12 26738181.0 NaN NaN \n", + "13 22546601.0 NaN NaN \n", + "14 16710360.0 NaN NaN \n", + "15 28290128.0 NaN NaN \n", + "16 26950695.0 NaN NaN \n", + "17 26686297.0 NaN NaN \n", + "18 27509887.0 NaN NaN \n", + "19 26742263.0 NaN NaN \n", + "20 26712848.0 NaN NaN \n", + "21 27483526.0 NaN NaN \n", + "22 26640906.0 NaN NaN \n", + "23 27682533.0 NaN NaN \n", + "24 26693611.0 NaN NaN \n", + "25 27132600.0 NaN NaN \n", + "26 28461196.0 NaN NaN \n", + "27 26284669.0 NaN NaN \n", + "28 26583137.0 NaN NaN \n", + "29 26130632.0 NaN NaN \n", + "30 26128212.0 NaN NaN \n", + "31 26152026.0 NaN NaN \n", + "32 26296405.0 NaN NaN \n", + "33 26431518.0 NaN NaN \n", + "34 26528188.0 NaN NaN \n", + "35 26356786.0 NaN NaN \n", + "36 26326810.0 NaN NaN \n", + "37 26326810.0 NaN NaN \n", + "38 24907002.0 NaN NaN \n", + "39 26487837.0 NaN NaN \n", + "40 26339003.0 NaN NaN \n", + "41 26329743.0 NaN NaN \n", + "42 26318980.0 NaN NaN \n", + "43 26370742.0 NaN NaN \n", + "44 26541613.0 NaN NaN \n", + "45 26278314.0 NaN NaN \n", + "\n", + " petition__relevant_location__lat petition__relevant_location__lng \\\n", + "0 NaN NaN \n", + "1 NaN NaN \n", + "2 NaN NaN \n", + "3 NaN NaN \n", + "4 NaN NaN \n", + "5 NaN NaN \n", + "6 NaN NaN \n", + "7 NaN NaN \n", + "8 NaN NaN \n", + "9 NaN NaN \n", + "10 NaN NaN \n", + "11 NaN NaN \n", + "12 NaN NaN \n", + "13 NaN NaN \n", + "14 55.3781 -3.43597 \n", + "15 30.5576 -97.74850 \n", + "16 NaN NaN \n", + "17 NaN NaN \n", + "18 41.7885 -72.22930 \n", + "19 NaN NaN \n", + "20 NaN NaN \n", + "21 34.9334 -95.76970 \n", + "22 55.3781 -3.43597 \n", + "23 NaN NaN \n", + "24 55.3781 -3.43597 \n", + "25 NaN NaN \n", + "26 NaN NaN \n", + "27 NaN NaN \n", + "28 55.3781 -3.43597 \n", + "29 NaN NaN \n", + "30 NaN NaN \n", + "31 NaN NaN \n", + "32 NaN NaN \n", + "33 NaN NaN \n", + "34 55.3781 -3.43597 \n", + "35 NaN NaN \n", + "36 NaN NaN \n", + "37 NaN NaN \n", + "38 33.0185 -80.17570 \n", + "39 NaN NaN \n", + "40 NaN NaN \n", + "41 -29.5328 145.49100 \n", + "42 20.5937 78.96290 \n", + "43 NaN NaN \n", + "44 NaN NaN \n", + "45 NaN NaN \n", + "\n", + " petition__relevant_location__photo_id ... \\\n", + "0 NaN ... \n", + "1 NaN ... \n", + "2 NaN ... \n", + "3 NaN ... \n", + "4 NaN ... \n", + "5 NaN ... \n", + "6 NaN ... \n", + "7 NaN ... \n", + "8 NaN ... \n", + "9 NaN ... \n", + "10 NaN ... \n", + "11 NaN ... \n", + "12 NaN ... \n", + "13 NaN ... \n", + "14 NaN ... \n", + "15 NaN ... \n", + "16 NaN ... \n", + "17 NaN ... \n", + "18 NaN ... \n", + "19 NaN ... \n", + "20 NaN ... \n", + "21 NaN ... \n", + "22 NaN ... \n", + "23 NaN ... \n", + "24 NaN ... \n", + "25 NaN ... \n", + "26 NaN ... \n", + "27 NaN ... \n", + "28 NaN ... \n", + "29 NaN ... \n", + "30 NaN ... \n", + "31 NaN ... \n", + "32 NaN ... \n", + "33 NaN ... \n", + "34 NaN ... \n", + "35 NaN ... \n", + "36 NaN ... \n", + "37 NaN ... \n", + "38 NaN ... \n", + "39 NaN ... \n", + "40 NaN ... \n", + "41 NaN ... \n", + "42 NaN ... \n", + "43 NaN ... \n", + "44 NaN ... \n", + "45 NaN ... \n", + "\n", + " petition__organization__photo_id petition__photo \\\n", + "0 NaN NaN \n", + "1 NaN NaN \n", + "2 NaN NaN \n", + "3 NaN NaN \n", + "4 NaN NaN \n", + "5 NaN NaN \n", + "6 NaN NaN \n", + "7 NaN NaN \n", + "8 NaN NaN \n", + "9 NaN NaN \n", + "10 NaN NaN \n", + "11 NaN NaN \n", + "12 NaN NaN \n", + "13 NaN NaN \n", + "14 NaN NaN \n", + "15 NaN NaN \n", + "16 NaN NaN \n", + "17 NaN NaN \n", + "18 NaN NaN \n", + "19 NaN NaN \n", + "20 NaN NaN \n", + "21 NaN NaN \n", + "22 NaN NaN \n", + "23 NaN NaN \n", + "24 NaN NaN \n", + "25 NaN NaN \n", + "26 NaN NaN \n", + "27 NaN NaN \n", + "28 NaN NaN \n", + "29 NaN NaN \n", + "30 NaN NaN \n", + "31 NaN NaN \n", + "32 NaN NaN \n", + "33 NaN NaN \n", + "34 NaN NaN \n", + "35 NaN NaN \n", + "36 NaN NaN \n", + "37 NaN NaN \n", + "38 NaN NaN \n", + "39 NaN NaN \n", + "40 NaN NaN \n", + "41 NaN NaN \n", + "42 NaN NaN \n", + "43 NaN NaN \n", + "44 NaN NaN \n", + "45 NaN NaN \n", + "\n", + " petition__restricted_location__city \\\n", + "0 NaN \n", + "1 NaN \n", + "2 NaN \n", + "3 NaN \n", + "4 NaN \n", + "5 NaN \n", + "6 NaN \n", + "7 NaN \n", + "8 NaN \n", + "9 NaN \n", + "10 NaN \n", + "11 NaN \n", + "12 NaN \n", + "13 NaN \n", + "14 NaN \n", + "15 NaN \n", + "16 NaN \n", + "17 NaN \n", + "18 NaN \n", + "19 NaN \n", + "20 NaN \n", + "21 NaN \n", + "22 NaN \n", + "23 NaN \n", + "24 NaN \n", + "25 NaN \n", + "26 NaN \n", + "27 NaN \n", + "28 NaN \n", + "29 NaN \n", + "30 NaN \n", + "31 NaN \n", + "32 NaN \n", + "33 NaN \n", + "34 NaN \n", + "35 NaN \n", + "36 NaN \n", + "37 NaN \n", + "38 NaN \n", + "39 NaN \n", + "40 NaN \n", + "41 NaN \n", + "42 NaN \n", + "43 NaN \n", + "44 NaN \n", + "45 NaN \n", + "\n", + " petition__restricted_location__country_code \\\n", + "0 NaN \n", + "1 NaN \n", + "2 NaN \n", + "3 NaN \n", + "4 NaN \n", + "5 NaN \n", + "6 NaN \n", + "7 NaN \n", + "8 NaN \n", + "9 NaN \n", + "10 NaN \n", + "11 NaN \n", + "12 NaN \n", + "13 NaN \n", + "14 NaN \n", + "15 NaN \n", + "16 NaN \n", + "17 NaN \n", + "18 NaN \n", + "19 NaN \n", + "20 NaN \n", + "21 NaN \n", + "22 NaN \n", + "23 NaN \n", + "24 NaN \n", + "25 NaN \n", + "26 NaN \n", + "27 NaN \n", + "28 NaN \n", + "29 NaN \n", + "30 NaN \n", + "31 NaN \n", + "32 NaN \n", + "33 NaN \n", + "34 NaN \n", + "35 NaN \n", + "36 NaN \n", + "37 NaN \n", + "38 NaN \n", + "39 NaN \n", + "40 NaN \n", + "41 NaN \n", + "42 NaN \n", + "43 NaN \n", + "44 NaN \n", + "45 NaN \n", + "\n", + " petition__restricted_location__lat petition__restricted_location__lng \\\n", + "0 NaN NaN \n", + "1 NaN NaN \n", + "2 NaN NaN \n", + "3 NaN NaN \n", + "4 NaN NaN \n", + "5 NaN NaN \n", + "6 NaN NaN \n", + "7 NaN NaN \n", + "8 NaN NaN \n", + "9 NaN NaN \n", + "10 NaN NaN \n", + "11 NaN NaN \n", + "12 NaN NaN \n", + "13 NaN NaN \n", + "14 NaN NaN \n", + "15 NaN NaN \n", + "16 NaN NaN \n", + "17 NaN NaN \n", + "18 NaN NaN \n", + "19 NaN NaN \n", + "20 NaN NaN \n", + "21 NaN NaN \n", + "22 NaN NaN \n", + "23 NaN NaN \n", + "24 NaN NaN \n", + "25 NaN NaN \n", + "26 NaN NaN \n", + "27 NaN NaN \n", + "28 NaN NaN \n", + "29 NaN NaN \n", + "30 NaN NaN \n", + "31 NaN NaN \n", + "32 NaN NaN \n", + "33 NaN NaN \n", + "34 NaN NaN \n", + "35 NaN NaN \n", + "36 NaN NaN \n", + "37 NaN NaN \n", + "38 NaN NaN \n", + "39 NaN NaN \n", + "40 NaN NaN \n", + "41 NaN NaN \n", + "42 NaN NaN \n", + "43 NaN NaN \n", + "44 NaN NaN \n", + "45 NaN NaN \n", + "\n", + " petition__restricted_location__state_code \\\n", + "0 NaN \n", + "1 NaN \n", + "2 NaN \n", + "3 NaN \n", + "4 NaN \n", + "5 NaN \n", + "6 NaN \n", + "7 NaN \n", + "8 NaN \n", + "9 NaN \n", + "10 NaN \n", + "11 NaN \n", + "12 NaN \n", + "13 NaN \n", + "14 NaN \n", + "15 NaN \n", + "16 NaN \n", + "17 NaN \n", + "18 NaN \n", + "19 NaN \n", + "20 NaN \n", + "21 NaN \n", + "22 NaN \n", + "23 NaN \n", + "24 NaN \n", + "25 NaN \n", + "26 NaN \n", + "27 NaN \n", + "28 NaN \n", + "29 NaN \n", + "30 NaN \n", + "31 NaN \n", + "32 NaN \n", + "33 NaN \n", + "34 NaN \n", + "35 NaN \n", + "36 NaN \n", + "37 NaN \n", + "38 NaN \n", + "39 NaN \n", + "40 NaN \n", + "41 NaN \n", + "42 NaN \n", + "43 NaN \n", + "44 NaN \n", + "45 NaN \n", + "\n", + " petition__restricted_location__google_places_id \\\n", + "0 NaN \n", + "1 NaN \n", + "2 NaN \n", + "3 NaN \n", + "4 NaN \n", + "5 NaN \n", + "6 NaN \n", + "7 NaN \n", + "8 NaN \n", + "9 NaN \n", + "10 NaN \n", + "11 NaN \n", + "12 NaN \n", + "13 NaN \n", + "14 NaN \n", + "15 NaN \n", + "16 NaN \n", + "17 NaN \n", + "18 NaN \n", + "19 NaN \n", + "20 NaN \n", + "21 NaN \n", + "22 NaN \n", + "23 NaN \n", + "24 NaN \n", + "25 NaN \n", + "26 NaN \n", + "27 NaN \n", + "28 NaN \n", + "29 NaN \n", + "30 NaN \n", + "31 NaN \n", + "32 NaN \n", + "33 NaN \n", + "34 NaN \n", + "35 NaN \n", + "36 NaN \n", + "37 NaN \n", + "38 NaN \n", + "39 NaN \n", + "40 NaN \n", + "41 NaN \n", + "42 NaN \n", + "43 NaN \n", + "44 NaN \n", + "45 NaN \n", + "\n", + " petition__restricted_location__photo_id petition__missingPetition \n", + "0 NaN NaN \n", + "1 NaN NaN \n", + "2 NaN NaN \n", + "3 NaN NaN \n", + "4 NaN NaN \n", + "5 NaN NaN \n", + "6 NaN NaN \n", + "7 NaN NaN \n", + "8 NaN NaN \n", + "9 NaN NaN \n", + "10 NaN NaN \n", + "11 NaN NaN \n", + "12 NaN NaN \n", + "13 NaN NaN \n", + "14 NaN NaN \n", + "15 NaN NaN \n", + "16 NaN NaN \n", + "17 NaN NaN \n", + "18 NaN NaN \n", + "19 NaN NaN \n", + "20 NaN NaN \n", + "21 NaN NaN \n", + "22 NaN NaN \n", + "23 NaN NaN \n", + "24 NaN NaN \n", + "25 NaN NaN \n", + "26 NaN NaN \n", + "27 NaN NaN \n", + "28 NaN NaN \n", + "29 NaN NaN \n", + "30 NaN NaN \n", + "31 NaN NaN \n", + "32 NaN NaN \n", + "33 NaN NaN \n", + "34 NaN NaN \n", + "35 NaN NaN \n", + "36 NaN NaN \n", + "37 NaN NaN \n", + "38 NaN NaN \n", + "39 NaN NaN \n", + "40 NaN NaN \n", + "41 NaN NaN \n", + "42 NaN NaN \n", + "43 NaN NaN \n", + "44 NaN NaN \n", + "45 NaN NaN \n", + "\n", + "[46 rows x 210 columns]" + ] + }, + "execution_count": 127, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "change_AH_petitions.select_dtypes(\"float\")" + ] + }, + { + "cell_type": "code", + "execution_count": 128, + "id": "c7cdce04", + "metadata": {}, + "outputs": [], + "source": [ + "change_AH_petitions.rename(columns={\"_source__total_signature_count\": \"n_signatures\",\n", + " \"_score\": \"score\"}, inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 131, + "id": "7b59a336", + "metadata": {}, + "outputs": [], + "source": [ + "change_AH_petitions[['n_likes', 'total', 'url_id', 'n_replies', 'retweet_count', 'favorite_count', 'n_views', 'n_dislikes', 'n_favorites', 'n_comments']] = None" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "id": "330fb198", + "metadata": {}, + "outputs": [], + "source": [ + "change_petitions_milestones = pd.concat(\n", + " [\n", + " pd.read_csv(change + \"all_petitions_milestones_dec.csv\"),\n", + " pd.read_csv(change + \"df_all_petitions_milestones_4.csv\"),\n", + " ]\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "id": "774c70a9", + "metadata": {}, + "outputs": [], + "source": [ + "change_petitions_milestones[\"url\"] = (\n", + " \"https://www.change.org/p/\" + change_petitions_milestones.petition__slug\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "id": "e23777d4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
__typenameidcreatedAtsignatureCountpetition__slugtitledescriptionphotovideoembeddedMediadmResponsestatus_manualurl
0MilestonePetitionUpdate282456492020-12-19 03:54:09+00:00100000.0justice-for-johnny-deppNaNNaNNaNNaNNaNNaNagainsthttps://www.change.org/p/justice-for-johnny-depp
\n", + "
" + ], + "text/plain": [ + " __typename id createdAt \\\n", + "0 MilestonePetitionUpdate 28245649 2020-12-19 03:54:09+00:00 \n", + "\n", + " signatureCount petition__slug title description photo video \\\n", + "0 100000.0 justice-for-johnny-depp NaN NaN NaN NaN \n", + "\n", + " embeddedMedia dmResponse status_manual \\\n", + "0 NaN NaN against \n", + "\n", + " url \n", + "0 https://www.change.org/p/justice-for-johnny-depp " + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "change_petitions_milestones.head(1)" + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "id": "b801cc1e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "video 1115\n", + "comment 288\n", + "tweet 16\n", + "reddits 2\n", + "Name: from, dtype: int64" + ] + }, + "execution_count": 80, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[\"from\"].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "id": "d75dbde2", + "metadata": {}, + "outputs": [], + "source": [ + "change_petitions_milestones = change_petitions_milestones.rename(\n", + " columns={\"url\": \"shared_url\", \"signatureCount\": \"n_signatures\", \"description\": \"text\"}\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "id": "0bdadbea", + "metadata": {}, + "outputs": [], + "source": [ + "change_petitions_milestones[['n_shared', 'from_n_users', 'users', 'n_urls']] = 0" + ] + }, + { + "cell_type": "code", + "execution_count": 81, + "id": "0568befb", + "metadata": {}, + "outputs": [], + "source": [ + "change_petitions_milestones[['platform']] = \"change\"\n", + "change_petitions_milestones[['platform']] = None\n", + "change_petitions_milestones[['id/url', 'n_likes', 'url_id', 'n_replies',\n", + " 'score', 'retweet_count', 'favorite_count',\"from\", 'n_views', 'n_dislikes',\n", + " 'n_favorites', 'n_comments']] = None\n", + "change_petitions_milestones[\"from\"] = \"petitions_milestones\"\n", + "change_petitions_milestones[\"total\"] = change_petitions_milestones[\"n_signatures\"]" + ] + }, + { + "cell_type": "code", + "execution_count": 82, + "id": "dd8c26d8", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
__typenameidcreatedAtn_signaturespetition__slugtitletextphotovideoembeddedMedia...n_repliesscoreretweet_countfavorite_countn_viewsn_dislikesn_favoritesn_commentstotalfrom
0MilestonePetitionUpdate282456492020-12-19 03:54:09+00:00100000.0justice-for-johnny-deppNaNNaNNaNNaNNaN...NoneNoneNoneNoneNoneNoneNoneNone100000.0petitions_milestones
1MilestonePetitionUpdate282629072020-12-23 16:55:48+00:0050.0warner-brothers-replace-amber-heard-in-justice...NaNNaNNaNNaNNaN...NoneNoneNoneNoneNoneNoneNoneNone50.0petitions_milestones
2MilestonePetitionUpdate282531882020-12-21 08:30:09+00:0025.0warner-brothers-replace-amber-heard-in-justice...NaNNaNNaNNaNNaN...NoneNoneNoneNoneNoneNoneNoneNone25.0petitions_milestones
3MilestonePetitionUpdate282524852020-12-21 02:30:58+00:0010.0warner-brothers-replace-amber-heard-in-justice...NaNNaNNaNNaNNaN...NoneNoneNoneNoneNoneNoneNoneNone10.0petitions_milestones
4MilestonePetitionUpdate282522562020-12-21 00:40:31+00:005.0warner-brothers-replace-amber-heard-in-justice...NaNNaNNaNNaNNaN...NoneNoneNoneNoneNoneNoneNoneNone5.0petitions_milestones
..................................................................
358MilestonePetitionUpdate285298592021-02-11 01:23:31+00:006000.0amber-heard-queremos-salvar-la-carrera-de-john...NaNNaNNaNNaNNaN...NoneNoneNoneNoneNoneNoneNoneNone6000.0petitions_milestones
359MilestonePetitionUpdate284515152021-01-29 19:59:20+00:005000.0amber-heard-queremos-salvar-la-carrera-de-john...NaNNaNNaNNaNNaN...NoneNoneNoneNoneNoneNoneNoneNone5000.0petitions_milestones
360MilestonePetitionUpdate283711772021-01-15 19:12:25+00:004000.0amber-heard-queremos-salvar-la-carrera-de-john...NaNNaNNaNNaNNaN...NoneNoneNoneNoneNoneNoneNoneNone4000.0petitions_milestones
361MilestonePetitionUpdate283174922021-01-06 21:28:28+00:003000.0amber-heard-queremos-salvar-la-carrera-de-john...NaNNaNNaNNaNNaN...NoneNoneNoneNoneNoneNoneNoneNone3000.0petitions_milestones
362MilestonePetitionUpdate282984032021-01-03 17:11:51+00:002500.0amber-heard-queremos-salvar-la-carrera-de-john...NaNNaNNaNNaNNaN...NoneNoneNoneNoneNoneNoneNoneNone2500.0petitions_milestones
\n", + "

553 rows × 31 columns

\n", + "
" + ], + "text/plain": [ + " __typename id createdAt \\\n", + "0 MilestonePetitionUpdate 28245649 2020-12-19 03:54:09+00:00 \n", + "1 MilestonePetitionUpdate 28262907 2020-12-23 16:55:48+00:00 \n", + "2 MilestonePetitionUpdate 28253188 2020-12-21 08:30:09+00:00 \n", + "3 MilestonePetitionUpdate 28252485 2020-12-21 02:30:58+00:00 \n", + "4 MilestonePetitionUpdate 28252256 2020-12-21 00:40:31+00:00 \n", + ".. ... ... ... \n", + "358 MilestonePetitionUpdate 28529859 2021-02-11 01:23:31+00:00 \n", + "359 MilestonePetitionUpdate 28451515 2021-01-29 19:59:20+00:00 \n", + "360 MilestonePetitionUpdate 28371177 2021-01-15 19:12:25+00:00 \n", + "361 MilestonePetitionUpdate 28317492 2021-01-06 21:28:28+00:00 \n", + "362 MilestonePetitionUpdate 28298403 2021-01-03 17:11:51+00:00 \n", + "\n", + " n_signatures petition__slug title \\\n", + "0 100000.0 justice-for-johnny-depp NaN \n", + "1 50.0 warner-brothers-replace-amber-heard-in-justice... NaN \n", + "2 25.0 warner-brothers-replace-amber-heard-in-justice... NaN \n", + "3 10.0 warner-brothers-replace-amber-heard-in-justice... NaN \n", + "4 5.0 warner-brothers-replace-amber-heard-in-justice... NaN \n", + ".. ... ... ... \n", + "358 6000.0 amber-heard-queremos-salvar-la-carrera-de-john... NaN \n", + "359 5000.0 amber-heard-queremos-salvar-la-carrera-de-john... NaN \n", + "360 4000.0 amber-heard-queremos-salvar-la-carrera-de-john... NaN \n", + "361 3000.0 amber-heard-queremos-salvar-la-carrera-de-john... NaN \n", + "362 2500.0 amber-heard-queremos-salvar-la-carrera-de-john... NaN \n", + "\n", + " text photo video embeddedMedia ... n_replies score retweet_count \\\n", + "0 NaN NaN NaN NaN ... None None None \n", + "1 NaN NaN NaN NaN ... None None None \n", + "2 NaN NaN NaN NaN ... None None None \n", + "3 NaN NaN NaN NaN ... None None None \n", + "4 NaN NaN NaN NaN ... None None None \n", + ".. ... ... ... ... ... ... ... ... \n", + "358 NaN NaN NaN NaN ... None None None \n", + "359 NaN NaN NaN NaN ... None None None \n", + "360 NaN NaN NaN NaN ... None None None \n", + "361 NaN NaN NaN NaN ... None None None \n", + "362 NaN NaN NaN NaN ... None None None \n", + "\n", + " favorite_count n_views n_dislikes n_favorites n_comments total \\\n", + "0 None None None None None 100000.0 \n", + "1 None None None None None 50.0 \n", + "2 None None None None None 25.0 \n", + "3 None None None None None 10.0 \n", + "4 None None None None None 5.0 \n", + ".. ... ... ... ... ... ... \n", + "358 None None None None None 6000.0 \n", + "359 None None None None None 5000.0 \n", + "360 None None None None None 4000.0 \n", + "361 None None None None None 3000.0 \n", + "362 None None None None None 2500.0 \n", + "\n", + " from \n", + "0 petitions_milestones \n", + "1 petitions_milestones \n", + "2 petitions_milestones \n", + "3 petitions_milestones \n", + "4 petitions_milestones \n", + ".. ... \n", + "358 petitions_milestones \n", + "359 petitions_milestones \n", + "360 petitions_milestones \n", + "361 petitions_milestones \n", + "362 petitions_milestones \n", + "\n", + "[553 rows x 31 columns]" + ] + }, + "execution_count": 82, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "change_petitions_milestones" + ] + }, + { + "cell_type": "code", + "execution_count": 83, + "id": "1de9fb93", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
shared_urln_sharedfrom_n_usersusersn_urlsplatformfromid/urltextn_likes...url_idn_repliesscoreretweet_countfavorite_countn_viewsn_dislikesn_favoritesn_commentstitle
0https://www.change.org/p/justice-for-johnny-depp0000Nonepetitions_milestonesNoneNaNNone...NoneNoneNoneNoneNoneNoneNoneNoneNoneNaN
1https://www.change.org/p/warner-brothers-repla...0000Nonepetitions_milestonesNoneNaNNone...NoneNoneNoneNoneNoneNoneNoneNoneNoneNaN
2https://www.change.org/p/warner-brothers-repla...0000Nonepetitions_milestonesNoneNaNNone...NoneNoneNoneNoneNoneNoneNoneNoneNoneNaN
3https://www.change.org/p/warner-brothers-repla...0000Nonepetitions_milestonesNoneNaNNone...NoneNoneNoneNoneNoneNoneNoneNoneNoneNaN
4https://www.change.org/p/warner-brothers-repla...0000Nonepetitions_milestonesNoneNaNNone...NoneNoneNoneNoneNoneNoneNoneNoneNoneNaN
..................................................................
358https://www.change.org/p/amber-heard-queremos-...0000Nonepetitions_milestonesNoneNaNNone...NoneNoneNoneNoneNoneNoneNoneNoneNoneNaN
359https://www.change.org/p/amber-heard-queremos-...0000Nonepetitions_milestonesNoneNaNNone...NoneNoneNoneNoneNoneNoneNoneNoneNoneNaN
360https://www.change.org/p/amber-heard-queremos-...0000Nonepetitions_milestonesNoneNaNNone...NoneNoneNoneNoneNoneNoneNoneNoneNoneNaN
361https://www.change.org/p/amber-heard-queremos-...0000Nonepetitions_milestonesNoneNaNNone...NoneNoneNoneNoneNoneNoneNoneNoneNoneNaN
362https://www.change.org/p/amber-heard-queremos-...0000Nonepetitions_milestonesNoneNaNNone...NoneNoneNoneNoneNoneNoneNoneNoneNoneNaN
\n", + "

553 rows × 21 columns

\n", + "
" + ], + "text/plain": [ + " shared_url n_shared \\\n", + "0 https://www.change.org/p/justice-for-johnny-depp 0 \n", + "1 https://www.change.org/p/warner-brothers-repla... 0 \n", + "2 https://www.change.org/p/warner-brothers-repla... 0 \n", + "3 https://www.change.org/p/warner-brothers-repla... 0 \n", + "4 https://www.change.org/p/warner-brothers-repla... 0 \n", + ".. ... ... \n", + "358 https://www.change.org/p/amber-heard-queremos-... 0 \n", + "359 https://www.change.org/p/amber-heard-queremos-... 0 \n", + "360 https://www.change.org/p/amber-heard-queremos-... 0 \n", + "361 https://www.change.org/p/amber-heard-queremos-... 0 \n", + "362 https://www.change.org/p/amber-heard-queremos-... 0 \n", + "\n", + " from_n_users users n_urls platform from id/url text \\\n", + "0 0 0 0 None petitions_milestones None NaN \n", + "1 0 0 0 None petitions_milestones None NaN \n", + "2 0 0 0 None petitions_milestones None NaN \n", + "3 0 0 0 None petitions_milestones None NaN \n", + "4 0 0 0 None petitions_milestones None NaN \n", + ".. ... ... ... ... ... ... ... \n", + "358 0 0 0 None petitions_milestones None NaN \n", + "359 0 0 0 None petitions_milestones None NaN \n", + "360 0 0 0 None petitions_milestones None NaN \n", + "361 0 0 0 None petitions_milestones None NaN \n", + "362 0 0 0 None petitions_milestones None NaN \n", + "\n", + " n_likes ... url_id n_replies score retweet_count favorite_count n_views \\\n", + "0 None ... None None None None None None \n", + "1 None ... None None None None None None \n", + "2 None ... None None None None None None \n", + "3 None ... None None None None None None \n", + "4 None ... None None None None None None \n", + ".. ... ... ... ... ... ... ... ... \n", + "358 None ... None None None None None None \n", + "359 None ... None None None None None None \n", + "360 None ... None None None None None None \n", + "361 None ... None None None None None None \n", + "362 None ... None None None None None None \n", + "\n", + " n_dislikes n_favorites n_comments title \n", + "0 None None None NaN \n", + "1 None None None NaN \n", + "2 None None None NaN \n", + "3 None None None NaN \n", + "4 None None None NaN \n", + ".. ... ... ... ... \n", + "358 None None None NaN \n", + "359 None None None NaN \n", + "360 None None None NaN \n", + "361 None None None NaN \n", + "362 None None None NaN \n", + "\n", + "[553 rows x 21 columns]" + ] + }, + "execution_count": 83, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "change_petitions_milestones[['shared_url', 'n_shared', 'from_n_users', 'users', 'n_urls', 'platform',\n", + " 'from', 'id/url', 'text', 'n_likes', 'total', 'url_id', 'n_replies',\n", + " 'score', 'retweet_count', 'favorite_count', 'n_views', 'n_dislikes',\n", + " 'n_favorites', 'n_comments', 'title']]" + ] + }, + { + "cell_type": "code", + "execution_count": 85, + "id": "1d32d07d", + "metadata": {}, + "outputs": [], + "source": [ + "df_new = pd.concat([df, change_petitions_milestones])" + ] + }, + { + "cell_type": "code", + "execution_count": 133, + "id": "92127070", + "metadata": {}, + "outputs": [], + "source": [ + "change_AH_petitions = change_AH_petitions[df.columns]" + ] + }, + { + "cell_type": "code", + "execution_count": 134, + "id": "dec8de96", + "metadata": {}, + "outputs": [], + "source": [ + "df_neww = pd.concat([df_new, change_AH_petitions])" + ] + }, + { + "cell_type": "code", + "execution_count": 135, + "id": "19233322", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
shared_urln_sharedfrom_n_usersusersn_urlsplatformfromid/urltextn_likes...__typenameidcreatedAtn_signaturespetition__slugphotovideoembeddedMediadmResponsestatus_manual
0https://youtu.be/hwkb80xzdus11('UCAIycRkUrsSP73CZIYFLCWw',){1}youtubecommenthttps://www.youtube.com/watch?v=h-wpBkiMKd0caso de johnny depp y amber heard: amber es at...98986.0...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
1https://youtu.be/pbxtr41zftq21{'UCg0C-N_MPYYOXyF4T3jMxNQ'}{2, 4}youtubecommenthttps://www.youtube.com/watch?v=aca0KWoHtqQamber heard & johnny depp: the real abuser fi...99028.0...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
2https://youtu.be/smo8wh0f8tc11{'UCg0C-N_MPYYOXyF4T3jMxNQ'}{2}youtubecommenthttps://www.youtube.com/watch?v=aca0KWoHtqQamber heard & johnny depp: the real abuser fi...99028.0...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
3https://youtu.be/sbtweshyxhu11{'UCvvba7i-jbpE59FRxIKYJxQ'}{12}youtubecommenthttps://www.youtube.com/watch?v=E1A8WUXfVmAjohnny depp being thirsted over by female cele...62610.0...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
4https://goo.gl/fh3rej22{'UCq3hT5JPPKy87JGbDls_5BQ', 'UCvvba7i-jbpE59F...{12, 23}youtubecommenthttps://www.youtube.com/watch?v=E1A8WUXfVmAjohnny depp being thirsted over by female cele...62610.0...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
..................................................................
41https://www.change.org/p/women-the-age-women-a...00Amber Kefford0changeAH_petitionshttps://www.change.org/p/women<p>To try and have our voices heard when it co...None...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
42https://www.change.org/p/johnny-depp-as-jack-s...00Justice for johnny depp0changeAH_petitionshttps://www.change.org/p/johnny-depp-as-jack-s...<p>We all know johnny depp as a most caring an...None...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
43https://www.change.org/p/royal-courts-of-justi...00Zoe Young0changeAH_petitionshttps://www.change.org/p/royal-courts-of-justi...<p>Johnny Depp got abused and destroyed by Amb...None...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
44https://www.change.org/p/netflix-bring-johnny-...00Alice Beasley0changeAH_petitionshttps://www.change.org/p/netflix-11<p>Johnny Depp has been apart of our lives sin...None...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
45https://www.change.org/p/walt-disney-johnny-de...00Noah Hutchison0changeAH_petitionshttps://www.change.org/p/walt-disney-3<p>To Be Honest with you all, I just wanna see...None...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
\n", + "

2020 rows × 31 columns

\n", + "
" + ], + "text/plain": [ + " shared_url n_shared from_n_users \\\n", + "0 https://youtu.be/hwkb80xzdus 1 1 \n", + "1 https://youtu.be/pbxtr41zftq 2 1 \n", + "2 https://youtu.be/smo8wh0f8tc 1 1 \n", + "3 https://youtu.be/sbtweshyxhu 1 1 \n", + "4 https://goo.gl/fh3rej 2 2 \n", + ".. ... ... ... \n", + "41 https://www.change.org/p/women-the-age-women-a... 0 0 \n", + "42 https://www.change.org/p/johnny-depp-as-jack-s... 0 0 \n", + "43 https://www.change.org/p/royal-courts-of-justi... 0 0 \n", + "44 https://www.change.org/p/netflix-bring-johnny-... 0 0 \n", + "45 https://www.change.org/p/walt-disney-johnny-de... 0 0 \n", + "\n", + " users n_urls platform \\\n", + "0 ('UCAIycRkUrsSP73CZIYFLCWw',) {1} youtube \n", + "1 {'UCg0C-N_MPYYOXyF4T3jMxNQ'} {2, 4} youtube \n", + "2 {'UCg0C-N_MPYYOXyF4T3jMxNQ'} {2} youtube \n", + "3 {'UCvvba7i-jbpE59FRxIKYJxQ'} {12} youtube \n", + "4 {'UCq3hT5JPPKy87JGbDls_5BQ', 'UCvvba7i-jbpE59F... {12, 23} youtube \n", + ".. ... ... ... \n", + "41 Amber Kefford 0 change \n", + "42 Justice for johnny depp 0 change \n", + "43 Zoe Young 0 change \n", + "44 Alice Beasley 0 change \n", + "45 Noah Hutchison 0 change \n", + "\n", + " from id/url \\\n", + "0 comment https://www.youtube.com/watch?v=h-wpBkiMKd0 \n", + "1 comment https://www.youtube.com/watch?v=aca0KWoHtqQ \n", + "2 comment https://www.youtube.com/watch?v=aca0KWoHtqQ \n", + "3 comment https://www.youtube.com/watch?v=E1A8WUXfVmA \n", + "4 comment https://www.youtube.com/watch?v=E1A8WUXfVmA \n", + ".. ... ... \n", + "41 AH_petitions https://www.change.org/p/women \n", + "42 AH_petitions https://www.change.org/p/johnny-depp-as-jack-s... \n", + "43 AH_petitions https://www.change.org/p/royal-courts-of-justi... \n", + "44 AH_petitions https://www.change.org/p/netflix-11 \n", + "45 AH_petitions https://www.change.org/p/walt-disney-3 \n", + "\n", + " text n_likes ... \\\n", + "0 caso de johnny depp y amber heard: amber es at... 98986.0 ... \n", + "1 amber heard & johnny depp: the real abuser fi... 99028.0 ... \n", + "2 amber heard & johnny depp: the real abuser fi... 99028.0 ... \n", + "3 johnny depp being thirsted over by female cele... 62610.0 ... \n", + "4 johnny depp being thirsted over by female cele... 62610.0 ... \n", + ".. ... ... ... \n", + "41

To try and have our voices heard when it co... None ... \n", + "42

We all know johnny depp as a most caring an... None ... \n", + "43

Johnny Depp got abused and destroyed by Amb... None ... \n", + "44

Johnny Depp has been apart of our lives sin... None ... \n", + "45

To Be Honest with you all, I just wanna see... None ... \n", + "\n", + " __typename id createdAt n_signatures petition__slug photo video \\\n", + "0 NaN NaN NaN NaN NaN NaN NaN \n", + "1 NaN NaN NaN NaN NaN NaN NaN \n", + "2 NaN NaN NaN NaN NaN NaN NaN \n", + "3 NaN NaN NaN NaN NaN NaN NaN \n", + "4 NaN NaN NaN NaN NaN NaN NaN \n", + ".. ... .. ... ... ... ... ... \n", + "41 NaN NaN NaN NaN NaN NaN NaN \n", + "42 NaN NaN NaN NaN NaN NaN NaN \n", + "43 NaN NaN NaN NaN NaN NaN NaN \n", + "44 NaN NaN NaN NaN NaN NaN NaN \n", + "45 NaN NaN NaN NaN NaN NaN NaN \n", + "\n", + " embeddedMedia dmResponse status_manual \n", + "0 NaN NaN NaN \n", + "1 NaN NaN NaN \n", + "2 NaN NaN NaN \n", + "3 NaN NaN NaN \n", + "4 NaN NaN NaN \n", + ".. ... ... ... \n", + "41 NaN NaN NaN \n", + "42 NaN NaN NaN \n", + "43 NaN NaN NaN \n", + "44 NaN NaN NaN \n", + "45 NaN NaN NaN \n", + "\n", + "[2020 rows x 31 columns]" + ] + }, + "execution_count": 135, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_neww" + ] + }, + { + "cell_type": "code", + "execution_count": 136, + "id": "b77a68cc", + "metadata": {}, + "outputs": [], + "source": [ + "df_neww.to_csv(\"all_shared_yt_change_5months.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "303cbc78", + "metadata": {}, + "outputs": [], + "source": [ + "urls = list(df.shared_url.values)" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "ce87c636", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'job_id': '209c75a1-e75d-43ea-8a73-4dd1da80b22a',\n", + " 'message': '[Summary] query submitted. It will take about 2 minutes. You can '\n", + " 'check job status on '\n", + " 'https://informationtracer.com/jobs/209c75a1-e75d-43ea-8a73-4dd1da80b22a '\n", + " 'Page will refresh when job finishes.'}\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "0 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "1 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "3 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "4 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "6 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "7 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "9 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "10 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "12 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "14 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "15 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "17 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "18 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "20 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "22 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "23 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "25 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "26 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "28 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "29 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "31 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "33 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "34 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "36 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "37 seconds passed...\n", + "{'progress': '100% finished data collection. please visit '\n", + " 'https://informationtracer.com/?url=youtube.com/watch?v=hwkb80xzdus',\n", + " 'status': 'finished',\n", + " 'url': 'youtube.com/watch?v=hwkb80xzdus'}\n", + "39 seconds passed...\n", + "colleciton finished!\n", + "=============writing results to file =================\n", + "{'job_id': '25c1f668-e6ca-4241-9e50-a7e0074fe58f',\n", + " 'message': '[Summary] query submitted. It will take about 2 minutes. You can '\n", + " 'check job status on '\n", + " 'https://informationtracer.com/jobs/25c1f668-e6ca-4241-9e50-a7e0074fe58f '\n", + " 'Page will refresh when job finishes.'}\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "0 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "1 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "3 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "4 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "6 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "7 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "9 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "10 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "12 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "14 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "15 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "17 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "18 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "20 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "21 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "23 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "25 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "26 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "28 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "29 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "31 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "32 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "34 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "36 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "37 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "39 seconds passed...\n", + "{'progress': '100% finished data collection. please visit '\n", + " 'https://informationtracer.com/?url=youtube.com/watch?v=pbxtr41zftq',\n", + " 'status': 'finished',\n", + " 'url': 'youtube.com/watch?v=pbxtr41zftq'}\n", + "40 seconds passed...\n", + "colleciton finished!\n", + "=============writing results to file =================\n", + "{'job_id': '03932e7d-b947-4f1d-9b31-c161b30cfa90',\n", + " 'message': '[Summary] query submitted. It will take about 2 minutes. You can '\n", + " 'check job status on '\n", + " 'https://informationtracer.com/jobs/03932e7d-b947-4f1d-9b31-c161b30cfa90 '\n", + " 'Page will refresh when job finishes.'}\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "0 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "1 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "3 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "4 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "6 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "7 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "9 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "10 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "12 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "14 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "15 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "17 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "18 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "20 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "21 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "23 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "25 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "26 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "28 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "29 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "31 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "32 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "34 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "36 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "37 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "39 seconds passed...\n", + "{'progress': '100% finished data collection. please visit '\n", + " 'https://informationtracer.com/?url=youtube.com/watch?v=smo8wh0f8tc',\n", + " 'status': 'finished',\n", + " 'url': 'youtube.com/watch?v=smo8wh0f8tc'}\n", + "40 seconds passed...\n", + "colleciton finished!\n", + "=============writing results to file =================\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'job_id': '8f45f48c-9a55-4d8b-b2bd-eded321191dc',\n", + " 'message': '[Summary] query submitted. It will take about 2 minutes. You can '\n", + " 'check job status on '\n", + " 'https://informationtracer.com/jobs/8f45f48c-9a55-4d8b-b2bd-eded321191dc '\n", + " 'Page will refresh when job finishes.'}\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "0 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "1 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "3 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "4 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "6 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "7 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "9 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "10 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "12 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "14 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "15 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "17 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "18 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "20 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "21 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "23 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "25 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "26 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "28 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "29 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "31 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "32 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "34 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "36 seconds passed...\n", + "{'progress': '100% finished data collection. please visit '\n", + " 'https://informationtracer.com/?url=youtube.com/watch?v=sbtweshyxhu',\n", + " 'status': 'finished',\n", + " 'url': 'youtube.com/watch?v=sbtweshyxhu'}\n", + "37 seconds passed...\n", + "colleciton finished!\n", + "=============writing results to file =================\n", + "{'job_id': '149da15c-2269-4a94-a2c8-c824ef8fb9b1',\n", + " 'message': '[Summary] query submitted. It will take about 2 minutes. You can '\n", + " 'check job status on '\n", + " 'https://informationtracer.com/jobs/149da15c-2269-4a94-a2c8-c824ef8fb9b1 '\n", + " 'Page will refresh when job finishes.'}\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "0 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "1 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "3 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "4 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "6 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "7 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "9 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "10 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "12 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "14 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "15 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "17 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "18 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "20 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "21 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "23 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "25 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "26 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "28 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "29 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "31 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "32 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "34 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "36 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "37 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "39 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "40 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "42 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "43 seconds passed...\n", + "{'progress': '60% collecting facebook and reddit posts...'}\n", + "45 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "47 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "48 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "50 seconds passed...\n", + "{'progress': '70% collecting telegram posts...'}\n", + "51 seconds passed...\n", + "{'progress': '100% finished data collection. please visit '\n", + " 'https://informationtracer.com/?url=goo.gl/fh3rej',\n", + " 'status': 'finished',\n", + " 'url': 'goo.gl/fh3rej'}\n", + "53 seconds passed...\n", + "colleciton finished!\n", + "=============writing results to file =================\n", + "{'job_id': '1aacd672-e3ed-476d-aea8-89ca03de99ea',\n", + " 'message': '[Summary] query submitted. It will take about 2 minutes. You can '\n", + " 'check job status on '\n", + " 'https://informationtracer.com/jobs/1aacd672-e3ed-476d-aea8-89ca03de99ea '\n", + " 'Page will refresh when job finishes.'}\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "0 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "1 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "3 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "4 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "6 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "7 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "9 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "11 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "12 seconds passed...\n", + "{'progress': '15% search original tweets that contain the input URL...'}\n", + "14 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/doctorow/status/1445057382510305285 [1 / '\n", + " '30]'}\n", + "15 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/doctorow/status/1445057382510305285 [1 / '\n", + " '30]'}\n", + "17 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/riffreporter/status/1509387512145485825 [2 '\n", + " '/ 30]'}\n", + "19 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/riffreporter/status/1509387512145485825 [2 '\n", + " '/ 30]'}\n", + "20 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/doctorow/status/1533850344207294464 [3 / '\n", + " '30]'}\n", + "22 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/doctorow/status/1539266253189173249 [4 / '\n", + " '30]'}\n", + "23 seconds passed...\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/doctorow/status/1539266253189173249 [4 / '\n", + " '30]'}\n", + "25 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/doctorow/status/1500134065982291974 [5 / '\n", + " '30]'}\n", + "26 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/tarukosu/status/1527169141995495424 [6 / '\n", + " '30]'}\n", + "28 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/tarukosu/status/1527169141995495424 [6 / '\n", + " '30]'}\n", + "30 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/CarlosJPavonV/status/1512139176833130505 [7 '\n", + " '/ 30]'}\n", + "31 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/CarlosJPavonV/status/1512139176833130505 [7 '\n", + " '/ 30]'}\n", + "33 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/CarlosJPavonV/status/1512139176833130505 [7 '\n", + " '/ 30]'}\n", + "34 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/CarlosJPavonV/status/1512139176833130505 [7 '\n", + " '/ 30]'}\n", + "36 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/CarlosJPavonV/status/1512139176833130505 [7 '\n", + " '/ 30]'}\n", + "37 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/chongsangjun/status/1493865454263156736 [8 '\n", + " '/ 30]'}\n", + "39 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/chongsangjun/status/1493865454263156736 [8 '\n", + " '/ 30]'}\n", + "41 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/chongsangjun/status/1493865454263156736 [8 '\n", + " '/ 30]'}\n", + "42 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/chongsangjun/status/1493865454263156736 [8 '\n", + " '/ 30]'}\n", + "44 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/chongsangjun/status/1493865454263156736 [8 '\n", + " '/ 30]'}\n", + "65 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/chongsangjun/status/1493865454263156736 [8 '\n", + " '/ 30]'}\n", + "66 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/chongsangjun/status/1493865454263156736 [8 '\n", + " '/ 30]'}\n", + "68 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/chongsangjun/status/1493865454263156736 [8 '\n", + " '/ 30]'}\n", + "69 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/chongsangjun/status/1493865454263156736 [8 '\n", + " '/ 30]'}\n", + "71 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/doctorow/status/1493288126378295298 [9 / '\n", + " '30]'}\n", + "72 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/doctorow/status/1493288126378295298 [9 / '\n", + " '30]'}\n", + "74 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/therealSIR3/status/1533553672013197312 [10 '\n", + " '/ 30]'}\n", + "76 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/therealSIR3/status/1533553672013197312 [10 '\n", + " '/ 30]'}\n", + "77 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/riffreporter/status/1510837062643040258 [11 '\n", + " '/ 30]'}\n", + "79 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/riffreporter/status/1510837062643040258 [11 '\n", + " '/ 30]'}\n", + "80 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/riffreporter/status/1510837062643040258 [11 '\n", + " '/ 30]'}\n", + "82 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/riffreporter/status/1510837062643040258 [11 '\n", + " '/ 30]'}\n", + "83 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/riffreporter/status/1510837062643040258 [11 '\n", + " '/ 30]'}\n", + "85 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/MilHiVisualized/status/1450537302002913303 '\n", + " '[12 / 30]'}\n", + "87 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/MilHiVisualized/status/1450537302002913303 '\n", + " '[12 / 30]'}\n", + "88 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/MilHiVisualized/status/1450537302002913303 '\n", + " '[12 / 30]'}\n", + "90 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/MilHiVisualized/status/1450537302002913303 '\n", + " '[12 / 30]'}\n", + "91 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/abby_fecit/status/1528679657964453889 [13 / '\n", + " '30]'}\n", + "93 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/abby_fecit/status/1528679657964453889 [13 / '\n", + " '30]'}\n", + "94 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/archaeologyart/status/1450069193811009539 '\n", + " '[14 / 30]'}\n", + "96 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/archaeologyart/status/1450069193811009539 '\n", + " '[14 / 30]'}\n", + "98 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/chongsangjun/status/1492786156190064641 [15 '\n", + " '/ 30]'}\n", + "99 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/chongsangjun/status/1492786156190064641 [15 '\n", + " '/ 30]'}\n", + "101 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/chongsangjun/status/1492786156190064641 [15 '\n", + " '/ 30]'}\n", + "102 seconds passed...\n", + "{'progress': '40% collecting retweets and replies from \\n'\n", + " ' https://twitter.com/chongsangjun/status/1492786156190064641 [15 '\n", + " '/ 30]'}\n", + "104 seconds passed...\n" + ] + }, + { + "ename": "ConnectionError", + "evalue": "HTTPSConnectionPool(host='informationtracer.com', port=443): Max retries exceeded with url: /jobs/1aacd672-e3ed-476d-aea8-89ca03de99ea (Caused by NewConnectionError(': Failed to establish a new connection: [WinError 10051] A socket operation was attempted to an unreachable network'))", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mOSError\u001b[0m Traceback (most recent call last)", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\urllib3\\connection.py:174\u001b[0m, in \u001b[0;36mHTTPConnection._new_conn\u001b[1;34m(self)\u001b[0m\n\u001b[0;32m 173\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m--> 174\u001b[0m conn \u001b[38;5;241m=\u001b[39m connection\u001b[38;5;241m.\u001b[39mcreate_connection(\n\u001b[0;32m 175\u001b[0m (\u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39m_dns_host, \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mport), \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mtimeout, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mextra_kw\n\u001b[0;32m 176\u001b[0m )\n\u001b[0;32m 178\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m SocketTimeout:\n", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\urllib3\\util\\connection.py:95\u001b[0m, in \u001b[0;36mcreate_connection\u001b[1;34m(address, timeout, source_address, socket_options)\u001b[0m\n\u001b[0;32m 94\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m err \u001b[38;5;129;01mis\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28;01mNone\u001b[39;00m:\n\u001b[1;32m---> 95\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m err\n\u001b[0;32m 97\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m socket\u001b[38;5;241m.\u001b[39merror(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mgetaddrinfo returns an empty list\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\urllib3\\util\\connection.py:85\u001b[0m, in \u001b[0;36mcreate_connection\u001b[1;34m(address, timeout, source_address, socket_options)\u001b[0m\n\u001b[0;32m 84\u001b[0m sock\u001b[38;5;241m.\u001b[39mbind(source_address)\n\u001b[1;32m---> 85\u001b[0m \u001b[43msock\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mconnect\u001b[49m\u001b[43m(\u001b[49m\u001b[43msa\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 86\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m sock\n", + "\u001b[1;31mOSError\u001b[0m: [WinError 10051] A socket operation was attempted to an unreachable network", + "\nDuring handling of the above exception, another exception occurred:\n", + "\u001b[1;31mNewConnectionError\u001b[0m Traceback (most recent call last)", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\urllib3\\connectionpool.py:703\u001b[0m, in \u001b[0;36mHTTPConnectionPool.urlopen\u001b[1;34m(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)\u001b[0m\n\u001b[0;32m 702\u001b[0m \u001b[38;5;66;03m# Make the request on the httplib connection object.\u001b[39;00m\n\u001b[1;32m--> 703\u001b[0m httplib_response \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_make_request\u001b[49m\u001b[43m(\u001b[49m\n\u001b[0;32m 704\u001b[0m \u001b[43m \u001b[49m\u001b[43mconn\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 705\u001b[0m \u001b[43m \u001b[49m\u001b[43mmethod\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 706\u001b[0m \u001b[43m \u001b[49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 707\u001b[0m \u001b[43m \u001b[49m\u001b[43mtimeout\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mtimeout_obj\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 708\u001b[0m \u001b[43m \u001b[49m\u001b[43mbody\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mbody\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 709\u001b[0m \u001b[43m \u001b[49m\u001b[43mheaders\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mheaders\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 710\u001b[0m \u001b[43m \u001b[49m\u001b[43mchunked\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mchunked\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 711\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 713\u001b[0m \u001b[38;5;66;03m# If we're going to release the connection in ``finally:``, then\u001b[39;00m\n\u001b[0;32m 714\u001b[0m \u001b[38;5;66;03m# the response doesn't need to know about the connection. Otherwise\u001b[39;00m\n\u001b[0;32m 715\u001b[0m \u001b[38;5;66;03m# it will also try to release it and we'll have a double-release\u001b[39;00m\n\u001b[0;32m 716\u001b[0m \u001b[38;5;66;03m# mess.\u001b[39;00m\n", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\urllib3\\connectionpool.py:386\u001b[0m, in \u001b[0;36mHTTPConnectionPool._make_request\u001b[1;34m(self, conn, method, url, timeout, chunked, **httplib_request_kw)\u001b[0m\n\u001b[0;32m 385\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[1;32m--> 386\u001b[0m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_validate_conn\u001b[49m\u001b[43m(\u001b[49m\u001b[43mconn\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 387\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m (SocketTimeout, BaseSSLError) \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[0;32m 388\u001b[0m \u001b[38;5;66;03m# Py2 raises this as a BaseSSLError, Py3 raises it as socket timeout.\u001b[39;00m\n", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\urllib3\\connectionpool.py:1040\u001b[0m, in \u001b[0;36mHTTPSConnectionPool._validate_conn\u001b[1;34m(self, conn)\u001b[0m\n\u001b[0;32m 1039\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m \u001b[38;5;28mgetattr\u001b[39m(conn, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124msock\u001b[39m\u001b[38;5;124m\"\u001b[39m, \u001b[38;5;28;01mNone\u001b[39;00m): \u001b[38;5;66;03m# AppEngine might not have `.sock`\u001b[39;00m\n\u001b[1;32m-> 1040\u001b[0m \u001b[43mconn\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mconnect\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 1042\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m conn\u001b[38;5;241m.\u001b[39mis_verified:\n", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\urllib3\\connection.py:358\u001b[0m, in \u001b[0;36mHTTPSConnection.connect\u001b[1;34m(self)\u001b[0m\n\u001b[0;32m 356\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mconnect\u001b[39m(\u001b[38;5;28mself\u001b[39m):\n\u001b[0;32m 357\u001b[0m \u001b[38;5;66;03m# Add certificate verification\u001b[39;00m\n\u001b[1;32m--> 358\u001b[0m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msock \u001b[38;5;241m=\u001b[39m conn \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_new_conn\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 359\u001b[0m hostname \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39mhost\n", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\urllib3\\connection.py:186\u001b[0m, in \u001b[0;36mHTTPConnection._new_conn\u001b[1;34m(self)\u001b[0m\n\u001b[0;32m 185\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m SocketError \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[1;32m--> 186\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m NewConnectionError(\n\u001b[0;32m 187\u001b[0m \u001b[38;5;28mself\u001b[39m, \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mFailed to establish a new connection: \u001b[39m\u001b[38;5;132;01m%s\u001b[39;00m\u001b[38;5;124m\"\u001b[39m \u001b[38;5;241m%\u001b[39m e\n\u001b[0;32m 188\u001b[0m )\n\u001b[0;32m 190\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m conn\n", + "\u001b[1;31mNewConnectionError\u001b[0m: : Failed to establish a new connection: [WinError 10051] A socket operation was attempted to an unreachable network", + "\nDuring handling of the above exception, another exception occurred:\n", + "\u001b[1;31mMaxRetryError\u001b[0m Traceback (most recent call last)", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\requests\\adapters.py:440\u001b[0m, in \u001b[0;36mHTTPAdapter.send\u001b[1;34m(self, request, stream, timeout, verify, cert, proxies)\u001b[0m\n\u001b[0;32m 439\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;129;01mnot\u001b[39;00m chunked:\n\u001b[1;32m--> 440\u001b[0m resp \u001b[38;5;241m=\u001b[39m \u001b[43mconn\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43murlopen\u001b[49m\u001b[43m(\u001b[49m\n\u001b[0;32m 441\u001b[0m \u001b[43m \u001b[49m\u001b[43mmethod\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mrequest\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmethod\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 442\u001b[0m \u001b[43m \u001b[49m\u001b[43murl\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 443\u001b[0m \u001b[43m \u001b[49m\u001b[43mbody\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mrequest\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mbody\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 444\u001b[0m \u001b[43m \u001b[49m\u001b[43mheaders\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mrequest\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mheaders\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 445\u001b[0m \u001b[43m \u001b[49m\u001b[43mredirect\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mFalse\u001b[39;49;00m\u001b[43m,\u001b[49m\n\u001b[0;32m 446\u001b[0m \u001b[43m \u001b[49m\u001b[43massert_same_host\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mFalse\u001b[39;49;00m\u001b[43m,\u001b[49m\n\u001b[0;32m 447\u001b[0m \u001b[43m \u001b[49m\u001b[43mpreload_content\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mFalse\u001b[39;49;00m\u001b[43m,\u001b[49m\n\u001b[0;32m 448\u001b[0m \u001b[43m \u001b[49m\u001b[43mdecode_content\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43;01mFalse\u001b[39;49;00m\u001b[43m,\u001b[49m\n\u001b[0;32m 449\u001b[0m \u001b[43m \u001b[49m\u001b[43mretries\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mmax_retries\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 450\u001b[0m \u001b[43m \u001b[49m\u001b[43mtimeout\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mtimeout\u001b[49m\n\u001b[0;32m 451\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 453\u001b[0m \u001b[38;5;66;03m# Send the request.\u001b[39;00m\n\u001b[0;32m 454\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\urllib3\\connectionpool.py:785\u001b[0m, in \u001b[0;36mHTTPConnectionPool.urlopen\u001b[1;34m(self, method, url, body, headers, retries, redirect, assert_same_host, timeout, pool_timeout, release_conn, chunked, body_pos, **response_kw)\u001b[0m\n\u001b[0;32m 783\u001b[0m e \u001b[38;5;241m=\u001b[39m ProtocolError(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mConnection aborted.\u001b[39m\u001b[38;5;124m\"\u001b[39m, e)\n\u001b[1;32m--> 785\u001b[0m retries \u001b[38;5;241m=\u001b[39m \u001b[43mretries\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mincrement\u001b[49m\u001b[43m(\u001b[49m\n\u001b[0;32m 786\u001b[0m \u001b[43m \u001b[49m\u001b[43mmethod\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43murl\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43merror\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43me\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43m_pool\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43m_stacktrace\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43msys\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mexc_info\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;241;43m2\u001b[39;49m\u001b[43m]\u001b[49m\n\u001b[0;32m 787\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 788\u001b[0m retries\u001b[38;5;241m.\u001b[39msleep()\n", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\urllib3\\util\\retry.py:592\u001b[0m, in \u001b[0;36mRetry.increment\u001b[1;34m(self, method, url, response, error, _pool, _stacktrace)\u001b[0m\n\u001b[0;32m 591\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m new_retry\u001b[38;5;241m.\u001b[39mis_exhausted():\n\u001b[1;32m--> 592\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m MaxRetryError(_pool, url, error \u001b[38;5;129;01mor\u001b[39;00m ResponseError(cause))\n\u001b[0;32m 594\u001b[0m log\u001b[38;5;241m.\u001b[39mdebug(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mIncremented Retry for (url=\u001b[39m\u001b[38;5;124m'\u001b[39m\u001b[38;5;132;01m%s\u001b[39;00m\u001b[38;5;124m'\u001b[39m\u001b[38;5;124m): \u001b[39m\u001b[38;5;132;01m%r\u001b[39;00m\u001b[38;5;124m\"\u001b[39m, url, new_retry)\n", + "\u001b[1;31mMaxRetryError\u001b[0m: HTTPSConnectionPool(host='informationtracer.com', port=443): Max retries exceeded with url: /jobs/1aacd672-e3ed-476d-aea8-89ca03de99ea (Caused by NewConnectionError(': Failed to establish a new connection: [WinError 10051] A socket operation was attempted to an unreachable network'))", + "\nDuring handling of the above exception, another exception occurred:\n", + "\u001b[1;31mConnectionError\u001b[0m Traceback (most recent call last)", + "Input \u001b[1;32mIn [21]\u001b[0m, in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01minformationtracer\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m informationtracer\n\u001b[1;32m----> 3\u001b[0m \u001b[43minformationtracer\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mtrace\u001b[49m\u001b[43m(\u001b[49m\n\u001b[0;32m 4\u001b[0m \u001b[43m \u001b[49m\u001b[43mkeyword\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43murls\u001b[49m\u001b[43m,\u001b[49m\n\u001b[0;32m 5\u001b[0m \u001b[43m \u001b[49m\u001b[43mtoken\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43m05690d94143aa7163b61f66abce86d24\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\n\u001b[0;32m 6\u001b[0m \u001b[43m \u001b[49m\u001b[43moutput_dir\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[38;5;124;43moutput_test\u001b[39;49m\u001b[38;5;124;43m\"\u001b[39;49m\u001b[43m,\u001b[49m\n\u001b[0;32m 7\u001b[0m \u001b[43m)\u001b[49m\n", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\informationtracer\\informationtracer.py:50\u001b[0m, in \u001b[0;36mtrace\u001b[1;34m(keyword, output_dir, output_filename, input_filename, timeout, is_async, no_print, token)\u001b[0m\n\u001b[0;32m 48\u001b[0m full_url \u001b[38;5;241m=\u001b[39m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mhttps://informationtracer.com/jobs/\u001b[39m\u001b[38;5;132;01m{}\u001b[39;00m\u001b[38;5;124m'\u001b[39m\u001b[38;5;241m.\u001b[39mformat(job_id)\n\u001b[0;32m 49\u001b[0m \u001b[38;5;66;03m# TODO: add try catch in case of connection error (Connection aborted)\u001b[39;00m\n\u001b[1;32m---> 50\u001b[0m response \u001b[38;5;241m=\u001b[39m \u001b[43mrequests\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\u001b[43mfull_url\u001b[49m\u001b[43m)\u001b[49m\n\u001b[0;32m 51\u001b[0m \u001b[38;5;66;03m# print(response.status_code)\u001b[39;00m\n\u001b[0;32m 52\u001b[0m pprint(response\u001b[38;5;241m.\u001b[39mjson()[\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mdata\u001b[39m\u001b[38;5;124m'\u001b[39m][\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mtast_meta\u001b[39m\u001b[38;5;124m'\u001b[39m])\n", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\requests\\api.py:75\u001b[0m, in \u001b[0;36mget\u001b[1;34m(url, params, **kwargs)\u001b[0m\n\u001b[0;32m 64\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mget\u001b[39m(url, params\u001b[38;5;241m=\u001b[39m\u001b[38;5;28;01mNone\u001b[39;00m, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs):\n\u001b[0;32m 65\u001b[0m \u001b[38;5;124mr\u001b[39m\u001b[38;5;124;03m\"\"\"Sends a GET request.\u001b[39;00m\n\u001b[0;32m 66\u001b[0m \n\u001b[0;32m 67\u001b[0m \u001b[38;5;124;03m :param url: URL for the new :class:`Request` object.\u001b[39;00m\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 72\u001b[0m \u001b[38;5;124;03m :rtype: requests.Response\u001b[39;00m\n\u001b[0;32m 73\u001b[0m \u001b[38;5;124;03m \"\"\"\u001b[39;00m\n\u001b[1;32m---> 75\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m request(\u001b[38;5;124m'\u001b[39m\u001b[38;5;124mget\u001b[39m\u001b[38;5;124m'\u001b[39m, url, params\u001b[38;5;241m=\u001b[39mparams, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\requests\\api.py:61\u001b[0m, in \u001b[0;36mrequest\u001b[1;34m(method, url, **kwargs)\u001b[0m\n\u001b[0;32m 57\u001b[0m \u001b[38;5;66;03m# By using the 'with' statement we are sure the session is closed, thus we\u001b[39;00m\n\u001b[0;32m 58\u001b[0m \u001b[38;5;66;03m# avoid leaving sockets open which can trigger a ResourceWarning in some\u001b[39;00m\n\u001b[0;32m 59\u001b[0m \u001b[38;5;66;03m# cases, and look like a memory leak in others.\u001b[39;00m\n\u001b[0;32m 60\u001b[0m \u001b[38;5;28;01mwith\u001b[39;00m sessions\u001b[38;5;241m.\u001b[39mSession() \u001b[38;5;28;01mas\u001b[39;00m session:\n\u001b[1;32m---> 61\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m session\u001b[38;5;241m.\u001b[39mrequest(method\u001b[38;5;241m=\u001b[39mmethod, url\u001b[38;5;241m=\u001b[39murl, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\requests\\sessions.py:529\u001b[0m, in \u001b[0;36mSession.request\u001b[1;34m(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)\u001b[0m\n\u001b[0;32m 524\u001b[0m send_kwargs \u001b[38;5;241m=\u001b[39m {\n\u001b[0;32m 525\u001b[0m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mtimeout\u001b[39m\u001b[38;5;124m'\u001b[39m: timeout,\n\u001b[0;32m 526\u001b[0m \u001b[38;5;124m'\u001b[39m\u001b[38;5;124mallow_redirects\u001b[39m\u001b[38;5;124m'\u001b[39m: allow_redirects,\n\u001b[0;32m 527\u001b[0m }\n\u001b[0;32m 528\u001b[0m send_kwargs\u001b[38;5;241m.\u001b[39mupdate(settings)\n\u001b[1;32m--> 529\u001b[0m resp \u001b[38;5;241m=\u001b[39m \u001b[38;5;28mself\u001b[39m\u001b[38;5;241m.\u001b[39msend(prep, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39msend_kwargs)\n\u001b[0;32m 531\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m resp\n", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\requests\\sessions.py:645\u001b[0m, in \u001b[0;36mSession.send\u001b[1;34m(self, request, **kwargs)\u001b[0m\n\u001b[0;32m 642\u001b[0m start \u001b[38;5;241m=\u001b[39m preferred_clock()\n\u001b[0;32m 644\u001b[0m \u001b[38;5;66;03m# Send the request\u001b[39;00m\n\u001b[1;32m--> 645\u001b[0m r \u001b[38;5;241m=\u001b[39m adapter\u001b[38;5;241m.\u001b[39msend(request, \u001b[38;5;241m*\u001b[39m\u001b[38;5;241m*\u001b[39mkwargs)\n\u001b[0;32m 647\u001b[0m \u001b[38;5;66;03m# Total elapsed time of the request (approximately)\u001b[39;00m\n\u001b[0;32m 648\u001b[0m elapsed \u001b[38;5;241m=\u001b[39m preferred_clock() \u001b[38;5;241m-\u001b[39m start\n", + "File \u001b[1;32m~\\anaconda3\\lib\\site-packages\\requests\\adapters.py:519\u001b[0m, in \u001b[0;36mHTTPAdapter.send\u001b[1;34m(self, request, stream, timeout, verify, cert, proxies)\u001b[0m\n\u001b[0;32m 515\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m \u001b[38;5;28misinstance\u001b[39m(e\u001b[38;5;241m.\u001b[39mreason, _SSLError):\n\u001b[0;32m 516\u001b[0m \u001b[38;5;66;03m# This branch is for urllib3 v1.22 and later.\u001b[39;00m\n\u001b[0;32m 517\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m SSLError(e, request\u001b[38;5;241m=\u001b[39mrequest)\n\u001b[1;32m--> 519\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mConnectionError\u001b[39;00m(e, request\u001b[38;5;241m=\u001b[39mrequest)\n\u001b[0;32m 521\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m ClosedPoolError \u001b[38;5;28;01mas\u001b[39;00m e:\n\u001b[0;32m 522\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m \u001b[38;5;167;01mConnectionError\u001b[39;00m(e, request\u001b[38;5;241m=\u001b[39mrequest)\n", + "\u001b[1;31mConnectionError\u001b[0m: HTTPSConnectionPool(host='informationtracer.com', port=443): Max retries exceeded with url: /jobs/1aacd672-e3ed-476d-aea8-89ca03de99ea (Caused by NewConnectionError(': Failed to establish a new connection: [WinError 10051] A socket operation was attempted to an unreachable network'))" + ] + } + ], + "source": [ + "from informationtracer import informationtracer\n", + "\n", + "informationtracer.trace(\n", + " keyword=urls,\n", + " token=\"05690d94143aa7163b61f66abce86d24\",\n", + " output_dir=\"output_test\",\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1154a4f3", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.12" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Links Analysis Cross-Platforms/Top_Shared/all_shared_yt_change_5months.csv b/Links Analysis Cross-Platforms/Top_Shared/all_shared_yt_change_5months.csv new file mode 100644 index 00000000..8b3501c9 --- /dev/null +++ b/Links Analysis Cross-Platforms/Top_Shared/all_shared_yt_change_5months.csv @@ -0,0 +1,21358 @@ +,shared_url,n_shared,from_n_users,users,n_urls,platform,from,id/url,text,n_likes,total,url_id,n_replies,score,retweet_count,favorite_count,n_views,n_dislikes,n_favorites,n_comments,title,__typename,id,createdAt,n_signatures,petition__slug,photo,video,embeddedMedia,dmResponse,status_manual +0,https://youtu.be/hwkb80xzdus,1,1,"('UCAIycRkUrsSP73CZIYFLCWw',)",{1},youtube,comment,https://www.youtube.com/watch?v=h-wpBkiMKd0,"caso de johnny depp y amber heard: amber es atrapada mintiendo bajo juramento, subitulos español",98986.0,9525759.0,,,,,,9402370.0,6188.0,0.0,18215.0,,,,,,,,,,, +1,https://youtu.be/pbxtr41zftq,2,1,{'UCg0C-N_MPYYOXyF4T3jMxNQ'},"{2, 4}",youtube,comment,https://www.youtube.com/watch?v=aca0KWoHtqQ,amber heard & johnny depp: the real abuser finally revealed!! (uncensored audio!),99028.0,5095759.0,,,,,,4942871.0,3088.0,0.0,50772.0,,,,,,,,,,, +2,https://youtu.be/smo8wh0f8tc,1,1,{'UCg0C-N_MPYYOXyF4T3jMxNQ'},{2},youtube,comment,https://www.youtube.com/watch?v=aca0KWoHtqQ,amber heard & johnny depp: the real abuser finally revealed!! (uncensored audio!),99028.0,5095759.0,,,,,,4942871.0,3088.0,0.0,50772.0,,,,,,,,,,, +3,https://youtu.be/sbtweshyxhu,1,1,{'UCvvba7i-jbpE59FRxIKYJxQ'},{12},youtube,comment,https://www.youtube.com/watch?v=E1A8WUXfVmA,johnny depp being thirsted over by female celebrities!,62610.0,3234281.0,,,,,,3164893.0,3543.0,0.0,3235.0,,,,,,,,,,, +4,https://goo.gl/fh3rej,2,2,"{'UCq3hT5JPPKy87JGbDls_5BQ', 'UCvvba7i-jbpE59FRxIKYJxQ'}","{12, 23}",youtube,comment,https://www.youtube.com/watch?v=E1A8WUXfVmA,johnny depp being thirsted over by female celebrities!,62610.0,3234281.0,,,,,,3164893.0,3543.0,0.0,3235.0,,,,,,,,,,, +5,https://creativecommons.org/licenses/,4,3,"{'UCq3hT5JPPKy87JGbDls_5BQ', 'UCvvba7i-jbpE59FRxIKYJxQ', 'UCCjzLtNFNCFCAj__4Tce1_A'}","{12, 22, 23}",youtube,comment,https://www.youtube.com/watch?v=E1A8WUXfVmA,johnny depp being thirsted over by female celebrities!,62610.0,3234281.0,,,,,,3164893.0,3543.0,0.0,3235.0,,,,,,,,,,, +6,https://youtu.be/riicqx0nsoq,1,1,{'UCvvba7i-jbpE59FRxIKYJxQ'},{12},youtube,comment,https://www.youtube.com/watch?v=E1A8WUXfVmA,johnny depp being thirsted over by female celebrities!,62610.0,3234281.0,,,,,,3164893.0,3543.0,0.0,3235.0,,,,,,,,,,, +7,https://youtu.be/uetaawvggwe,1,1,{'UCvvba7i-jbpE59FRxIKYJxQ'},{12},youtube,comment,https://www.youtube.com/watch?v=E1A8WUXfVmA,johnny depp being thirsted over by female celebrities!,62610.0,3234281.0,,,,,,3164893.0,3543.0,0.0,3235.0,,,,,,,,,,, +8,https://youtu.be/aepdtf4jq8y,1,1,{'UCvvba7i-jbpE59FRxIKYJxQ'},{12},youtube,comment,https://www.youtube.com/watch?v=E1A8WUXfVmA,johnny depp being thirsted over by female celebrities!,62610.0,3234281.0,,,,,,3164893.0,3543.0,0.0,3235.0,,,,,,,,,,, +9,https://youtu.be/qvn9ahauycg,1,1,{'UCvvba7i-jbpE59FRxIKYJxQ'},{12},youtube,comment,https://www.youtube.com/watch?v=E1A8WUXfVmA,johnny depp being thirsted over by female celebrities!,62610.0,3234281.0,,,,,,3164893.0,3543.0,0.0,3235.0,,,,,,,,,,, +10,https://www.youtube.com/watch?v=waukv,1,1,{'UCvvba7i-jbpE59FRxIKYJxQ'},{12},youtube,comment,https://www.youtube.com/watch?v=E1A8WUXfVmA,johnny depp being thirsted over by female celebrities!,62610.0,3234281.0,,,,,,3164893.0,3543.0,0.0,3235.0,,,,,,,,,,, +11,https://youtu.be/3xyvofckihk,1,1,{'UCvvba7i-jbpE59FRxIKYJxQ'},{12},youtube,comment,https://www.youtube.com/watch?v=E1A8WUXfVmA,johnny depp being thirsted over by female celebrities!,62610.0,3234281.0,,,,,,3164893.0,3543.0,0.0,3235.0,,,,,,,,,,, +12,https://soundcloud.com/lakeyinspired,1,1,{'UCvvba7i-jbpE59FRxIKYJxQ'},{12},youtube,comment,https://www.youtube.com/watch?v=E1A8WUXfVmA,johnny depp being thirsted over by female celebrities!,62610.0,3234281.0,,,,,,3164893.0,3543.0,0.0,3235.0,,,,,,,,,,, +13,https://www.youtube.com/channel/ucomy,1,1,{'UCvvba7i-jbpE59FRxIKYJxQ'},{12},youtube,comment,https://www.youtube.com/watch?v=E1A8WUXfVmA,johnny depp being thirsted over by female celebrities!,62610.0,3234281.0,,,,,,3164893.0,3543.0,0.0,3235.0,,,,,,,,,,, +14,https://youtu.be/vnacmhsdrfe,1,1,{'UCvvba7i-jbpE59FRxIKYJxQ'},{12},youtube,comment,https://www.youtube.com/watch?v=E1A8WUXfVmA,johnny depp being thirsted over by female celebrities!,62610.0,3234281.0,,,,,,3164893.0,3543.0,0.0,3235.0,,,,,,,,,,, +15,http://www.youtube.com/c/observewithlogan?sub_confirmation=1,1,1,{'UCzMvqwt21xqm7Fg5Uo3lsRQ'},{8},youtube,comment,https://www.youtube.com/watch?v=hQFFm_X2lps,body language analyst reacts to amber heard's cringe deposition | faces episode 15,131103.0,2914030.0,,,,,,2762734.0,2611.0,0.0,17582.0,,,,,,,,,,, +16,https://teespring.com/stores/observe-4,1,1,{'UCzMvqwt21xqm7Fg5Uo3lsRQ'},{8},youtube,comment,https://www.youtube.com/watch?v=hQFFm_X2lps,body language analyst reacts to amber heard's cringe deposition | faces episode 15,131103.0,2914030.0,,,,,,2762734.0,2611.0,0.0,17582.0,,,,,,,,,,, +17,https://www.eiagroup.com/observe,1,1,{'UCzMvqwt21xqm7Fg5Uo3lsRQ'},{8},youtube,comment,https://www.youtube.com/watch?v=hQFFm_X2lps,body language analyst reacts to amber heard's cringe deposition | faces episode 15,131103.0,2914030.0,,,,,,2762734.0,2611.0,0.0,17582.0,,,,,,,,,,, +18,https://www.patreon.com/observeentertainment,1,1,{'UCzMvqwt21xqm7Fg5Uo3lsRQ'},{8},youtube,comment,https://www.youtube.com/watch?v=hQFFm_X2lps,body language analyst reacts to amber heard's cringe deposition | faces episode 15,131103.0,2914030.0,,,,,,2762734.0,2611.0,0.0,17582.0,,,,,,,,,,, +19,https://soundcloud.com/amariamusique,1,1,{'UCzMvqwt21xqm7Fg5Uo3lsRQ'},{8},youtube,comment,https://www.youtube.com/watch?v=hQFFm_X2lps,body language analyst reacts to amber heard's cringe deposition | faces episode 15,131103.0,2914030.0,,,,,,2762734.0,2611.0,0.0,17582.0,,,,,,,,,,, +20,http://bit.ly/funky-souls,1,1,{'UCzMvqwt21xqm7Fg5Uo3lsRQ'},{8},youtube,comment,https://www.youtube.com/watch?v=hQFFm_X2lps,body language analyst reacts to amber heard's cringe deposition | faces episode 15,131103.0,2914030.0,,,,,,2762734.0,2611.0,0.0,17582.0,,,,,,,,,,, +21,https://youtu.be/jfmcyqkf-ee,1,1,{'UCzMvqwt21xqm7Fg5Uo3lsRQ'},{8},youtube,comment,https://www.youtube.com/watch?v=hQFFm_X2lps,body language analyst reacts to amber heard's cringe deposition | faces episode 15,131103.0,2914030.0,,,,,,2762734.0,2611.0,0.0,17582.0,,,,,,,,,,, +22,http://www.audibletrial.com/observe,1,1,{'UCzMvqwt21xqm7Fg5Uo3lsRQ'},{8},youtube,comment,https://www.youtube.com/watch?v=hQFFm_X2lps,body language analyst reacts to amber heard's cringe deposition | faces episode 15,131103.0,2914030.0,,,,,,2762734.0,2611.0,0.0,17582.0,,,,,,,,,,, +23,https://www.dailymail.co.uk/news/article-7966723/amber-heard-ridicules-johnny-depp-claiming-hes-domestic-violence-victim.html,1,1,"('UCKwY6wt3swWB3a2NJyE6qpA',)",{1},youtube,comment,https://www.youtube.com/watch?v=Cg9SvQSMnoE,johnny depp & amber heard: abuser amber tells johnny nobody will believe him! new uncensored audio!,64420.0,2760197.0,,,,,,2676915.0,1548.0,0.0,17314.0,,,,,,,,,,, +24,https://youtu.be/aca0kwohtqq,7,3,"{'UCSEPQ3deCXfo2D-fzU5xyVg', 'UCg0C-N_MPYYOXyF4T3jMxNQ', 'UCCdicbO4cLE4s1wbXjJSuSg'}","{2, 5, 12, 4}",youtube,comment,https://www.youtube.com/watch?v=Cg9SvQSMnoE,johnny depp & amber heard: abuser amber tells johnny nobody will believe him! new uncensored audio!,64420.0,2760197.0,,,,,,2676915.0,1548.0,0.0,17314.0,,,,,,,,,,, +25,https://www.dailymail.co.uk/news/article-7966723/amber-heard-ridicules-johnny-depp-claiming-hes-domestic-violence-victim.html,5,4,"{'UC7kPcKTWb4Wf3ql9TivVRoA', 'UCg0C-N_MPYYOXyF4T3jMxNQ', 'UCSFy-1JrpZf0tFlRZfo-Rvw', 'UCC_0vyFTKk1Nlodo4QsiQkw'}","{2, 4, 16, 22, 27}",youtube,comment,https://www.youtube.com/watch?v=Cg9SvQSMnoE,johnny depp & amber heard: abuser amber tells johnny nobody will believe him! new uncensored audio!,64420.0,2760197.0,,,,,,2676915.0,1548.0,0.0,17314.0,,,,,,,,,,, +26,https://youtu.be/mn1b-h7i0ne,1,1,{'UCg0C-N_MPYYOXyF4T3jMxNQ'},{4},youtube,comment,https://www.youtube.com/watch?v=Cg9SvQSMnoE,johnny depp & amber heard: abuser amber tells johnny nobody will believe him! new uncensored audio!,64420.0,2760197.0,,,,,,2676915.0,1548.0,0.0,17314.0,,,,,,,,,,, +27,https://youtu.be/mwufyo3ncas,1,1,{'UCg0C-N_MPYYOXyF4T3jMxNQ'},{4},youtube,comment,https://www.youtube.com/watch?v=Cg9SvQSMnoE,johnny depp & amber heard: abuser amber tells johnny nobody will believe him! new uncensored audio!,64420.0,2760197.0,,,,,,2676915.0,1548.0,0.0,17314.0,,,,,,,,,,, +28,https://twitter.com/informoverload,32,1,{'UC-NINtNMPM75eaqh07RCy_Q'},"{9, 12, 6, 7}",youtube,comment,https://www.youtube.com/watch?v=kISALzjLUZY,second leaked audio of amber heard and johnny depp released,27340.0,1773553.0,,,,,,1742052.0,903.0,0.0,3258.0,,,,,,,,,,, +29,https://www.instagram.com/themediabay/,2,1,{'UC-NINtNMPM75eaqh07RCy_Q'},{7},youtube,comment,https://www.youtube.com/watch?v=kISALzjLUZY,second leaked audio of amber heard and johnny depp released,27340.0,1773553.0,,,,,,1742052.0,903.0,0.0,3258.0,,,,,,,,,,, +30,http://bit.ly/2xb5cqa,33,1,{'UC-NINtNMPM75eaqh07RCy_Q'},"{5, 6, 7, 9, 12}",youtube,comment,https://www.youtube.com/watch?v=kISALzjLUZY,second leaked audio of amber heard and johnny depp released,27340.0,1773553.0,,,,,,1742052.0,903.0,0.0,3258.0,,,,,,,,,,, +31,http://instagram.com/informoverload,24,1,{'UC-NINtNMPM75eaqh07RCy_Q'},"{5, 6, 7, 9, 12}",youtube,comment,https://www.youtube.com/watch?v=kISALzjLUZY,second leaked audio of amber heard and johnny depp released,27340.0,1773553.0,,,,,,1742052.0,903.0,0.0,3258.0,,,,,,,,,,, +32,https://www.youtube.com/watch?v=ktbhbqvguoa&list=pljwoov1yyb46xc4lbe1runjf3gs1uwa30,23,1,{'UC-NINtNMPM75eaqh07RCy_Q'},"{5, 6, 7, 9, 12}",youtube,comment,https://www.youtube.com/watch?v=kISALzjLUZY,second leaked audio of amber heard and johnny depp released,27340.0,1773553.0,,,,,,1742052.0,903.0,0.0,3258.0,,,,,,,,,,, +33,http://instagram.com/charlaychaplin,13,1,{'UC-NINtNMPM75eaqh07RCy_Q'},"{5, 6, 7}",youtube,comment,https://www.youtube.com/watch?v=kISALzjLUZY,second leaked audio of amber heard and johnny depp released,27340.0,1773553.0,,,,,,1742052.0,903.0,0.0,3258.0,,,,,,,,,,, +34,https://dailym.ai/37cnbxv,1,1,{'UC-NINtNMPM75eaqh07RCy_Q'},{7},youtube,comment,https://www.youtube.com/watch?v=kISALzjLUZY,second leaked audio of amber heard and johnny depp released,27340.0,1773553.0,,,,,,1742052.0,903.0,0.0,3258.0,,,,,,,,,,, +35,https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1,2,1,{'UCbiT0LUIbQj6CQScvWHJeKQ'},{2},youtube,comment,https://www.youtube.com/watch?v=74bDLtT6Khw,10 celebrities who defended johnny depp against amber heard...,53582.0,1635309.0,,,,,,1576174.0,1292.0,0.0,4261.0,,,,,,,,,,, +36,https://support.google.com/youtube/answer/1620498?hl=e,2,1,{'UCbiT0LUIbQj6CQScvWHJeKQ'},{2},youtube,comment,https://www.youtube.com/watch?v=74bDLtT6Khw,10 celebrities who defended johnny depp against amber heard...,53582.0,1635309.0,,,,,,1576174.0,1292.0,0.0,4261.0,,,,,,,,,,, +37,https://www.youtube.com/channel/ucg0c-n_mpyyoxyf4t3jmxnq,1,1,"('UCoZWWgdgIyDuhjnu3qsTI0w',)",{1},youtube,comment,https://www.youtube.com/watch?v=NCZUqJc-jhU,johnny depp & amber heard: the truth and timeline of the case,27087.0,1513883.0,,,,,,1481619.0,593.0,0.0,4584.0,,,,,,,,,,, +38,https://www.youtube.com/channel/ucg0c-n_mpyyoxyf4t3jmxnq,7,6,"{'UCGl9hxFXep_3KMe662E_pzQ', 'UCbbas7CiflwZ_FWCQHDXoWg', 'UC5iyvTygt1LeRLaf2hZt0nw', 'UCAk03rcNVtLK1_LlgRTOh2w', 'UC1nJzvNaB_ql4RHrzgozrQQ', 'UCOp3GgtzNUadFlYDCKv2_5g'}","{2, 3, 4, 8, 9}",youtube,comment,https://www.youtube.com/watch?v=NCZUqJc-jhU,johnny depp & amber heard: the truth and timeline of the case,27087.0,1513883.0,,,,,,1481619.0,593.0,0.0,4584.0,,,,,,,,,,, +39,https://www.instagram.com/jadoredepp/,1,1,{'UCOp3GgtzNUadFlYDCKv2_5g'},{3},youtube,comment,https://www.youtube.com/watch?v=NCZUqJc-jhU,johnny depp & amber heard: the truth and timeline of the case,27087.0,1513883.0,,,,,,1481619.0,593.0,0.0,4584.0,,,,,,,,,,, +40,https://twitter.com/winonasrider,1,1,{'UCOp3GgtzNUadFlYDCKv2_5g'},{3},youtube,comment,https://www.youtube.com/watch?v=NCZUqJc-jhU,johnny depp & amber heard: the truth and timeline of the case,27087.0,1513883.0,,,,,,1481619.0,593.0,0.0,4584.0,,,,,,,,,,, +41,https://www.facebook.com/twoguysonecouch/,3,1,{'UCaiVt4r6YLPzJVgr7pOmD6w'},"{5, 7}",youtube,comment,https://www.youtube.com/watch?v=JOP9nmzKDww,woketivists get it wrong | johnny depp & amber heard audio leak,61128.0,1502430.0,,,,,,1431956.0,468.0,0.0,8878.0,,,,,,,,,,, +42,https://www.youtube.com/user/iprojectatlas,3,1,{'UCaiVt4r6YLPzJVgr7pOmD6w'},"{5, 7}",youtube,comment,https://www.youtube.com/watch?v=JOP9nmzKDww,woketivists get it wrong | johnny depp & amber heard audio leak,61128.0,1502430.0,,,,,,1431956.0,468.0,0.0,8878.0,,,,,,,,,,, +43,https://www.enkreprinte.com/collections/aba-and-preach,3,1,{'UCaiVt4r6YLPzJVgr7pOmD6w'},"{5, 7}",youtube,comment,https://www.youtube.com/watch?v=JOP9nmzKDww,woketivists get it wrong | johnny depp & amber heard audio leak,61128.0,1502430.0,,,,,,1431956.0,468.0,0.0,8878.0,,,,,,,,,,, +44,https://www.youtube.com/watch?v=aca0kwohtqq,4,4,"{'UCAk03rcNVtLK1_LlgRTOh2w', 'UChkjZGZ2RPflLwYVjXlgJGg', 'UCaiVt4r6YLPzJVgr7pOmD6w', 'UCckrCVD_V9pM8ZV8M29gWuA'}","{9, 5, 6}",youtube,comment,https://www.youtube.com/watch?v=JOP9nmzKDww,woketivists get it wrong | johnny depp & amber heard audio leak,61128.0,1502430.0,,,,,,1431956.0,468.0,0.0,8878.0,,,,,,,,,,, +45,https://www.patreon.com/user?u=4946249,3,1,{'UCaiVt4r6YLPzJVgr7pOmD6w'},"{5, 7}",youtube,comment,https://www.youtube.com/watch?v=JOP9nmzKDww,woketivists get it wrong | johnny depp & amber heard audio leak,61128.0,1502430.0,,,,,,1431956.0,468.0,0.0,8878.0,,,,,,,,,,, +46,https://youtu.be/6q9xjn3s8ww,1,1,{'UCg0C-N_MPYYOXyF4T3jMxNQ'},{2},youtube,comment,https://www.youtube.com/watch?v=eWijmDzZeJU,johnny depp & amber heard case update: amber's parents sided with johnny? - new texts & evidence!! -,31977.0,1490376.0,,,,,,1451680.0,542.0,0.0,6177.0,,,,,,,,,,, +47,https://www.fairfaxcounty.gov/circuit/high-profile-cases,2,2,"{'UCJZ4rcJZTpZx0EcgD3T5lLQ', 'UCg0C-N_MPYYOXyF4T3jMxNQ'}","{16, 2}",youtube,comment,https://www.youtube.com/watch?v=eWijmDzZeJU,johnny depp & amber heard case update: amber's parents sided with johnny? - new texts & evidence!! -,31977.0,1490376.0,,,,,,1451680.0,542.0,0.0,6177.0,,,,,,,,,,, +48,https://www.fairfaxcounty.gov/circuit/high-profile-cases,1,1,{'UCA48iKLTqY_BZpQ6Uk5bjGg'},{12},youtube,comment,https://www.youtube.com/watch?v=eWijmDzZeJU,johnny depp & amber heard case update: amber's parents sided with johnny? - new texts & evidence!! -,31977.0,1490376.0,,,,,,1451680.0,542.0,0.0,6177.0,,,,,,,,,,, +49,https://instagram.com/phillydefranco/,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +50,http://beautifulbastard.com,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +51,http://defrancoelite.com,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +52,https://phil.chrono.gg/,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +53,https://www.cbssports.com/nfl/news/2020-super-bowl-commercials-rewatch-the-ads-that-ran-during-super-bowl-liv-on-sunday/,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +54,https://youtu.be/b1d35hammr0,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +55,http://twitter.com/phillyd,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +56,https://roguerocket.com/2020/02/03/nyt-report-victorias-secret,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +57,http://anchor.fm/aconversationwith,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +58,https://variety.com/2020/film/news/hamilton-movie-lin-manuel-miranda-2-1203490645/,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +59,https://youtu.be/pilcn6vo_ru,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +60,https://youtu.be/h8rtb1xjuoy,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +61,https://mvmt.cc/defranco,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +62,https://youtu.be/uehtt2rdxxc,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +63,https://youtu.be/elinlewtw6y,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +64,https://roguerocket.com/2020/02/03/countries-impose-travel-restrictions-coronavirus/,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +65,https://fivethirtyeight.com/features/how-iowas-three-different-votes-could-affect-who-wins/,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +66,https://twitter.com/amjoyshow/status/1223647822614007808?s=20,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +67,https://twitter.com/theroguerocket/status/1224437937518985216?s=20,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +68,https://roguerocket.com/2020/02/03/woman-cancer-prison-theft/,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +69,https://roguerocket.com/2020/02/03/depp-heard/,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +70,http://shopdefranco.com,1,1,{'UClFSU9_bUb4Rc6OYfTt5SPw'},{22},youtube,comment,https://www.youtube.com/watch?v=T5PKXaMpKzo,"wow! leaked johnny depp amber heard audio sparks outrage, iowa caucus confusion, & coronavirus news",55862.0,1443506.0,,,,,,1378923.0,1681.0,0.0,7040.0,,,,,,,,,,, +71,http://dailymail.co.uk/mobile,5,1,{'UCw3fku0sH3qA3c3pZeJwdAw'},{9},youtube,comment,https://www.youtube.com/watch?v=w9D6x3VAdBw,"amber heard to johnny depp: 'i do remember, i did mean to hit you'",21366.0,1405723.0,,,,,,1380055.0,333.0,0.0,3969.0,,,,,,,,,,, +72,https://www.snapchat.com/discover/daily-mail/8392137033,5,1,{'UCw3fku0sH3qA3c3pZeJwdAw'},{9},youtube,comment,https://www.youtube.com/watch?v=w9D6x3VAdBw,"amber heard to johnny depp: 'i do remember, i did mean to hit you'",21366.0,1405723.0,,,,,,1380055.0,333.0,0.0,3969.0,,,,,,,,,,, +73,http://pinterest.co.uk/dailymail,5,1,{'UCw3fku0sH3qA3c3pZeJwdAw'},{9},youtube,comment,https://www.youtube.com/watch?v=w9D6x3VAdBw,"amber heard to johnny depp: 'i do remember, i did mean to hit you'",21366.0,1405723.0,,,,,,1380055.0,333.0,0.0,3969.0,,,,,,,,,,, +74,https://plus.google.com/+dailymail,5,1,{'UCw3fku0sH3qA3c3pZeJwdAw'},{9},youtube,comment,https://www.youtube.com/watch?v=w9D6x3VAdBw,"amber heard to johnny depp: 'i do remember, i did mean to hit you'",21366.0,1405723.0,,,,,,1380055.0,333.0,0.0,3969.0,,,,,,,,,,, +75,http://instagram.com/dailymail,5,1,{'UCw3fku0sH3qA3c3pZeJwdAw'},{9},youtube,comment,https://www.youtube.com/watch?v=w9D6x3VAdBw,"amber heard to johnny depp: 'i do remember, i did mean to hit you'",21366.0,1405723.0,,,,,,1380055.0,333.0,0.0,3969.0,,,,,,,,,,, +76,http://facebook.com/dailymail,5,1,{'UCw3fku0sH3qA3c3pZeJwdAw'},{9},youtube,comment,https://www.youtube.com/watch?v=w9D6x3VAdBw,"amber heard to johnny depp: 'i do remember, i did mean to hit you'",21366.0,1405723.0,,,,,,1380055.0,333.0,0.0,3969.0,,,,,,,,,,, +77,http://twitter.com/mailonline,5,1,{'UCw3fku0sH3qA3c3pZeJwdAw'},{9},youtube,comment,https://www.youtube.com/watch?v=w9D6x3VAdBw,"amber heard to johnny depp: 'i do remember, i did mean to hit you'",21366.0,1405723.0,,,,,,1380055.0,333.0,0.0,3969.0,,,,,,,,,,, +78,http://www.dailymail.co.uk/video/newsalerts/video-2214782/video-amber-heard-johnny-depp-remember-did-mean-hit-you.html,1,1,{'UCw3fku0sH3qA3c3pZeJwdAw'},{9},youtube,comment,https://www.youtube.com/watch?v=w9D6x3VAdBw,"amber heard to johnny depp: 'i do remember, i did mean to hit you'",21366.0,1405723.0,,,,,,1380055.0,333.0,0.0,3969.0,,,,,,,,,,, +79,http://www.dailymail.co.uk/news/article-8544729/amber-heard-says-johnny-depp-pushed-kate-moss-stairs.html,1,1,{'UCw3fku0sH3qA3c3pZeJwdAw'},{9},youtube,comment,https://www.youtube.com/watch?v=w9D6x3VAdBw,"amber heard to johnny depp: 'i do remember, i did mean to hit you'",21366.0,1405723.0,,,,,,1380055.0,333.0,0.0,3969.0,,,,,,,,,,, +80,https://www.youtube.com/watch?v=o3dbfiow_mk&t=29s,1,1,"('UCAIycRkUrsSP73CZIYFLCWw',)",{1},youtube,comment,https://www.youtube.com/watch?v=WdmYGt5Lwfw,johnny depp cuenta en su declaracion como amber heard le corto el dedo con una botella,23078.0,1391769.0,,,,,,1366220.0,352.0,0.0,2119.0,,,,,,,,,,, +81,https://tus10segundos.com/products/delcarajotv,5,1,{'UCuWeBHxVe6C69JTBpiY-Y8Q'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=mDGm8MTQw-M,amber heard pierde el juicio: ¡se confirma que mintió sobre johnny depp y es abucheada!,52751.0,1385037.0,,,,,,1326751.0,1257.0,0.0,4278.0,,,,,,,,,,, +82,http://instagram.com/juanitosayoficial,8,1,{'UCuWeBHxVe6C69JTBpiY-Y8Q'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=mDGm8MTQw-M,amber heard pierde el juicio: ¡se confirma que mintió sobre johnny depp y es abucheada!,52751.0,1385037.0,,,,,,1326751.0,1257.0,0.0,4278.0,,,,,,,,,,, +83,https://youtube.com/channel/ucuwebhxve6c69jtbpiy-y8q/join,8,1,{'UCuWeBHxVe6C69JTBpiY-Y8Q'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=mDGm8MTQw-M,amber heard pierde el juicio: ¡se confirma que mintió sobre johnny depp y es abucheada!,52751.0,1385037.0,,,,,,1326751.0,1257.0,0.0,4278.0,,,,,,,,,,, +84,http://twitter.com/juanitosay,8,1,{'UCuWeBHxVe6C69JTBpiY-Y8Q'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=mDGm8MTQw-M,amber heard pierde el juicio: ¡se confirma que mintió sobre johnny depp y es abucheada!,52751.0,1385037.0,,,,,,1326751.0,1257.0,0.0,4278.0,,,,,,,,,,, +85,http://delcarajo.net,8,1,{'UCuWeBHxVe6C69JTBpiY-Y8Q'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=mDGm8MTQw-M,amber heard pierde el juicio: ¡se confirma que mintió sobre johnny depp y es abucheada!,52751.0,1385037.0,,,,,,1326751.0,1257.0,0.0,4278.0,,,,,,,,,,, +86,https://www.courttv.com/title/court-tv-live-stream-web/?trk=youtube,3,1,{'UCo5E9pEhK_9kWG7-5HHcyRg'},{4},youtube,comment,https://www.youtube.com/watch?v=iT2Kiyt7-rk,amber heard on the stand in johnny depp's libel case,9287.0,1334391.0,,,,,,1287083.0,28695.0,0.0,9326.0,,,,,,,,,,, +87,https://www.courttv.com/programming/trial-archives/?trk=youtube,3,1,{'UCo5E9pEhK_9kWG7-5HHcyRg'},{4},youtube,comment,https://www.youtube.com/watch?v=iT2Kiyt7-rk,amber heard on the stand in johnny depp's libel case,9287.0,1334391.0,,,,,,1287083.0,28695.0,0.0,9326.0,,,,,,,,,,, +88,https://www.courttv.com/where-to-watch/?trk=youtube,3,1,{'UCo5E9pEhK_9kWG7-5HHcyRg'},{4},youtube,comment,https://www.youtube.com/watch?v=iT2Kiyt7-rk,amber heard on the stand in johnny depp's libel case,9287.0,1334391.0,,,,,,1287083.0,28695.0,0.0,9326.0,,,,,,,,,,, +89,https://court.tv/live,1,1,{'UCo5E9pEhK_9kWG7-5HHcyRg'},{4},youtube,comment,https://www.youtube.com/watch?v=iT2Kiyt7-rk,amber heard on the stand in johnny depp's libel case,9287.0,1334391.0,,,,,,1287083.0,28695.0,0.0,9326.0,,,,,,,,,,, +90,http://www.patreon.com/dalasreview,1,1,"('UCUqvWUXerEGX33z3wmOnPrw',)",{1},youtube,comment,https://www.youtube.com/watch?v=RNxzI_PyNfQ,la injusticia con johnny depp y su sentencia 😡 explico los motivos 👉 te enfadará amber heard 😤,123795.0,1143531.0,,,,,,1006768.0,1662.0,0.0,11306.0,,,,,,,,,,, +91,https://amzn.to/2qxdg8b,1,1,{'UCgRr2pZaGeaZVN6LfbvQk9w'},{5},youtube,comment,https://www.youtube.com/watch?v=RNxzI_PyNfQ,la injusticia con johnny depp y su sentencia 😡 explico los motivos 👉 te enfadará amber heard 😤,123795.0,1143531.0,,,,,,1006768.0,1662.0,0.0,11306.0,,,,,,,,,,, +92,https://amzn.to/2dzjqrd,1,1,{'UCgRr2pZaGeaZVN6LfbvQk9w'},{5},youtube,comment,https://www.youtube.com/watch?v=RNxzI_PyNfQ,la injusticia con johnny depp y su sentencia 😡 explico los motivos 👉 te enfadará amber heard 😤,123795.0,1143531.0,,,,,,1006768.0,1662.0,0.0,11306.0,,,,,,,,,,, +93,https://amzn.to/36ribff,1,1,{'UCgRr2pZaGeaZVN6LfbvQk9w'},{5},youtube,comment,https://www.youtube.com/watch?v=RNxzI_PyNfQ,la injusticia con johnny depp y su sentencia 😡 explico los motivos 👉 te enfadará amber heard 😤,123795.0,1143531.0,,,,,,1006768.0,1662.0,0.0,11306.0,,,,,,,,,,, +94,https://amzn.to/344rqle,1,1,{'UCgRr2pZaGeaZVN6LfbvQk9w'},{5},youtube,comment,https://www.youtube.com/watch?v=RNxzI_PyNfQ,la injusticia con johnny depp y su sentencia 😡 explico los motivos 👉 te enfadará amber heard 😤,123795.0,1143531.0,,,,,,1006768.0,1662.0,0.0,11306.0,,,,,,,,,,, +95,http://www.patreon.com/dalasreview,1,1,{'UCgRr2pZaGeaZVN6LfbvQk9w'},{5},youtube,comment,https://www.youtube.com/watch?v=RNxzI_PyNfQ,la injusticia con johnny depp y su sentencia 😡 explico los motivos 👉 te enfadará amber heard 😤,123795.0,1143531.0,,,,,,1006768.0,1662.0,0.0,11306.0,,,,,,,,,,, +96,https://www.youtube.com/watch?v=mm-vikcg17o&t=20s,1,1,{'UC65EDzqpOAQZLBmAdHAnZng'},{10},youtube,comment,https://www.youtube.com/watch?v=4r8UJv97GjM,body language proof amber heard is the worst actor in the world lying about johnny depp,54180.0,1037567.0,,,,,,974945.0,812.0,0.0,7630.0,,,,,,,,,,, +97,https://www.derekvanschaik.com,2,2,"{'UCGof-YmYH1e-Hu9tmH39_rw', 'UC65EDzqpOAQZLBmAdHAnZng'}","{9, 10}",youtube,comment,https://www.youtube.com/watch?v=4r8UJv97GjM,body language proof amber heard is the worst actor in the world lying about johnny depp,54180.0,1037567.0,,,,,,974945.0,812.0,0.0,7630.0,,,,,,,,,,, +98,https://www.derekvanschaik.com/equipment,2,2,"{'UCGof-YmYH1e-Hu9tmH39_rw', 'UC65EDzqpOAQZLBmAdHAnZng'}","{9, 10}",youtube,comment,https://www.youtube.com/watch?v=4r8UJv97GjM,body language proof amber heard is the worst actor in the world lying about johnny depp,54180.0,1037567.0,,,,,,974945.0,812.0,0.0,7630.0,,,,,,,,,,, +99,https://www.shop.derekvanschaik.com,2,2,"{'UCGof-YmYH1e-Hu9tmH39_rw', 'UC65EDzqpOAQZLBmAdHAnZng'}","{9, 10}",youtube,comment,https://www.youtube.com/watch?v=4r8UJv97GjM,body language proof amber heard is the worst actor in the world lying about johnny depp,54180.0,1037567.0,,,,,,974945.0,812.0,0.0,7630.0,,,,,,,,,,, +100,https://www.youtube.com/shaked,2,2,"{'UCGof-YmYH1e-Hu9tmH39_rw', 'UC65EDzqpOAQZLBmAdHAnZng'}","{9, 10}",youtube,comment,https://www.youtube.com/watch?v=4r8UJv97GjM,body language proof amber heard is the worst actor in the world lying about johnny depp,54180.0,1037567.0,,,,,,974945.0,812.0,0.0,7630.0,,,,,,,,,,, +101,https://www.instagram.com/derekvanschaik,2,2,"{'UCGof-YmYH1e-Hu9tmH39_rw', 'UC65EDzqpOAQZLBmAdHAnZng'}","{9, 10}",youtube,comment,https://www.youtube.com/watch?v=4r8UJv97GjM,body language proof amber heard is the worst actor in the world lying about johnny depp,54180.0,1037567.0,,,,,,974945.0,812.0,0.0,7630.0,,,,,,,,,,, +102,https://www.facebook.com/derekvanschaik,2,2,"{'UCGof-YmYH1e-Hu9tmH39_rw', 'UC65EDzqpOAQZLBmAdHAnZng'}","{9, 10}",youtube,comment,https://www.youtube.com/watch?v=4r8UJv97GjM,body language proof amber heard is the worst actor in the world lying about johnny depp,54180.0,1037567.0,,,,,,974945.0,812.0,0.0,7630.0,,,,,,,,,,, +103,https://www.youtube.com/watch?v=o_n2trt-uaq&t=26s,1,1,{'UC65EDzqpOAQZLBmAdHAnZng'},{10},youtube,comment,https://www.youtube.com/watch?v=4r8UJv97GjM,body language proof amber heard is the worst actor in the world lying about johnny depp,54180.0,1037567.0,,,,,,974945.0,812.0,0.0,7630.0,,,,,,,,,,, +104,https://www.youtube.com/channel/ucgof-ymyh1e-hu9tmh39_rw,1,1,{'UC65EDzqpOAQZLBmAdHAnZng'},{10},youtube,comment,https://www.youtube.com/watch?v=4r8UJv97GjM,body language proof amber heard is the worst actor in the world lying about johnny depp,54180.0,1037567.0,,,,,,974945.0,812.0,0.0,7630.0,,,,,,,,,,, +105,https://www.twitter.com/derekvanschaik,2,2,"{'UCGof-YmYH1e-Hu9tmH39_rw', 'UC65EDzqpOAQZLBmAdHAnZng'}","{9, 10}",youtube,comment,https://www.youtube.com/watch?v=4r8UJv97GjM,body language proof amber heard is the worst actor in the world lying about johnny depp,54180.0,1037567.0,,,,,,974945.0,812.0,0.0,7630.0,,,,,,,,,,, +106,https://www.patreon.com/macamtv,1,1,{'UCj8gILpOgOIX6k3NExdky9Q'},{2},youtube,comment,https://www.youtube.com/watch?v=1Q1S8jve-2o,"aquaman 2 (2022) teaser trailer - jason momoa, amber heard (fan made)",8579.0,1029729.0,,,,,,1017877.0,3058.0,0.0,215.0,,,,,,,,,,, +107,youtube.com/c/macamtv,1,1,{'UCj8gILpOgOIX6k3NExdky9Q'},{2},youtube,comment,https://www.youtube.com/watch?v=1Q1S8jve-2o,"aquaman 2 (2022) teaser trailer - jason momoa, amber heard (fan made)",8579.0,1029729.0,,,,,,1017877.0,3058.0,0.0,215.0,,,,,,,,,,, +108,https://soydecine.com/johnny-depp-fue-maltratado-por-amber-heard-audio-filtrado/,1,1,"('UC_hMVMyWaeiBGB9jgJiSyqA',)",{1},youtube,comment,https://www.youtube.com/watch?v=53ZS1RSC9Cw,johnny depp y amber heard - audio que demuestra que ella le maltrataba,13202.0,982278.0,,,,,,965421.0,332.0,0.0,3323.0,,,,,,,,,,, +109,https://www.nickiswift.com/202178/the-real-reason-amber-heard-could-end-up-behind-bars/,1,1,"('UC1DGpYiEiqBrQtYXFbLhMVQ',)",{1},youtube,comment,https://www.youtube.com/watch?v=6qEgXqmSwl8,the real reason amber heard could end up behind bars,10285.0,813143.0,,,,,,799887.0,295.0,0.0,2676.0,,,,,,,,,,, +110,https://teespring.com/stores/hacker-goods,16,1,{'UCeooMl4PFAM9kLPHvavt2KQ'},"{5, 6, 7, 8, 16}",youtube,comment,https://www.youtube.com/watch?v=pJD5qr-DV10,joe rogan called out amber heard 4 years ago and nailed it!,12397.0,779437.0,,,,,,764662.0,337.0,0.0,2041.0,,,,,,,,,,, +111,https://www.patreon.com/user?u=11797644,11,1,{'UCeooMl4PFAM9kLPHvavt2KQ'},"{16, 8, 7}",youtube,comment,https://www.youtube.com/watch?v=pJD5qr-DV10,joe rogan called out amber heard 4 years ago and nailed it!,12397.0,779437.0,,,,,,764662.0,337.0,0.0,2041.0,,,,,,,,,,, +112,https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1,14,1,{'UCeooMl4PFAM9kLPHvavt2KQ'},"{8, 5, 6, 7}",youtube,comment,https://www.youtube.com/watch?v=pJD5qr-DV10,joe rogan called out amber heard 4 years ago and nailed it!,12397.0,779437.0,,,,,,764662.0,337.0,0.0,2041.0,,,,,,,,,,, +113,https://christhead.bandcamp.com/releases,15,1,{'UCeooMl4PFAM9kLPHvavt2KQ'},"{16, 8, 6, 7}",youtube,comment,https://www.youtube.com/watch?v=pJD5qr-DV10,joe rogan called out amber heard 4 years ago and nailed it!,12397.0,779437.0,,,,,,764662.0,337.0,0.0,2041.0,,,,,,,,,,, +114,https://www.youtube.com/watch?v=2walmc4jcoa,16,1,{'UCeooMl4PFAM9kLPHvavt2KQ'},"{5, 6, 7, 8, 16}",youtube,comment,https://www.youtube.com/watch?v=pJD5qr-DV10,joe rogan called out amber heard 4 years ago and nailed it!,12397.0,779437.0,,,,,,764662.0,337.0,0.0,2041.0,,,,,,,,,,, +115,https://www.youtube.com/watch?v=lgljyjmyce0,10,1,{'UCeooMl4PFAM9kLPHvavt2KQ'},"{8, 5, 7}",youtube,comment,https://www.youtube.com/watch?v=pJD5qr-DV10,joe rogan called out amber heard 4 years ago and nailed it!,12397.0,779437.0,,,,,,764662.0,337.0,0.0,2041.0,,,,,,,,,,, +116,https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw,17,2,"{'UCeooMl4PFAM9kLPHvavt2KQ', 'UCP5gBSMw84NLljMLNqa09sQ'}","{5, 6, 39, 7, 8, 16}",youtube,comment,https://www.youtube.com/watch?v=pJD5qr-DV10,joe rogan called out amber heard 4 years ago and nailed it!,12397.0,779437.0,,,,,,764662.0,337.0,0.0,2041.0,,,,,,,,,,, +117,https://www.nickwallis.com/depp-trial,5,3,"{'UCpvj7PNAISuDvWym0ii9fmg', 'UCOp24og-YLLuvUP4yrJ2cJA', 'UC8AGq7bm-x4teGcvQonvnPw'}","{8, 3, 4, 15}",youtube,comment,https://www.youtube.com/watch?v=V7lg69VFSY8,amber heard secretly records johnny depp! then laughs?! finally we see the full video!,11265.0,760147.0,,,,,,744915.0,516.0,0.0,3451.0,,,,,,,,,,, +118,https://www.nickwallis.com/depp-trial,7,2,"{'UC0zMcGW8MNF7VJ7ynQriobw', 'UCcznsgxHHFxREHlQtQK0u7g'}",{2},youtube,comment,https://www.youtube.com/watch?v=V7lg69VFSY8,amber heard secretly records johnny depp! then laughs?! finally we see the full video!,11265.0,760147.0,,,,,,744915.0,516.0,0.0,3451.0,,,,,,,,,,, +119,https://www.nickwallis.com/depp-trial,1,1,"('UCg0C-N_MPYYOXyF4T3jMxNQ',)",{1},youtube,comment,https://www.youtube.com/watch?v=V7lg69VFSY8,amber heard secretly records johnny depp! then laughs?! finally we see the full video!,11265.0,760147.0,,,,,,744915.0,516.0,0.0,3451.0,,,,,,,,,,, +120,https://youtu.be/cg9svqsmnoe,2,1,{'UCg0C-N_MPYYOXyF4T3jMxNQ'},{4},youtube,comment,https://www.youtube.com/watch?v=HwKB80xZdus,johnny depp & amber heard abuse claims: amber caught lying under oath! new audio and video!,20852.0,752559.0,,,,,,724924.0,285.0,0.0,6498.0,,,,,,,,,,, +121,https://youtu.be/pbxtr41zftq,2,1,{'UCg0C-N_MPYYOXyF4T3jMxNQ'},"{2, 4}",youtube,comment,https://www.youtube.com/watch?v=HwKB80xZdus,johnny depp & amber heard abuse claims: amber caught lying under oath! new audio and video!,20852.0,752559.0,,,,,,724924.0,285.0,0.0,6498.0,,,,,,,,,,, +122,https://www.dailymail.co.uk/news/article-8118671/amber-heard-admits-smashing-door-johnny-depps-head-clocking-jaw.html,2,2,"{'UCg0C-N_MPYYOXyF4T3jMxNQ', 'UCSFy-1JrpZf0tFlRZfo-Rvw'}","{27, 4}",youtube,comment,https://www.youtube.com/watch?v=HwKB80xZdus,johnny depp & amber heard abuse claims: amber caught lying under oath! new audio and video!,20852.0,752559.0,,,,,,724924.0,285.0,0.0,6498.0,,,,,,,,,,, +123,https://youtu.be/aca0kwohtqq,7,3,"{'UCSEPQ3deCXfo2D-fzU5xyVg', 'UCg0C-N_MPYYOXyF4T3jMxNQ', 'UCCdicbO4cLE4s1wbXjJSuSg'}","{2, 5, 12, 4}",youtube,comment,https://www.youtube.com/watch?v=HwKB80xZdus,johnny depp & amber heard abuse claims: amber caught lying under oath! new audio and video!,20852.0,752559.0,,,,,,724924.0,285.0,0.0,6498.0,,,,,,,,,,, +124,https://www.documentcloud.org/documents/5835867-amber-heard-motion-to-dismiss.html,2,2,"{'UCfupACwUQmP2H6pDehATVXA', 'UCJaqnseWRP6m73Viigzk0Og'}","{24, 5}",youtube,comment,https://www.youtube.com/watch?v=IOpeH2MAU64,johnny depp speaks about his finger injury | important info in description,12158.0,746645.0,,,,,,732577.0,177.0,0.0,1733.0,,,,,,,,,,, +125,https://variety.com/2016/film/news/johnny-depp-hand-injury-amber-heard-fight-1201786023/,1,1,{'UCJaqnseWRP6m73Viigzk0Og'},{5},youtube,comment,https://www.youtube.com/watch?v=IOpeH2MAU64,johnny depp speaks about his finger injury | important info in description,12158.0,746645.0,,,,,,732577.0,177.0,0.0,1733.0,,,,,,,,,,, +126,https://metro.co.uk/2019/04/15/johnny-depp-scrawled-jealous-messages-amber-heard-oil-paint-blood-severing-finger-9204710/amp/,1,1,{'UCJaqnseWRP6m73Viigzk0Og'},{5},youtube,comment,https://www.youtube.com/watch?v=IOpeH2MAU64,johnny depp speaks about his finger injury | important info in description,12158.0,746645.0,,,,,,732577.0,177.0,0.0,1733.0,,,,,,,,,,, +127,https://www.dailymail.co.uk/news/article-3741910/amp/photo-johnny-depp-s-ghastly-finger-cut-tip-fit-rage-wrote-blood-wall-amber-heard-affair-billy-bob-thornton.html,1,1,{'UCJaqnseWRP6m73Viigzk0Og'},{5},youtube,comment,https://www.youtube.com/watch?v=IOpeH2MAU64,johnny depp speaks about his finger injury | important info in description,12158.0,746645.0,,,,,,732577.0,177.0,0.0,1733.0,,,,,,,,,,, +128,https://t.co/yvvnkxrisq,1,1,{'UCJaqnseWRP6m73Viigzk0Og'},{5},youtube,comment,https://www.youtube.com/watch?v=IOpeH2MAU64,johnny depp speaks about his finger injury | important info in description,12158.0,746645.0,,,,,,732577.0,177.0,0.0,1733.0,,,,,,,,,,, +129,http://delcarajo.net,8,1,{'UCuWeBHxVe6C69JTBpiY-Y8Q'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=y636dzTjMrs,el fin de amber heard: ¡abandona hollywood al descubrirse sus mentiras sobre johnny depp!,25642.0,733486.0,,,,,,704756.0,804.0,0.0,2284.0,,,,,,,,,,, +130,http://tus10s.com/delcarajoteve,3,1,{'UCuWeBHxVe6C69JTBpiY-Y8Q'},{5},youtube,comment,https://www.youtube.com/watch?v=y636dzTjMrs,el fin de amber heard: ¡abandona hollywood al descubrirse sus mentiras sobre johnny depp!,25642.0,733486.0,,,,,,704756.0,804.0,0.0,2284.0,,,,,,,,,,, +131,http://instagram.com/juanitosayoficial,8,1,{'UCuWeBHxVe6C69JTBpiY-Y8Q'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=y636dzTjMrs,el fin de amber heard: ¡abandona hollywood al descubrirse sus mentiras sobre johnny depp!,25642.0,733486.0,,,,,,704756.0,804.0,0.0,2284.0,,,,,,,,,,, +132,http://twitter.com/juanitosay,8,1,{'UCuWeBHxVe6C69JTBpiY-Y8Q'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=y636dzTjMrs,el fin de amber heard: ¡abandona hollywood al descubrirse sus mentiras sobre johnny depp!,25642.0,733486.0,,,,,,704756.0,804.0,0.0,2284.0,,,,,,,,,,, +133,https://youtube.com/channel/ucuwebhxve6c69jtbpiy-y8q/join,8,1,{'UCuWeBHxVe6C69JTBpiY-Y8Q'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=y636dzTjMrs,el fin de amber heard: ¡abandona hollywood al descubrirse sus mentiras sobre johnny depp!,25642.0,733486.0,,,,,,704756.0,804.0,0.0,2284.0,,,,,,,,,,, +134,https://www.facebook.com/paraloscuriososcom/,3,1,{'UCAmLNUCJ1PBAjWfIPsPI_Ig'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=iuW76720Pfs,¡johnny depp es inocente! la miserable verdad acerca amber heard,16949.0,724651.0,,,,,,704847.0,531.0,0.0,2324.0,,,,,,,,,,, +135,https://bit.ly/3qf7xeb,2,1,{'UCAmLNUCJ1PBAjWfIPsPI_Ig'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=iuW76720Pfs,¡johnny depp es inocente! la miserable verdad acerca amber heard,16949.0,724651.0,,,,,,704847.0,531.0,0.0,2324.0,,,,,,,,,,, +136,https://www.instagram.com/paraloscuriosos_plc/,3,1,{'UCAmLNUCJ1PBAjWfIPsPI_Ig'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=iuW76720Pfs,¡johnny depp es inocente! la miserable verdad acerca amber heard,16949.0,724651.0,,,,,,704847.0,531.0,0.0,2324.0,,,,,,,,,,, +137,http://www.paraloscuriosos.com/,4,1,{'UCAmLNUCJ1PBAjWfIPsPI_Ig'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=iuW76720Pfs,¡johnny depp es inocente! la miserable verdad acerca amber heard,16949.0,724651.0,,,,,,704847.0,531.0,0.0,2324.0,,,,,,,,,,, +138,https://www.youtube.com/watch?v=zrmw-m2jiys,1,1,{'UCAmLNUCJ1PBAjWfIPsPI_Ig'},{5},youtube,comment,https://www.youtube.com/watch?v=iuW76720Pfs,¡johnny depp es inocente! la miserable verdad acerca amber heard,16949.0,724651.0,,,,,,704847.0,531.0,0.0,2324.0,,,,,,,,,,, +139,http://delcarajo.net,8,1,{'UCuWeBHxVe6C69JTBpiY-Y8Q'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=9A55OE7bqKk,el fin de amber heard: ¡johnny depp siempre fue inocente!,24141.0,707907.0,,,,,,680142.0,709.0,0.0,2915.0,,,,,,,,,,, +140,https://youtube.com/channel/ucuwebhxve6c69jtbpiy-y8q/join,8,1,{'UCuWeBHxVe6C69JTBpiY-Y8Q'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=9A55OE7bqKk,el fin de amber heard: ¡johnny depp siempre fue inocente!,24141.0,707907.0,,,,,,680142.0,709.0,0.0,2915.0,,,,,,,,,,, +141,http://twitter.com/juanitosay,8,1,{'UCuWeBHxVe6C69JTBpiY-Y8Q'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=9A55OE7bqKk,el fin de amber heard: ¡johnny depp siempre fue inocente!,24141.0,707907.0,,,,,,680142.0,709.0,0.0,2915.0,,,,,,,,,,, +142,http://instagram.com/juanitosayoficial,8,1,{'UCuWeBHxVe6C69JTBpiY-Y8Q'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=9A55OE7bqKk,el fin de amber heard: ¡johnny depp siempre fue inocente!,24141.0,707907.0,,,,,,680142.0,709.0,0.0,2915.0,,,,,,,,,,, +143,http://tus10s.com/delcarajoteve,3,1,{'UCuWeBHxVe6C69JTBpiY-Y8Q'},{5},youtube,comment,https://www.youtube.com/watch?v=9A55OE7bqKk,el fin de amber heard: ¡johnny depp siempre fue inocente!,24141.0,707907.0,,,,,,680142.0,709.0,0.0,2915.0,,,,,,,,,,, +144,https://www.patreon.com/crimetalk,1,1,{'UCmvdHLC-w74pqDfnIprOPPw'},{6},youtube,comment,https://www.youtube.com/watch?v=XiuUzvZMyro,amber heard arguing with johnny depp full audio,9233.0,706312.0,,,,,,686559.0,331.0,0.0,10189.0,,,,,,,,,,, +145,http://reischlawfirm.com/,1,1,{'UCmvdHLC-w74pqDfnIprOPPw'},{6},youtube,comment,https://www.youtube.com/watch?v=XiuUzvZMyro,amber heard arguing with johnny depp full audio,9233.0,706312.0,,,,,,686559.0,331.0,0.0,10189.0,,,,,,,,,,, +146,https://teespring.com/stores/scottreischcom-3,1,1,{'UCmvdHLC-w74pqDfnIprOPPw'},{6},youtube,comment,https://www.youtube.com/watch?v=XiuUzvZMyro,amber heard arguing with johnny depp full audio,9233.0,706312.0,,,,,,686559.0,331.0,0.0,10189.0,,,,,,,,,,, +147,https://www.facebook.com/crimetalkafficianado,1,1,{'UCmvdHLC-w74pqDfnIprOPPw'},{6},youtube,comment,https://www.youtube.com/watch?v=XiuUzvZMyro,amber heard arguing with johnny depp full audio,9233.0,706312.0,,,,,,686559.0,331.0,0.0,10189.0,,,,,,,,,,, +148,www.scottreisch.com,1,1,{'UCmvdHLC-w74pqDfnIprOPPw'},{6},youtube,comment,https://www.youtube.com/watch?v=XiuUzvZMyro,amber heard arguing with johnny depp full audio,9233.0,706312.0,,,,,,686559.0,331.0,0.0,10189.0,,,,,,,,,,, +149,http://voirdire.libsyn.com/,1,1,{'UCmvdHLC-w74pqDfnIprOPPw'},{6},youtube,comment,https://www.youtube.com/watch?v=XiuUzvZMyro,amber heard arguing with johnny depp full audio,9233.0,706312.0,,,,,,686559.0,331.0,0.0,10189.0,,,,,,,,,,, +150,http://chng.it/t678nfWmX6,2,1,"(4239258580.0,)",{1},instagram,comment,,"pongan en google : remove amber heard y les sale de los primeros + +http://chng.it/t678nfWmX6",4.0,4.0,,,,,,,,,,,,,,,,,,,, +151,http://chng.it/t678nfWmX6,2,1,"(4239258580.0,)",{1},instagram,comment,,"pongan en google : remove amber heard y les sale de los primeros + +http://chng.it/t678nfWmX6",4.0,4.0,,,,,,,,,,,,,,,,,,,, +152,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=GWUMe-u9zKE,"""you saved me"" johnny depp thanks his supporters for defending him (video)",191932.0,8206898.0,,,,,,3890345.0,2904.0,0.0,18268.0,,,,,,,,,,, +153,https://www.youtube.com/channel/UCbiT0LUIbQj6CQScvWHJeKQ?sub_confirmation=1,31,1,{'UCbiT0LUIbQj6CQScvWHJeKQ'},{2},youtube,comment,https://www.youtube.com/watch?v=GWUMe-u9zKE,"""you saved me"" johnny depp thanks his supporters for defending him (video)",191932.0,8206898.0,,,,,,3890345.0,2904.0,0.0,18268.0,,,,,,,,,,, +154,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=GWUMe-u9zKE,"""you saved me"" johnny depp thanks his supporters for defending him (video)",191932.0,8206898.0,,,,,,3890345.0,2904.0,0.0,18268.0,,,,,,,,,,, +155,https://www.youtube.com/channel/UCbiT0LUIbQj6CQScvWHJeKQ?sub_confirmation=1,31,1,{'UCbiT0LUIbQj6CQScvWHJeKQ'},{2},youtube,comment,https://www.youtube.com/watch?v=GWUMe-u9zKE,"""you saved me"" johnny depp thanks his supporters for defending him (video)",191932.0,8206898.0,,,,,,3890345.0,2904.0,0.0,18268.0,,,,,,,,,,, +156,https://youtu.be/CYlIamQCWJ4,1,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},{6},youtube,comment,https://www.youtube.com/watch?v=siGE-fVUHG4,disney apologizes to johnny depp after this...,28801.0,2735640.0,,,,,,1333325.0,1124.0,0.0,4570.0,,,,,,,,,,, +157,https://youtu.be/dJe8bl_BLDE,1,1,"('UCJPOs6kI_s7YpXgSWIM01ZQ',)",{1},youtube,comment,https://www.youtube.com/watch?v=siGE-fVUHG4,disney apologizes to johnny depp after this...,28801.0,2735640.0,,,,,,1333325.0,1124.0,0.0,4570.0,,,,,,,,,,, +158,https://youtu.be/dJe8bl_BLDE,1,1,"('UCJPOs6kI_s7YpXgSWIM01ZQ',)",{1},youtube,comment,https://www.youtube.com/watch?v=siGE-fVUHG4,disney apologizes to johnny depp after this...,28801.0,2735640.0,,,,,,1333325.0,1124.0,0.0,4570.0,,,,,,,,,,, +159,https://youtu.be/dJe8bl_BLDE,4,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=siGE-fVUHG4,disney apologizes to johnny depp after this...,28801.0,2735640.0,,,,,,1333325.0,1124.0,0.0,4570.0,,,,,,,,,,, +160,https://youtu.be/dJe8bl_BLDE,4,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=siGE-fVUHG4,disney apologizes to johnny depp after this...,28801.0,2735640.0,,,,,,1333325.0,1124.0,0.0,4570.0,,,,,,,,,,, +161,http://tiny.cc/bingewatch,7,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=siGE-fVUHG4,disney apologizes to johnny depp after this...,28801.0,2735640.0,,,,,,1333325.0,1124.0,0.0,4570.0,,,,,,,,,,, +162,http://tiny.cc/bingewatch,7,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=siGE-fVUHG4,disney apologizes to johnny depp after this...,28801.0,2735640.0,,,,,,1333325.0,1124.0,0.0,4570.0,,,,,,,,,,, +163,https://youtu.be/GWUMe-u9zKE,1,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},{6},youtube,comment,https://www.youtube.com/watch?v=siGE-fVUHG4,disney apologizes to johnny depp after this...,28801.0,2735640.0,,,,,,1333325.0,1124.0,0.0,4570.0,,,,,,,,,,, +164,https://youtu.be/GWUMe-u9zKE,1,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},{6},youtube,comment,https://www.youtube.com/watch?v=siGE-fVUHG4,disney apologizes to johnny depp after this...,28801.0,2735640.0,,,,,,1333325.0,1124.0,0.0,4570.0,,,,,,,,,,, +165,https://youtu.be/CYlIamQCWJ4,1,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},{6},youtube,comment,https://www.youtube.com/watch?v=siGE-fVUHG4,disney apologizes to johnny depp after this...,28801.0,2735640.0,,,,,,1333325.0,1124.0,0.0,4570.0,,,,,,,,,,, +166,https://youtu.be/WLgXd5H6Q2A,1,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},{6},youtube,comment,https://www.youtube.com/watch?v=siGE-fVUHG4,disney apologizes to johnny depp after this...,28801.0,2735640.0,,,,,,1333325.0,1124.0,0.0,4570.0,,,,,,,,,,, +167,https://youtu.be/WLgXd5H6Q2A,1,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},{6},youtube,comment,https://www.youtube.com/watch?v=siGE-fVUHG4,disney apologizes to johnny depp after this...,28801.0,2735640.0,,,,,,1333325.0,1124.0,0.0,4570.0,,,,,,,,,,, +168,https://youtu.be/YG2dPHN3NsE,1,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},{6},youtube,comment,https://www.youtube.com/watch?v=siGE-fVUHG4,disney apologizes to johnny depp after this...,28801.0,2735640.0,,,,,,1333325.0,1124.0,0.0,4570.0,,,,,,,,,,, +169,https://youtu.be/YG2dPHN3NsE,1,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},{6},youtube,comment,https://www.youtube.com/watch?v=siGE-fVUHG4,disney apologizes to johnny depp after this...,28801.0,2735640.0,,,,,,1333325.0,1124.0,0.0,4570.0,,,,,,,,,,, +170,https://bit.ly/3kzplQd,11,1,{'UCIQz7nN_zTfIoSOh7HasYIQ'},{5},youtube,comment,https://www.youtube.com/watch?v=bCk2xMs6j8M,"celebrities defending johnny depp against amber heard (elon musk, jason momoa, sia, alice cooper)",25809.0,2530004.0,,,,,,1234085.0,2810.0,0.0,2298.0,,,,,,,,,,, +171,https://www.youtube.com/watch?v=wOo2BFTRrL4,12,2,"{'UCIQz7nN_zTfIoSOh7HasYIQ', 'UCfzvM8Wy5Y34jrxXKmq69Dg'}",{5},youtube,comment,https://www.youtube.com/watch?v=bCk2xMs6j8M,"celebrities defending johnny depp against amber heard (elon musk, jason momoa, sia, alice cooper)",25809.0,2530004.0,,,,,,1234085.0,2810.0,0.0,2298.0,,,,,,,,,,, +172,https://www.youtube.com/watch?v=PYXp9wXHUWw,14,1,{'UCIQz7nN_zTfIoSOh7HasYIQ'},"{2, 3, 5}",youtube,comment,https://www.youtube.com/watch?v=bCk2xMs6j8M,"celebrities defending johnny depp against amber heard (elon musk, jason momoa, sia, alice cooper)",25809.0,2530004.0,,,,,,1234085.0,2810.0,0.0,2298.0,,,,,,,,,,, +173,https://www.youtube.com/watch?v=PYXp9wXHUWw,14,1,{'UCIQz7nN_zTfIoSOh7HasYIQ'},"{2, 3, 5}",youtube,comment,https://www.youtube.com/watch?v=bCk2xMs6j8M,"celebrities defending johnny depp against amber heard (elon musk, jason momoa, sia, alice cooper)",25809.0,2530004.0,,,,,,1234085.0,2810.0,0.0,2298.0,,,,,,,,,,, +174,https://bit.ly/3kzplQd,11,1,{'UCIQz7nN_zTfIoSOh7HasYIQ'},{5},youtube,comment,https://www.youtube.com/watch?v=bCk2xMs6j8M,"celebrities defending johnny depp against amber heard (elon musk, jason momoa, sia, alice cooper)",25809.0,2530004.0,,,,,,1234085.0,2810.0,0.0,2298.0,,,,,,,,,,, +175,https://www.youtube.com/watch?v=utozMdfngVk,14,1,{'UCIQz7nN_zTfIoSOh7HasYIQ'},"{2, 3, 5}",youtube,comment,https://www.youtube.com/watch?v=bCk2xMs6j8M,"celebrities defending johnny depp against amber heard (elon musk, jason momoa, sia, alice cooper)",25809.0,2530004.0,,,,,,1234085.0,2810.0,0.0,2298.0,,,,,,,,,,, +176,https://www.youtube.com/watch?v=utozMdfngVk,14,1,{'UCIQz7nN_zTfIoSOh7HasYIQ'},"{2, 3, 5}",youtube,comment,https://www.youtube.com/watch?v=bCk2xMs6j8M,"celebrities defending johnny depp against amber heard (elon musk, jason momoa, sia, alice cooper)",25809.0,2530004.0,,,,,,1234085.0,2810.0,0.0,2298.0,,,,,,,,,,, +177,https://www.youtube.com/watch?v=pLYxM0ztStg,1,1,"(8.678103838427382e+17,)",{1},twitter,tweet,https://www.youtube.com/watch?v=bCk2xMs6j8M,"celebrities defending johnny depp against amber heard (elon musk, jason momoa, sia, alice cooper)",25809.0,2530004.0,,,,,,1234085.0,2810.0,0.0,2298.0,,,,,,,,,,, +178,https://www.youtube.com/watch?v=pLYxM0ztStg,1,1,"(8.678103838427382e+17,)",{1},twitter,tweet,https://www.youtube.com/watch?v=bCk2xMs6j8M,"celebrities defending johnny depp against amber heard (elon musk, jason momoa, sia, alice cooper)",25809.0,2530004.0,,,,,,1234085.0,2810.0,0.0,2298.0,,,,,,,,,,, +179,https://www.youtube.com/watch?v=pLYxM0ztStg,8,2,"{'UCIQz7nN_zTfIoSOh7HasYIQ', 'UCfzvM8Wy5Y34jrxXKmq69Dg'}","{3, 5}",youtube,comment,https://www.youtube.com/watch?v=bCk2xMs6j8M,"celebrities defending johnny depp against amber heard (elon musk, jason momoa, sia, alice cooper)",25809.0,2530004.0,,,,,,1234085.0,2810.0,0.0,2298.0,,,,,,,,,,, +180,https://www.youtube.com/watch?v=pLYxM0ztStg,8,2,"{'UCIQz7nN_zTfIoSOh7HasYIQ', 'UCfzvM8Wy5Y34jrxXKmq69Dg'}","{3, 5}",youtube,comment,https://www.youtube.com/watch?v=bCk2xMs6j8M,"celebrities defending johnny depp against amber heard (elon musk, jason momoa, sia, alice cooper)",25809.0,2530004.0,,,,,,1234085.0,2810.0,0.0,2298.0,,,,,,,,,,, +181,https://bit.ly/3kzplQd,2,1,"('UCIQz7nN_zTfIoSOh7HasYIQ',)",{1},youtube,comment,https://www.youtube.com/watch?v=bCk2xMs6j8M,"celebrities defending johnny depp against amber heard (elon musk, jason momoa, sia, alice cooper)",25809.0,2530004.0,,,,,,1234085.0,2810.0,0.0,2298.0,,,,,,,,,,, +182,https://bit.ly/3kzplQd,2,1,"('UCIQz7nN_zTfIoSOh7HasYIQ',)",{1},youtube,comment,https://www.youtube.com/watch?v=bCk2xMs6j8M,"celebrities defending johnny depp against amber heard (elon musk, jason momoa, sia, alice cooper)",25809.0,2530004.0,,,,,,1234085.0,2810.0,0.0,2298.0,,,,,,,,,,, +183,https://www.youtube.com/watch?v=wOo2BFTRrL4,12,2,"{'UCIQz7nN_zTfIoSOh7HasYIQ', 'UCfzvM8Wy5Y34jrxXKmq69Dg'}",{5},youtube,comment,https://www.youtube.com/watch?v=bCk2xMs6j8M,"celebrities defending johnny depp against amber heard (elon musk, jason momoa, sia, alice cooper)",25809.0,2530004.0,,,,,,1234085.0,2810.0,0.0,2298.0,,,,,,,,,,, +184,https://www.youtube.com/channel/UCbiT0LUIbQj6CQScvWHJeKQ?sub_confirmation=1,31,1,{'UCbiT0LUIbQj6CQScvWHJeKQ'},{2},youtube,comment,https://www.youtube.com/watch?v=gECq8x8b6bo,10 celebrities that defended johnny depp against amber heard,41871.0,2205196.0,,,,,,1056676.0,979.0,0.0,3072.0,,,,,,,,,,, +185,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=gECq8x8b6bo,10 celebrities that defended johnny depp against amber heard,41871.0,2205196.0,,,,,,1056676.0,979.0,0.0,3072.0,,,,,,,,,,, +186,https://www.youtube.com/channel/UCbiT0LUIbQj6CQScvWHJeKQ?sub_confirmation=1,31,1,{'UCbiT0LUIbQj6CQScvWHJeKQ'},{2},youtube,comment,https://www.youtube.com/watch?v=gECq8x8b6bo,10 celebrities that defended johnny depp against amber heard,41871.0,2205196.0,,,,,,1056676.0,979.0,0.0,3072.0,,,,,,,,,,, +187,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=gECq8x8b6bo,10 celebrities that defended johnny depp against amber heard,41871.0,2205196.0,,,,,,1056676.0,979.0,0.0,3072.0,,,,,,,,,,, +188,https://youtu.be/QBCEXSVjBrM,1,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},{5},youtube,comment,https://www.youtube.com/watch?v=gEfWUbRfFR8,how amber heard destroyed her own career,23389.0,2050874.0,,,,,,997674.0,464.0,0.0,3910.0,,,,,,,,,,, +189,https://youtu.be/QBCEXSVjBrM,1,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},{5},youtube,comment,https://www.youtube.com/watch?v=gEfWUbRfFR8,how amber heard destroyed her own career,23389.0,2050874.0,,,,,,997674.0,464.0,0.0,3910.0,,,,,,,,,,, +190,https://youtu.be/-qHw0PtrdQI,1,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},{5},youtube,comment,https://www.youtube.com/watch?v=gEfWUbRfFR8,how amber heard destroyed her own career,23389.0,2050874.0,,,,,,997674.0,464.0,0.0,3910.0,,,,,,,,,,, +191,https://youtu.be/-qHw0PtrdQI,1,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},{5},youtube,comment,https://www.youtube.com/watch?v=gEfWUbRfFR8,how amber heard destroyed her own career,23389.0,2050874.0,,,,,,997674.0,464.0,0.0,3910.0,,,,,,,,,,, +192,https://youtu.be/dJe8bl_BLDE,1,1,"('UCJPOs6kI_s7YpXgSWIM01ZQ',)",{1},youtube,comment,https://www.youtube.com/watch?v=gEfWUbRfFR8,how amber heard destroyed her own career,23389.0,2050874.0,,,,,,997674.0,464.0,0.0,3910.0,,,,,,,,,,, +193,https://youtu.be/pZR2_v4UpgI,2,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},{5},youtube,comment,https://www.youtube.com/watch?v=gEfWUbRfFR8,how amber heard destroyed her own career,23389.0,2050874.0,,,,,,997674.0,464.0,0.0,3910.0,,,,,,,,,,, +194,https://youtu.be/pZR2_v4UpgI,2,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},{5},youtube,comment,https://www.youtube.com/watch?v=gEfWUbRfFR8,how amber heard destroyed her own career,23389.0,2050874.0,,,,,,997674.0,464.0,0.0,3910.0,,,,,,,,,,, +195,http://tiny.cc/bingewatch,7,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=gEfWUbRfFR8,how amber heard destroyed her own career,23389.0,2050874.0,,,,,,997674.0,464.0,0.0,3910.0,,,,,,,,,,, +196,https://youtu.be/dJe8bl_BLDE,4,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=gEfWUbRfFR8,how amber heard destroyed her own career,23389.0,2050874.0,,,,,,997674.0,464.0,0.0,3910.0,,,,,,,,,,, +197,http://tiny.cc/bingewatch,7,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=gEfWUbRfFR8,how amber heard destroyed her own career,23389.0,2050874.0,,,,,,997674.0,464.0,0.0,3910.0,,,,,,,,,,, +198,https://youtu.be/dJe8bl_BLDE,1,1,"('UCJPOs6kI_s7YpXgSWIM01ZQ',)",{1},youtube,comment,https://www.youtube.com/watch?v=gEfWUbRfFR8,how amber heard destroyed her own career,23389.0,2050874.0,,,,,,997674.0,464.0,0.0,3910.0,,,,,,,,,,, +199,https://youtu.be/dJe8bl_BLDE,4,1,{'UCJPOs6kI_s7YpXgSWIM01ZQ'},"{5, 6}",youtube,comment,https://www.youtube.com/watch?v=gEfWUbRfFR8,how amber heard destroyed her own career,23389.0,2050874.0,,,,,,997674.0,464.0,0.0,3910.0,,,,,,,,,,, +200,https://www.youtube.com/crazedculture?sub_confirmation=1,10,1,{'UCzlicyYuPMjtF9VVvJr-PeA'},{2},youtube,comment,https://www.youtube.com/watch?v=UvsHWTGHmts,amber heard faces 10 years in prison for accusations against johnny depp!!!,24544.0,1986284.0,,,,,,963776.0,957.0,0.0,3865.0,,,,,,,,,,, +201,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=UvsHWTGHmts,amber heard faces 10 years in prison for accusations against johnny depp!!!,24544.0,1986284.0,,,,,,963776.0,957.0,0.0,3865.0,,,,,,,,,,, +202,https://www.youtube.com/crazedculture?sub_confirmation=1,10,1,{'UCzlicyYuPMjtF9VVvJr-PeA'},{2},youtube,comment,https://www.youtube.com/watch?v=UvsHWTGHmts,amber heard faces 10 years in prison for accusations against johnny depp!!!,24544.0,1986284.0,,,,,,963776.0,957.0,0.0,3865.0,,,,,,,,,,, +203,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=UvsHWTGHmts,amber heard faces 10 years in prison for accusations against johnny depp!!!,24544.0,1986284.0,,,,,,963776.0,957.0,0.0,3865.0,,,,,,,,,,, +204,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=Bu1uOt5Tyoc,elon musk speaks against amber heard & defends johnny depp!!!,11313.0,1850690.0,,,,,,908240.0,3130.0,0.0,2662.0,,,,,,,,,,, +205,https://www.youtube.com/crazedculture?sub_confirmation=1,10,1,{'UCzlicyYuPMjtF9VVvJr-PeA'},{2},youtube,comment,https://www.youtube.com/watch?v=Bu1uOt5Tyoc,elon musk speaks against amber heard & defends johnny depp!!!,11313.0,1850690.0,,,,,,908240.0,3130.0,0.0,2662.0,,,,,,,,,,, +206,https://www.youtube.com/crazedculture?sub_confirmation=1,10,1,{'UCzlicyYuPMjtF9VVvJr-PeA'},{2},youtube,comment,https://www.youtube.com/watch?v=Bu1uOt5Tyoc,elon musk speaks against amber heard & defends johnny depp!!!,11313.0,1850690.0,,,,,,908240.0,3130.0,0.0,2662.0,,,,,,,,,,, +207,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=Bu1uOt5Tyoc,elon musk speaks against amber heard & defends johnny depp!!!,11313.0,1850690.0,,,,,,908240.0,3130.0,0.0,2662.0,,,,,,,,,,, +208,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=WLgXd5H6Q2A,disney officially apologizes to johnny depp after firing him!!!,34942.0,1814380.0,,,,,,866811.0,636.0,0.0,4801.0,,,,,,,,,,, +209,https://www.youtube.com/crazedculture?sub_confirmation=1\,1,1,{'UCzlicyYuPMjtF9VVvJr-PeA'},{2},youtube,comment,https://www.youtube.com/watch?v=WLgXd5H6Q2A,disney officially apologizes to johnny depp after firing him!!!,34942.0,1814380.0,,,,,,866811.0,636.0,0.0,4801.0,,,,,,,,,,, +210,https://www.youtube.com/crazedculture?sub_confirmation=1\,1,1,{'UCzlicyYuPMjtF9VVvJr-PeA'},{2},youtube,comment,https://www.youtube.com/watch?v=WLgXd5H6Q2A,disney officially apologizes to johnny depp after firing him!!!,34942.0,1814380.0,,,,,,866811.0,636.0,0.0,4801.0,,,,,,,,,,, +211,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=WLgXd5H6Q2A,disney officially apologizes to johnny depp after firing him!!!,34942.0,1814380.0,,,,,,866811.0,636.0,0.0,4801.0,,,,,,,,,,, +212,https://www.nickwallis.com/depp-trial-witness-statements,4,2,"{1.2961098713608763e+18, 2514618167.0}","{2, 3}",twitter,tweet,https://www.youtube.com/watch?v=VjBYuyHvAkQ,when a nobody acts like a legend. amber heard copying johnny depp & failing miserably (pt 1),26005.0,1712668.0,,,,,,828056.0,469.0,0.0,1804.0,,,,,,,,,,, +213,https://www.nickwallis.com/depp-trial-witness-statements,4,2,"{1.2961098713608763e+18, 2514618167.0}","{2, 3}",twitter,tweet,https://www.youtube.com/watch?v=VjBYuyHvAkQ,when a nobody acts like a legend. amber heard copying johnny depp & failing miserably (pt 1),26005.0,1712668.0,,,,,,828056.0,469.0,0.0,1804.0,,,,,,,,,,, +214,https://www.nickwallis.com/depp-trial-witness-statements,2,2,"{'UCOp3GgtzNUadFlYDCKv2_5g', 'UCFQZawaJNG7ORQGUec6faEg'}","{8, 2}",youtube,comment,https://www.youtube.com/watch?v=VjBYuyHvAkQ,when a nobody acts like a legend. amber heard copying johnny depp & failing miserably (pt 1),26005.0,1712668.0,,,,,,828056.0,469.0,0.0,1804.0,,,,,,,,,,, +215,https://www.nickwallis.com/depp-trial-witness-statements,2,2,"{'UCOp3GgtzNUadFlYDCKv2_5g', 'UCFQZawaJNG7ORQGUec6faEg'}","{8, 2}",youtube,comment,https://www.youtube.com/watch?v=VjBYuyHvAkQ,when a nobody acts like a legend. amber heard copying johnny depp & failing miserably (pt 1),26005.0,1712668.0,,,,,,828056.0,469.0,0.0,1804.0,,,,,,,,,,, +216,https://missycrystal.medium.com/5-reasons-why-narcissists-copy-your-actions-bcf37a915525,1,1,{'UCFQZawaJNG7ORQGUec6faEg'},{2},youtube,comment,https://www.youtube.com/watch?v=VjBYuyHvAkQ,when a nobody acts like a legend. amber heard copying johnny depp & failing miserably (pt 1),26005.0,1712668.0,,,,,,828056.0,469.0,0.0,1804.0,,,,,,,,,,, +217,https://missycrystal.medium.com/5-reasons-why-narcissists-copy-your-actions-bcf37a915525,1,1,{'UCFQZawaJNG7ORQGUec6faEg'},{2},youtube,comment,https://www.youtube.com/watch?v=VjBYuyHvAkQ,when a nobody acts like a legend. amber heard copying johnny depp & failing miserably (pt 1),26005.0,1712668.0,,,,,,828056.0,469.0,0.0,1804.0,,,,,,,,,,, +218,https://www.youtube.com/channel/UCbiT0LUIbQj6CQScvWHJeKQ?sub_confirmation=1,31,1,{'UCbiT0LUIbQj6CQScvWHJeKQ'},{2},youtube,comment,https://www.youtube.com/watch?v=pk4FCnbehCM,amber heard faces 10 years in prison for pocketing charity donations from johnny depp,33541.0,1664934.0,,,,,,792306.0,1069.0,0.0,5551.0,,,,,,,,,,, +219,https://www.youtube.com/channel/UCbiT0LUIbQj6CQScvWHJeKQ?sub_confirmation=1,31,1,{'UCbiT0LUIbQj6CQScvWHJeKQ'},{2},youtube,comment,https://www.youtube.com/watch?v=pk4FCnbehCM,amber heard faces 10 years in prison for pocketing charity donations from johnny depp,33541.0,1664934.0,,,,,,792306.0,1069.0,0.0,5551.0,,,,,,,,,,, +220,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=pk4FCnbehCM,amber heard faces 10 years in prison for pocketing charity donations from johnny depp,33541.0,1664934.0,,,,,,792306.0,1069.0,0.0,5551.0,,,,,,,,,,, +221,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=pk4FCnbehCM,amber heard faces 10 years in prison for pocketing charity donations from johnny depp,33541.0,1664934.0,,,,,,792306.0,1069.0,0.0,5551.0,,,,,,,,,,, +222,https://www.youtube.com/channel/UCbiT0LUIbQj6CQScvWHJeKQ?sub_confirmation=1,31,1,{'UCbiT0LUIbQj6CQScvWHJeKQ'},{2},youtube,comment,https://www.youtube.com/watch?v=tybOcw3gQzc,amber heard facing 10 years in prison for fake johnny depp accusations!?,24383.0,1344082.0,,,,,,643030.0,582.0,0.0,4046.0,,,,,,,,,,, +223,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=tybOcw3gQzc,amber heard facing 10 years in prison for fake johnny depp accusations!?,24383.0,1344082.0,,,,,,643030.0,582.0,0.0,4046.0,,,,,,,,,,, +224,https://www.youtube.com/channel/UCbiT0LUIbQj6CQScvWHJeKQ?sub_confirmation=1,31,1,{'UCbiT0LUIbQj6CQScvWHJeKQ'},{2},youtube,comment,https://www.youtube.com/watch?v=tybOcw3gQzc,amber heard facing 10 years in prison for fake johnny depp accusations!?,24383.0,1344082.0,,,,,,643030.0,582.0,0.0,4046.0,,,,,,,,,,, +225,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=tybOcw3gQzc,amber heard facing 10 years in prison for fake johnny depp accusations!?,24383.0,1344082.0,,,,,,643030.0,582.0,0.0,4046.0,,,,,,,,,,, +226,https://www.youtube.com/watch?v=zxTv5CRa4bQ&list=PLs5uat2JJZlnQVv-jqog8cCSt8NAWX924,2,1,{'UCVvt8dZQe5pWDpqRZLzqyDQ'},{9},youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +227,https://www.youtube.com/channel/UCg0C-N_MPYYOXyF4T3jMxNQ,13,12,"(8.339648270853284e+17, 1.313936769285587e+18, 1.3280048543091466e+18, 1.2842191137165558e+18, 1.302912993882239e+18, 1.1921117172260372e+18, 1.2525096682216284e+18, 1.3640730082230313e+18, 1.2109687449623798e+18, 25006542.0, 431016433.0, 489069592.0)",{1},twitter,tweet,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +228,https://www.youtube.com/channel/UCg0C-N_MPYYOXyF4T3jMxNQ,2,2,"{1.2279218767872205e+18, 1.3377619044633272e+18}","{2, 3}",twitter,tweet,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +229,https://www.youtube.com/channel/UCg0C-N_MPYYOXyF4T3jMxNQ,12,7,"{'UCAxriNBFZQPTsj9vBOSnhkA', 'UCGl9hxFXep_3KMe662E_pzQ', 'UCC6ue7UYt1yeS621xmTMKrQ', 'UCVvt8dZQe5pWDpqRZLzqyDQ', 'UCkiEjBNdsNB9vDIvMEmKjxg', 'UC1nJzvNaB_ql4RHrzgozrQQ', 'UCzlzv0duIQU5xC_QIMsLGvA'}","{2, 4, 6, 9, 13, 14, 19, 24}",youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +230,https://www.youtube.com/channel/UCg0C-N_MPYYOXyF4T3jMxNQ,12,7,"{'UCAxriNBFZQPTsj9vBOSnhkA', 'UCGl9hxFXep_3KMe662E_pzQ', 'UCC6ue7UYt1yeS621xmTMKrQ', 'UCVvt8dZQe5pWDpqRZLzqyDQ', 'UCkiEjBNdsNB9vDIvMEmKjxg', 'UC1nJzvNaB_ql4RHrzgozrQQ', 'UCzlzv0duIQU5xC_QIMsLGvA'}","{2, 4, 6, 9, 13, 14, 19, 24}",youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +231,https://www.youtube.com/channel/UCg0C-N_MPYYOXyF4T3jMxNQ,3,3,"('UCAxriNBFZQPTsj9vBOSnhkA', 'UCMAwi5fm2yOSEeKd_Qv0Z2Q', 'UCMSrjJh3nagPea0ZvfoYLJQ')",{1},youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +232,https://www.youtube.com/channel/UCg0C-N_MPYYOXyF4T3jMxNQ,3,3,"('UCAxriNBFZQPTsj9vBOSnhkA', 'UCMAwi5fm2yOSEeKd_Qv0Z2Q', 'UCMSrjJh3nagPea0ZvfoYLJQ')",{1},youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +233,https://amzn.to/3izUXqa,2,1,{'UCVvt8dZQe5pWDpqRZLzqyDQ'},{9},youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +234,https://amzn.to/3izUXqa,2,1,{'UCVvt8dZQe5pWDpqRZLzqyDQ'},{9},youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +235,https://www.youtube.com/channel/UCg0C-N_MPYYOXyF4T3jMxNQ,2,2,"{1.2279218767872205e+18, 1.3377619044633272e+18}","{2, 3}",twitter,tweet,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +236,https://www.youtube.com/channel/UCg0C-N_MPYYOXyF4T3jMxNQ,13,12,"(8.339648270853284e+17, 1.313936769285587e+18, 1.3280048543091466e+18, 1.2842191137165558e+18, 1.302912993882239e+18, 1.1921117172260372e+18, 1.2525096682216284e+18, 1.3640730082230313e+18, 1.2109687449623798e+18, 25006542.0, 431016433.0, 489069592.0)",{1},twitter,tweet,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +237,https://www.youtube.com/watch?v=Grlao4wLRBc,1,1,{'UCVvt8dZQe5pWDpqRZLzqyDQ'},{9},youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +238,https://www.youtube.com/watch?v=zxTv5CRa4bQ&list=PLs5uat2JJZlnQVv-jqog8cCSt8NAWX924,2,1,{'UCVvt8dZQe5pWDpqRZLzqyDQ'},{9},youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +239,https://amzn.to/3xfAQBq,2,1,{'UCVvt8dZQe5pWDpqRZLzqyDQ'},{9},youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +240,https://amzn.to/3xfAQBq,2,1,{'UCVvt8dZQe5pWDpqRZLzqyDQ'},{9},youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +241,https://youtu.be/XH9jY8cFHn0,2,1,{'UCVvt8dZQe5pWDpqRZLzqyDQ'},{9},youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +242,https://youtu.be/XH9jY8cFHn0,2,1,{'UCVvt8dZQe5pWDpqRZLzqyDQ'},{9},youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +243,https://amzn.to/35ciJ3i,2,1,{'UCVvt8dZQe5pWDpqRZLzqyDQ'},{9},youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +244,https://amzn.to/35ciJ3i,2,1,{'UCVvt8dZQe5pWDpqRZLzqyDQ'},{9},youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +245,https://amzn.to/35961SS,2,1,{'UCVvt8dZQe5pWDpqRZLzqyDQ'},{9},youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +246,https://amzn.to/35961SS,2,1,{'UCVvt8dZQe5pWDpqRZLzqyDQ'},{9},youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +247,https://amzn.to/3gfhqXM,2,1,{'UCVvt8dZQe5pWDpqRZLzqyDQ'},{9},youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +248,https://amzn.to/3gfhqXM,2,1,{'UCVvt8dZQe5pWDpqRZLzqyDQ'},{9},youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +249,https://www.youtube.com/watch?v=Grlao4wLRBc,1,1,{'UCVvt8dZQe5pWDpqRZLzqyDQ'},{9},youtube,comment,https://www.youtube.com/watch?v=9AAaaZGiDo0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,31911.0,1208928.0,,,,,,570570.0,323.0,0.0,1660.0,,,,,,,,,,, +250,https://amzn.to/3l0TGXk,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +251,https://amzn.to/3l0TGXk,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +252,https://youtu.be/7AAhVg9cUo0,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +253,https://youtu.be/7AAhVg9cUo0,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +254,https://youtu.be/_uKIcMDYlUY,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +255,https://youtu.be/_uKIcMDYlUY,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +256,https://amzn.to/2Ig2HNB,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +257,https://youtu.be/GQp9VQNNFTs,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +258,https://youtu.be/GQp9VQNNFTs,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +259,https://youtu.be/Gy5FA57W70A,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +260,https://youtu.be/Gy5FA57W70A,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +261,https://youtu.be/-XtG6GjIB3Y,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +262,https://youtu.be/a1ylGHyTasc,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +263,https://youtu.be/a1ylGHyTasc,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +264,https://youtu.be/IiZ-VWoKHvI,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +265,https://youtu.be/IiZ-VWoKHvI,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +266,https://amzn.to/3mZrCUL,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +267,https://amzn.to/3mZrCUL,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +268,https://www.airy-youtube-downloader.com,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +269,https://www.airy-youtube-downloader.com,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +270,https://www.apple.com/final-cut-pro/,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +271,https://www.apple.com/final-cut-pro/,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +272,https://www.tubebuddy.com/baggageclaim,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +273,https://www.tubebuddy.com/baggageclaim,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +274,https://amzn.to/32kL46E,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +275,https://amzn.to/32kL46E,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +276,https://amzn.to/2Ig2HNB,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +277,https://youtu.be/seLSzJrBig4,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +278,https://youtu.be/seLSzJrBig4,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +279,https://youtu.be/vrrCfzauBx,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +280,https://youtu.be/vrrCfzauBx,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +281,https://youtu.be/-XtG6GjIB3Y,1,1,{'UCayZHNob_pvVyP3mJuHIIiA'},{16},youtube,comment,https://www.youtube.com/watch?v=YAcdzMRadhQ,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),21401.0,902542.0,,,,,,426303.0,819.0,0.0,2748.0,,,,,,,,,,, +282,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=1nLI4ahi6V4,emilia clarke speaks out on being amber heard's replacement in aquaman 2!!!,11235.0,894190.0,,,,,,433088.0,884.0,0.0,1888.0,,,,,,,,,,, +283,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=1nLI4ahi6V4,emilia clarke speaks out on being amber heard's replacement in aquaman 2!!!,11235.0,894190.0,,,,,,433088.0,884.0,0.0,1888.0,,,,,,,,,,, +284,https://www.youtube.com/crazedculture?sub_confirmation=1,10,1,{'UCzlicyYuPMjtF9VVvJr-PeA'},{2},youtube,comment,https://www.youtube.com/watch?v=1nLI4ahi6V4,emilia clarke speaks out on being amber heard's replacement in aquaman 2!!!,11235.0,894190.0,,,,,,433088.0,884.0,0.0,1888.0,,,,,,,,,,, +285,https://www.youtube.com/crazedculture?sub_confirmation=1,10,1,{'UCzlicyYuPMjtF9VVvJr-PeA'},{2},youtube,comment,https://www.youtube.com/watch?v=1nLI4ahi6V4,emilia clarke speaks out on being amber heard's replacement in aquaman 2!!!,11235.0,894190.0,,,,,,433088.0,884.0,0.0,1888.0,,,,,,,,,,, +286,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=B9ZaUwfDvg4,amber heard’s lawyer quits & exposes amber for ruining johnny depp!?,11142.0,820560.0,,,,,,396094.0,384.0,0.0,2660.0,,,,,,,,,,, +287,https://www.youtube.com/channel/UCbiT0LUIbQj6CQScvWHJeKQ?sub_confirmation=1,31,1,{'UCbiT0LUIbQj6CQScvWHJeKQ'},{2},youtube,comment,https://www.youtube.com/watch?v=B9ZaUwfDvg4,amber heard’s lawyer quits & exposes amber for ruining johnny depp!?,11142.0,820560.0,,,,,,396094.0,384.0,0.0,2660.0,,,,,,,,,,, +288,https://www.youtube.com/channel/UCbiT0LUIbQj6CQScvWHJeKQ?sub_confirmation=1,31,1,{'UCbiT0LUIbQj6CQScvWHJeKQ'},{2},youtube,comment,https://www.youtube.com/watch?v=B9ZaUwfDvg4,amber heard’s lawyer quits & exposes amber for ruining johnny depp!?,11142.0,820560.0,,,,,,396094.0,384.0,0.0,2660.0,,,,,,,,,,, +289,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=B9ZaUwfDvg4,amber heard’s lawyer quits & exposes amber for ruining johnny depp!?,11142.0,820560.0,,,,,,396094.0,384.0,0.0,2660.0,,,,,,,,,,, +290,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=ShObyc9vqXM,jason momoa speaks on amber heard being replaced from aquaman 2!?,10020.0,777320.0,,,,,,374403.0,2295.0,0.0,1942.0,,,,,,,,,,, +291,https://www.youtube.com/channel/UCbiT0LUIbQj6CQScvWHJeKQ?sub_confirmation=1,31,1,{'UCbiT0LUIbQj6CQScvWHJeKQ'},{2},youtube,comment,https://www.youtube.com/watch?v=ShObyc9vqXM,jason momoa speaks on amber heard being replaced from aquaman 2!?,10020.0,777320.0,,,,,,374403.0,2295.0,0.0,1942.0,,,,,,,,,,, +292,https://www.youtube.com/channel/UCbiT0LUIbQj6CQScvWHJeKQ?sub_confirmation=1,31,1,{'UCbiT0LUIbQj6CQScvWHJeKQ'},{2},youtube,comment,https://www.youtube.com/watch?v=ShObyc9vqXM,jason momoa speaks on amber heard being replaced from aquaman 2!?,10020.0,777320.0,,,,,,374403.0,2295.0,0.0,1942.0,,,,,,,,,,, +293,https://support.google.com/youtube/answer/1620498?hl=e,44,4,"{'UCzlicyYuPMjtF9VVvJr-PeA', 'UCbiT0LUIbQj6CQScvWHJeKQ', 'UC5WIwAxUiPadmQh-lUc5dow', 'UC7pYkdpCfDo7U1j4_pbF5Iw'}","{2, 3}",youtube,comment,https://www.youtube.com/watch?v=ShObyc9vqXM,jason momoa speaks on amber heard being replaced from aquaman 2!?,10020.0,777320.0,,,,,,374403.0,2295.0,0.0,1942.0,,,,,,,,,,, +294,https://twitter.com/kujo0817/status/1385246188501454853/photo/1,1,1,"(1.1519526823552532e+18,)",{1},twitter,tweet,1385246188501454853,#HappyBirthdayAmberHeard I’ll say it again fuck amber heard abusing ass. Deadass evidence of her saying she abused someone and people still siding with her... https://t.co/YIpUHXfo8c,,4202.0,,,,314.0,3888.0,,,,,,,,,,,,,,, +295,https://twitter.com/kujo0817/status/1385246188501454853/photo/1,1,1,"(1.1519526823552532e+18,)",{1},twitter,tweet,1385246188501454853,#HappyBirthdayAmberHeard I’ll say it again fuck amber heard abusing ass. Deadass evidence of her saying she abused someone and people still siding with her... https://t.co/YIpUHXfo8c,,4202.0,,,,314.0,3888.0,,,,,,,,,,,,,,, +296,https://twitter.com/twhenneke/status/1357337791756083200/photo/1,2,2,"(1.307637122346623e+18, 2829046180.0)",{1},twitter,tweet,1357337791756083200,johnny depp amber heard https://t.co/Jva2VD3dWF,,2129.0,,,,398.0,1731.0,,,,,,,,,,,,,,, +297,https://twitter.com/twhenneke/status/1357337791756083200/photo/1,2,2,"(1.307637122346623e+18, 2829046180.0)",{1},twitter,tweet,1357337791756083200,johnny depp amber heard https://t.co/Jva2VD3dWF,,2129.0,,,,398.0,1731.0,,,,,,,,,,,,,,, +298,https://twitter.com/mrsdepp_head/status/1346484738383613952/photo/1,1,1,"(1.2932507946246144e+18,)",{1},twitter,tweet,1346484738383613952,Lol amber heard interview disliked by over 400K people on you tube 😘 #justiceforjohnnydepp #johnnydepp https://t.co/vuzC4Z9sjR,,1395.0,,,,130.0,1265.0,,,,,,,,,,,,,,, +299,https://twitter.com/mrsdepp_head/status/1346484738383613952/photo/1,1,1,"(1.2932507946246144e+18,)",{1},twitter,tweet,1346484738383613952,Lol amber heard interview disliked by over 400K people on you tube 😘 #justiceforjohnnydepp #johnnydepp https://t.co/vuzC4Z9sjR,,1395.0,,,,130.0,1265.0,,,,,,,,,,,,,,, +300,https://www.thegeekbuzz.com/the-basement/video-reveals-bots-signing-anti-amber-heard-petition/,2,2,"(9.1815297172838e+17, 80546748.0)",{1},twitter,tweet,t3_lx2s7w,"Do you ever feel like you have been lied to, by a team who are working to discredit amber heard? Serious. + +https://www.thegeekbuzz.com/the-basement/video-reveals-bots-signing-anti-amber-heard-petition/",,10.0,,,10.0,,,,,,,,,,,,,,,,, +301,https://www.thegeekbuzz.com/the-basement/video-reveals-bots-signing-anti-amber-heard-petition/,2,2,"(9.1815297172838e+17, 80546748.0)",{1},twitter,tweet,t3_lx2s7w,"Do you ever feel like you have been lied to, by a team who are working to discredit amber heard? Serious. + +https://www.thegeekbuzz.com/the-basement/video-reveals-bots-signing-anti-amber-heard-petition/",,10.0,,,10.0,,,,,,,,,,,,,,,,, +302,https://www.thegeekbuzz.com/the-basement/video-reveals-bots-signing-anti-amber-heard-petition/,1,1,{'UCEAomcLuClCPT-HRB-KBu_w'},{4},youtube,comment,t3_lx2s7w,"Do you ever feel like you have been lied to, by a team who are working to discredit amber heard? Serious. + +https://www.thegeekbuzz.com/the-basement/video-reveals-bots-signing-anti-amber-heard-petition/",,10.0,,,10.0,,,,,,,,,,,,,,,,, +303,https://www.thegeekbuzz.com/the-basement/video-reveals-bots-signing-anti-amber-heard-petition/,1,1,"('westondeboer',)",{1},reddit,reddits,t3_lx2s7w,"Do you ever feel like you have been lied to, by a team who are working to discredit amber heard? Serious. + +https://www.thegeekbuzz.com/the-basement/video-reveals-bots-signing-anti-amber-heard-petition/",,10.0,,,10.0,,,,,,,,,,,,,,,,, +304,https://www.thegeekbuzz.com/the-basement/video-reveals-bots-signing-anti-amber-heard-petition/,1,1,{'UCEAomcLuClCPT-HRB-KBu_w'},{4},youtube,comment,t3_lx2s7w,"Do you ever feel like you have been lied to, by a team who are working to discredit amber heard? Serious. + +https://www.thegeekbuzz.com/the-basement/video-reveals-bots-signing-anti-amber-heard-petition/",,10.0,,,10.0,,,,,,,,,,,,,,,,, +305,https://www.thegeekbuzz.com/the-basement/video-reveals-bots-signing-anti-amber-heard-petition/,1,1,"('westondeboer',)",{1},reddit,reddits,t3_lx2s7w,"Do you ever feel like you have been lied to, by a team who are working to discredit amber heard? Serious. + +https://www.thegeekbuzz.com/the-basement/video-reveals-bots-signing-anti-amber-heard-petition/",,10.0,,,10.0,,,,,,,,,,,,,,,,, +306,https://www.youtube.com/watch?v=14SUI93R_k8,0,0,{'InformOverload'},1,youtube,video,original video,"jason momoa defends amber heard after aquaman 2 boycott +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +johnny depp must be punching air right now after this breaking news that jason momoa is deciding to defend amber heard following this big aquaman 2 boycott. apparently the actor has finally made his opinion on the matter public and has no problem working with ms. heard. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#amberheard #johnnydepp #jasonmomoa #aquaman #aquaman2 #directorjameswan #jameswan #ambervsjohnny #johnnydeppvsamberheard #aquamanmera #mera #amberheardboycott #aquaman2boycott #boycott #defends #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 #celebritygossip #influencergossip #celebritytea #influencertea #justiceforjohnnydepp #johnny #depp #2021 #thesunnewspaper #newsgroupnewspaper #danwootton #thesun #highcourt #libelcase #defamation + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +johnny rogers: https://www.instagram.com/thejohnnyrogers/ + + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +dylan lamovsek: https://twitter.com/uptownduck00 + + +📱instagram: https://www.instagram.com/informoverload +📱facebook: https://www.facebook.com/informoverload/ +📱twitter: https://twitter.com/informoverload +📱reddit: https://www.reddit.com/user/informoverloadreddit +✉️email | contact: informoverload@gmail.com",1394.0,34408.0,,,,,,32001.0,71.0,0.0,942.0,jason momoa defends amber heard after aquaman 2 boycott,,,,,,,,,, +307,https://www.youtube.com/watch?v=Dvh09e0TPJ4,0,0,{'Celebrity Insider'},1,youtube,video,original video,"due to all the drama caused by the divorce of johnny depp and amber heard, it's seems likely that she will also suffer consequences when it comes to screen-time. in this video we will be going over amber heard being replaced in the upcoming aquaman 2 movie. +even though this is still only. a rumour, it may just be a question of time before becoming reality. + +do you think we will see a different co-star of jason in the movie? + +let us know in the comments! + +subscribe to our instagram to stay up to date on the run: +instagram: https://www.instagram.com/celebrity23insider/ + +subscribe to celebrity insider on youtube to get the newst stories about the famous and for the funniest, most exciting and bizarre facts about their past.",248.0,7428.0,,,,,,7081.0,7.0,0.0,92.0,amber heard replaced in the aquaman 2 movie?!,,,,,,,,,, +308,https://www.youtube.com/watch?v=XVnsy3kJf8k,0,0,{'NARCISSIST ESSAYS'},1,youtube,video,original video,"amber heard is a wonderful example of narcissism. if you have ever been a victim to a narcissist of her kind, it is very triggering watching her defense in court. her and meghan markel carry the same manipulative entitled spirit. ladies, we thank you for being a perfect example of narcissistic women, bringing more awareness to narcissistic abuse, and we love to see it. may the lord help prince harry and archie, and we send our love to johnny depp. + +instagram @narcissistessays https://www.instagram.com/narcissistessays/ + +twitter @narcessays https://twitter.com/narcessays?s=11 + + email narcissisticessays@gmail.com",3.0,103.0,,,,,,94.0,1.0,0.0,5.0,amber heard narcissist #amberheardnarcissist #isamberheardanarcissist,,,,,,,,,, +309,https://www.youtube.com/watch?v=I7GfS45bcwA,0,0,{'Flixet'},1,youtube,video,original video,"in today's video we are going to share what emilia clarke has to say regarding amber heard's replacement in aquaman 2. + +subscribe for more : http://bit.ly/32rc7vi +________________________________________ + +amber heard became even more popular when she played the role of mera in aquaman. but due to her legal battle with her ex-husband johnny depp, many fans want her to be out of the superhero movie.",225.0,7966.0,,,,,,7638.0,23.0,0.0,80.0,emilia clarke's thoughts on being amber heard's replacement in aquaman 2 | flixet,,,,,,,,,, +310,https://www.youtube.com/watch?v=T0ExWB6-k0w,0,0,{'BLACKAGEINC'},1,youtube,video,original video,"has amber heard actually been fired from aquaman 2? + +here's the latest on the blockbuster defamation suit.",1.0,36.0,,,,,,34.0,1.0,0.0,0.0,amber heard fired from aquaman 2 | subscribe,,,,,,,,,, +311,https://www.youtube.com/watch?v=4nHEQjUUKvY,0,0,{'Boxoffice'},1,youtube,video,original video,"behind-the-scenes which showed her struggling to move in the armored mera costume for the zack snyder film. + +follow us on facebook: + +https://cutt.ly/nwa71ka​​​​​​​​​​​​​​...​ + +------------------------------------------------------------------------------------------------------- + +copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair us. + +#zacksnydersjusticeleague #zacksnyder #restorethesnyderverse #mera",64.0,3933.0,,,,,,3835.0,21.0,0.0,13.0,behind-the-scenes video of amber heard’s mera from ‘zack snyder’s justice league,,,,,,,,,, +312,https://www.youtube.com/watch?v=FMpQwj2OT8Q,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"cancelled! aquaman spinoff canned! aquaman 2 and amber heard get the finger? + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #aquaman",2907.0,40070.0,,,,,,36739.0,22.0,0.0,402.0,cancelled! aquaman spinoff canned! aquaman 2 and amber heard get the finger?,,,,,,,,,, +313,https://www.youtube.com/watch?v=2183lqRNWgc,0,0,{'Newzee'},1,youtube,video,original video,"amber heard turns 35 years old on thursday (april 22). +the texan actress was born in austin in 1986, and had her first starring role in 2006 as a desirable high-school girl invited to a party in horror film ""all the boys love mandy lane"". +in 2008 heard landed roles in ""never back down"" and comedy ""pineapple express"" and in male stripper tale ""magic mike xxl"" in 2015. +in 2011 she starred in ""the rum diary"" opposite future husband, actor johnny depp, 57. +they married in 2015, but had a tempestuous five-year relationship that ended in divorce in may 2016, following accusations of assault against heard. +depp, star of films including ""pirates of the caribbean"" and ""edward scissorhands,"" went to london's high court last year to sue the sun newspaper and one of its journalists over a tabloid article that stated he had been violent towards his ex-wife. +high court judge andrew nicol ruled last november that depp had violently assaulted heard, at times putting her in fear for her life. that decision came after three weeks of hearings where the court heard sensational claim and counter-claim from both parties about violent outbursts which each accused the other of committing. +in march this year, depp's legal team applied for permission to appeal the high court ruling upheld that he was a wife beater and to rely on further evidence. his lawyers said heard's claim that she had donated her divorce settlement to charity was a ""calculated lie"". +depp has also filed a $50 million defamation lawsuit against heard in a virginia court over an opinion piece she wrote in the washington post. +heard is also known for playing mera in dc comics' 2018 superhero film ""aquaman"", opposite ""game of thrones"" actor jason momoa in the title role of the half-human, half-atlantean character. +she is set to reprise the 'queen of the sea' role in version 2 of ""aquaman"", slated for 2022. the character also features in 2017 action adventure ""justice league"". +heard is also a human rights activist and #metoo campaigner. +in october 2018 she told a united nations audience in geneva that hollywood falls ""way behind"" when it comes to human rights and has a responsibility to change. + +....................................................................................... + +follow us: https://www.youtube.com/channel/ucvrasltset7chmeuldtqmxa +facebook: https://www.facebook.com/newzeepk +twitter: https://twitter.com/newzeepk + +watch ""princess leonor, spain's future queen, delivers her first speech with eng subs"" +https://youtu.be/oucclsjlixi + +check out our playlists to view the latest videos and don't forget to subscribe to the newzee youtube channel for daily video updates. + +must share your thought in comments!",,,,,,,,359.0,,0.0,12.0,aquaman's amber heard turns 35,,,,,,,,,, +314,https://www.youtube.com/watch?v=QBCEXSVjBrM,0,0,{'Viral Vision'},1,youtube,video,original video,"amber heard officially fired from aquaman 2 role! (reactions) +the war that is going on between amber heard and johnny depp is getting more and more personal with every single month that passes by. and when it comes right down to it, this is a case of two people who are trying to prove.. but as time went on it became clearer that she had her own issues and that she was hurting depp. and now, in light of johnny depp losing film roles, fans are demanded she get the same treatment via stripping her of the role of mera in aquaman 2. we’ll break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, a look at amber heard, her role in what’s going on in the johnny depp case, and whether she’ll be removed from aquaman 2 when all is said and done. what do you think is the likely course of action here in regards to warner bros’ treatment of heard? do you think they’ll actually remove her from aquaman 2? or do you think that plans are too far along to do that? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",4895.0,127740.0,,,,,,120719.0,969.0,0.0,1157.0,amber heard officially fired from aquaman 2 role! (reactions),,,,,,,,,, +315,https://www.youtube.com/watch?v=HNnmVYL81KU,0,0,{'Nam Bân'},1,youtube,video,original video,"johnny depp hofft im rosenkrieg mit amber heard auf elon musk vorladung für tesla-chef  hollywood-star johnny depp (57, ""das geheime fenster"") will weiter um seine reputation und gegen seine ex-frau amber heard (34) kämpfen. nach einem erfolglosen prozess gegen die britische boulevardzeitung ""the sun"", verklagt er heard in virginia wegen verleumdung und fordert 50 millionen us-dollar von seiner ex-frau wegen eines von ihr verfassten artikels für die ""washington post"". hilfe verspricht sich depp in dem fall von tesla-chef elon musk (49). wie ""deadline"" berichtet, hat der unternehmer von depps anwälten eine vorladung erhalten.  die anwälte möchten, dass musk aussagen ""zu jeglicher kommunikation zwischen ihnen und frau heard in bezug auf herrn depp"" tätige. zudem haben sie fragen zum ""sun""-prozess und den ""vorwürfen wegen körperlichen missbrauchs oder häuslicher gewalt, die entweder von herrn depp oder von frau heard begangen wurden"". doch was hat elon musk mit der angelegenheit überhaupt zu tun?  der unternehmer war nach heards scheidung von johnny depp mit der schauspielerin liiert. dass die beiden bereits während der ehe eine affäre und eine dreiecksbeziehung mit cara delevingne (28) gehabt haben sollen, bestritt musk im juni 2020 gegenüber ""page six"", dem klatschportal der ""new york post"": ""cara und ich sind freunde, aber wir waren nie intim. [...] außerdem möchte ich noch einmal betonen, dass amber und ich erst ungefähr einen monat nach ihrer scheidung angefangen haben, auszugehen. ich glaube nicht, dass ich während ihrer ehe jemals in ihrer nähe war!""  auch der kampf gegen ""the sun"" ist noch nicht vorbei  ein londoner gericht hatte anfang november 2020 eine klage depps gegen die britische boulevardzeitung ""the sun"" abgewiesen, die ihn als ""frauenschläger"" bezeichnet hatte. depp und sein anwaltsteam wollen gegen das urteil berufung einlegen, eine anhörung soll dafür im kommenden märz stattfinden. ein richter am berufungsgericht verfügte ""deadline"" zufolge, dass johnny depp und sein team eine mündliche anhörung erhalten, die zwischen dem 15. und 31. märz stattfinden und zwei stunden dauern werde.  der prozess gegen die ""sun"" war zu einem weiteren rosenkrieg zwischen depp und heard ausgeartet, die von 2015 bis 2017 verheiratet waren. beide erhoben schwerwiegende vorwürfe gegeneinander. nach einem 16-tägigen prozess in london kam der richter zu dem urteil, dass die wortwahl ""im wesentlichen wahr"" gewesen sei. depps anwälte argumentierten anschließend vor dem berufungsgericht, der richter habe die vorgelegten beweise von depps ex-frau zu unkritisch akzeptiert, darüber hinaus habe er relevante beweise ignoriert oder gar nicht erst zugelassen.",0.0,11.0,,,,,,11.0,0.0,0.0,0.0,johnny depp hofft im rosenkrieg mit amber heard auf elon musk,,,,,,,,,, +316,https://www.youtube.com/watch?v=oSOzFjjm6GA,0,0,{'DC Geek House'},1,youtube,video,original video,"#amberheard #batman #fortnite #aquaman #aquaman2 #mera #dceu #dccomics #suicidesquad #joker #brianazzarello #justiceleagueinfinity #batmanfortnite #legendsoftomorrow #arrowverse #cwverse + +¡nuevo vídeo de noticias! por un lado anunciado nuevo cómic para dc black label con el suicide squad buscando al joker, ""batman/fortnite"" que se está vendiendo por mucho dinero, anunciada colección que continúa la historia de la serie animada ""justice league"", trailer para la sexta temporada de ""dc's legends of tomorrow"", y la actriz amber heard se va preparando para aquaman 2. + +----------------------------------------------------------------------------------------------------------------------------------------------- +blog: https://eluniversodccomics.blogspot.com/ +facebook: https://www.facebook.com/dcgeekhouse +twitter: https://twitter.com/universodccomic +instagram: https://www.instagram.com/universodccomics11/ +copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use. +copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use.",26.0,130.0,,,,,,99.0,0.0,0.0,5.0,"#dcnews amber heard se entrena para aquaman 2, trailer legends season 6, joker, fortnite y mucho más",,,,,,,,,, +317,https://www.youtube.com/watch?v=4S1IPTqDld0,0,0,{'a Friend or Foe'},1,youtube,video,original video,"not much has come out about the trial against amber heard. but adam waldman a lawyer involved with johnny depp's case in the uk is updating a bit more. +amber heard has been subpoena to show proof of the donation from the divorce settlement even though her lawyers have been fighting to not have to show proof. they are trying to say it's not relevant to the case. yeah okay, the divorce settlement that amber has said publicly and under oath is proof that she didn't use johnny for money. (cue the sarcasm) + +when we finally have the receipts i'll make a video on it! #justiceforjohnny + +https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2 + +music found at the beginning link: https://youtu.be/zuw_o5mu5ce + +personal blog: afriendorfoe.homeblog",108.0,1777.0,,,,,,1641.0,1.0,0.0,27.0,amber heard being called out for the 7 million donation // #justiceforjohnny,,,,,,,,,, +318,https://www.youtube.com/watch?v=H-Gdg4c4v80,0,0,{'DELCARAJO TV'},1,youtube,video,original video,"► bawn (pronunciado baun) ➥ https://tus10seg.com/1024363 +► miguel colorado ➥ https://tus10seg.com/1024543 + +00:00 el accidente de shawn bradley (nba) +01:10 ¿cuanto vale kanye west? +02:00 el nuevo programa de ellen degeneres +02:47 ryan reynolds casi formo parte del snyder cut de justice league +03:55 la operacion de katherine heigl +04:40 las horrible situacion de kobe bryant +06:48 angelina jolie acusa a brad pitt +09:13 nerdomancers +11:10 johnny depp apela contra amber heard + +► tus 10 segundos ➥ https://tus10segundos.com/products/delcarajotv +► se parte del team delcarajo: +➥ https://youtube.com/channel/ucuwebhxve6c69jtbpiy-y8q/join +► tienda delcarajo ➥ http://delcarajo.net + +► sigueme en: +twitter ➥ http://twitter.com/juanitosay +instagram ➥ http://instagram.com/juanitosayoficial + +► contacto: say@delcarajo.net + + +* hey, friki delcarajo... ¿que haces tan abajo? el boton de like esta mas arriba ( ͡° ͜ʖ ͡°)",13682.0,245574.0,,,,,,230761.0,430.0,0.0,701.0,bomba: ¡johnny depp demuestra que amber heard mintió! ¿brad pitt vioiento? ryan en el snyder cut,,,,,,,,,, +319,https://www.youtube.com/watch?v=sMw_oETv5tY,0,0,{'Clevver News'},1,youtube,video,original video,"johnny depp suffered a major loss in the ongoing libel case against a uk tabloid who labeled him as a “wife-beater”, as #justiceforjohnny sweeps social media. watch the latest clevver news feed: https://www.youtube.com/watch?v=p3vvy5akd9s&list=plgiko5ltqugrgoih8wmyc8mqfr2u5tots&index=167 + +subscribe for more celebrity news ►► http://bit.ly/subclevvernews + +more from clevver news: +rumor patrol: https://www.youtube.com/watch?v=iajyud59kdi&list=plgiko5ltqugso_n7mzfxhtunuc9ej1pyl +youtuber news: https://www.youtube.com/watch?v=cyv6rdufwwa&list=plgiko5ltqugtudmayy4dequwvnui1ovqc +celebrity lowdown: https://www.youtube.com/watch?v=gka34xf61qo&list=plgiko5ltqugtb8dxdqse7aropubv-rhxs + +for more clevver visit: +find us on facebook: http://facebook.com/clevver +keep up with us on instagram: http://instagr.am/clevver +follow us on twitter: http://twitter.com/clevvertv + +follow our hosts! +emile ennis jr. @emileennisjr sussan mourad @sussan_mourad + +#johnnydepp #amberheard #justiceforjohnnydepp",1135.0,50854.0,,,,,,49041.0,54.0,0.0,624.0,amber heard responds to johnny depp lawsuit setback!,,,,,,,,,, +320,https://www.youtube.com/watch?v=I7jivnCr_Wc,0,0,{'eHacker'},1,youtube,video,original video,"amber heard photos photoshopped by the sun! proof of defamation against johnny depp! + +https://www.youtube.com/watch?v=rrph7yxkudc&t=27s keeley talks here! + +@enterhacker on twitter +campsmithmedia@gmail.com",780.0,4262.0,,,,,,3279.0,2.0,0.0,201.0,amber heard bruises photoshopped by the sun! proof of defamation against johnny depp!,,,,,,,,,, +321,https://www.youtube.com/watch?v=zi079huC3Oc,0,0,{'Doctor Soup'},1,youtube,video,original video,"#justiceforjohnnydepp + +amber heard goes crazy on twitter! last night she went off on depp supporters. heard screams guilt! + +links: +twitter: https://twitter.com/home +instagram: https://www.instagram.com/shelbyyoutu...",516.0,10286.0,,,,,,9603.0,19.0,0.0,148.0,amber heard loses it on twitter and attacks depp!,,,,,,,,,, +322,https://www.youtube.com/watch?v=TuhcGf8IrLc,0,0,{'#JOHNNYDEPPBEATSWOMEN Johnny Depp es racista'},1,youtube,video,original video,"https://www.paralegaledu.org/2017/09/4-rules-of-professional-ethics-paralegals-can-never-break/ + +https://www.americanbar.org/news/abanews/publications/youraba/2017/november-2017/ensure-your-paralegals-ethics-align-with-yours-/",1.0,,,,,,,29.0,6.0,0.0,,fraudulent youtubers!! (amber heard playlist!!),,,,,,,,,, +323,https://www.youtube.com/watch?v=jbp4UiBTgO8,0,0,{'Chopped Celeb'},1,youtube,video,original video,"amber heard gets exposed by her lawyer for lying and ruining johnny depp's career! + +new conspiracies and information have come to light in the legal battle between famous actor johnny depp and actress amber heard! after their divorce, amber came out and claimed that johnny depp has been mistreating her and her sister during the relationship. + +now, that heard's lawyer has left her legal team and famous body language expert from the youtube channel ""observe"" has analyzed her body language in the 2016 deposition, tables are starting to slowly turn against her. + +✅ like, comment, subscribe & hit that notification bell for more celebrity content! + +#amberheard #johnnydepp #choppedceleb",5643.0,185182.0,,,,,,178412.0,139.0,0.0,988.0,amber heard *exposed* by her lawyer for lying and ruining johnny depp!,,,,,,,,,, +324,https://www.youtube.com/watch?v=Sb_xI-vFTcU,0,0,{'Flixet'},1,youtube,video,original video,"in today's video, we are going to discuss is amber heard getting pay raise of amber heard for the aquaman 2? + +subscribe for more : http://bit.ly/32rc7vi +______________________________________________ + +any actor or actress who stars in a major box office success in any genre is going to see a substantial improvement in their salary for a sequel with bonuses and back-end profit participation deals typically where most of the money comes from. + +music in this video : + +track: odessa — liqwyd & scandinavianz +music provided by audio library plus +watch: https://youtu.be/jny-dp3lgcg",24.0,1013.0,,,,,,910.0,44.0,0.0,35.0,amber heard reportedly getting salary raise for aquaman 2 | flixet,,,,,,,,,, +325,https://www.youtube.com/watch?v=j0R_mHmRnC8,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"disney destroys amber heard for threatening to sue over depp! career done! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #johnnydepp #amberheard",10178.0,280626.0,,,,,,268941.0,175.0,0.0,1332.0,disney destroys amber heard for threatening to sue over depp! career done!,,,,,,,,,, +326,https://www.youtube.com/watch?v=bgcuD5BSy3s,0,0,{'Film Streak'},1,youtube,video,original video,"amber heard and johnny depp evil text messages leaked! +amber heard and johnny depp have been battling in court for quite some time now trying to prove their own innocence and the other wrongs, but the court cases are still raging on. however, more light has been shined on the case and we even managed to get our hands on some of their text messages! +these text messages ranges from conversations with colleagues, assistants and also parents, we have text messages between amber and her mother, depp and his assistant on substance use, amber’s messages to depp about divorce, depp messages to colleague about heard being a stripper and how she engaged in various activities, for short this video is gonna expose you to some other decays in the amber-depp short lived marriage, make sure you watch till the end. + +here on film streak we are all about the latest spill in hollywood! you can rest assure that we will bring you all the latest celebrity drama and gossip especially concerning you favorite actors! we´ll also make sure to keep you updated on the newest movie updates and releases – so if you are interested in anything that happens in hollywood, you should make sure to stay tuned! + +and there you have it guys! we hope you enjoyed the video! if you did please consider leaving a like and telling us what you though in the comments! + +here are some links to some of our other videos that you might find interesting as well: +""i lied"" amber heard apologies to johnny depp (ig live video): https://www.youtube.com/watch?v=plyxm0ztstg +emilia clarke reaction before replacing amber heard in aquaman 2! https://www.youtube.com/watch?v=pyxp9wxhuww +johnny depp officially rehired | back in a new pirates of the caribbean 6 movie? https://www.youtube.com/watch?v=utozmdfngvk +elon musk speaks against amber heard & defends johnny depp! +https://www.youtube.com/watch?v=woo2bftrrl4 + +so, if you are interested in anything related to hollywood, make sure to smash that subscribe button to see more of our content in the future! 🎬 https://bit.ly/3kzplqd + +#amberheardtextmessages #johnnydepptextmessages #amberheardlying #filmstreak",186.0,10433.0,,,,,,10006.0,89.0,0.0,152.0,amber heard and johnny depp text messages leaked!,,,,,,,,,, +327,https://www.youtube.com/watch?v=SH53yi1ZDgc,0,0,"{""Amber Heard's Evidence""}",1,youtube,video,original video,"amber heard's supporting evidence and humanitarian, political work",0.0,34.0,,,,,,34.0,0.0,0.0,0.0,amber heard al one young world 2018 summit a the hague,,,,,,,,,, +328,https://www.youtube.com/watch?v=nk62Q2ve1Ck,0,0,{'The Spotlight'},1,youtube,video,original video,"amber heard makes career ending mistake she will regret!! + +subscribe to the spotlight 👉 https://bit.ly/3txagy1 + +please support this video by commenting #justicefordepp as well as subscribing and giving the video a like to improve the algorithm on youtube and spread awareness for depp! 🏆 + +watch next: ▶️ + +https://www.youtube.com/watch?v=yvpybrarags&t=164s + +https://www.youtube.com/watch?v=lrgawogssbw&t=18s + +https://www.youtube.com/watch?v=r74lqyljmr8 + +------------------------------------------------------------------------------------------------------------------------ + +related videos:👇 + +https://www.youtube.com/watch?v=yh7iqjrbwm0&t=105s + +https://www.youtube.com/watch?v=j_xof43vv8w + +https://www.youtube.com/watch?v=48gguhezu-0 + +what happened in 2015? +johnny depp and amber heard were on a trip from honolulu, usa to brisbane, australia in 2015. that doesn’t sound so bad, does it? it actually sounds like a fun little trip, but as we all know by now that amber is known to pull off a great facade in front of the public and she did the same in 2015. + +amber heard was quite stubborn in taking two of her yorkshire terriers, boo and pistol, along with her. unfortunately, australia is pretty strict with their animal policies and do conduct a strict check at the borders and during immigration. + +if so, how were they able to take the dogs? +amber heard is quite cheeky when it comes to escaping the law. she managed to take her dogs and enter the country until she was caught leading amber to face the court. + +well at that time we all believed her to be innocent and that she hadn't known about these rules as she has stated, and all was forgiven. but only after her divorce and lawsuit did the australian government decide to look into this case yet again. the case currently holds a status of ongoing and we are pretty sure that this is going to cause her a lot of trouble holistically. + +so what do these documents contain? +in simple words, the documents contain information stating that everything she stated back in 2015 are complete lies. that is not a shocker for us at this point but yes that is the truth of what the documents contain. + +quick recap from the past, what did amber defend herself when she was called onto the pedestal to plead her case? +amber stated that she did not know that such a law existed in australia. she stated that it was all a misunderstanding and that she wasn’t aware that it would cost her a lot. in fact, shortly after all those events happened, she and depp put up their video showcasing them in a sorry state being extremely apologetic about what they did and how much they love and respect australia. + +want to know something funny about this, amber stated to have forgotten to claim her dogs or whatever set of lies she was rapping at that point but guess what she didn’t forget to claim? + +now, who is kate james and kevin murphy? +kate james was amber heard’s personal assistant and she worked for amber heard for 3 years from march 2012 to february 2015. kevin murphy on the other hand was someone who worked for depp for almost 8 years and was caught into this huge mess unknowingly. + +as someone famous once said, it is the people who try to do good who get into trouble while the guilty always seem to have it easier. this is partially true, but karma is real and it surely is served cold to the people who deserve it. + +kevin knew about the issues that would arise if the dogs were taken without proper documentation. he even spoke to amber about it on call and even in person stating that it was a bad idea. but being the stubborn individual she is, refused to take heed to his advice and took things into her own hand. + +kevin rejected her offer but then was verbally threatened by amber due to which he succumbed under pressure to do so. later on, after she divorced depp, he tried to retract his claim as he no longer worked for them and wanted to turn his wrongs into rights as the guilt was killing him. + +kevin also stated that he had told amber to proceed in taking her dogs in the right way by filling out the paperwork and only then taking her dogs overseas. but due to this entailing a ten-day quarantine which she wasn’t patient enough to endure, she chose to take the shortcut which came to bite her back. + +the worst-case scenario involves her facing jail time that can be for a minimum of 5 years to a maximum of 15 years. now that is a lot, especially if it was for just being stubborn over taking your dogs with you. how old are you amber? 5? + +to make this situation messier, aquaman 2 is also going to be shot there which means amber heard could lose her role as mera to this mistake of hers, that she forgot to cover up. dear amber, you cannot hide the skeleton in the closet forever. but if she does get kicked out of aquaman 2 for this, we are pretty sure fans would be glad. #amberheard #johnydepp #aquaman2 #johnnydeppcase #amberheardcase #thespotlight #ah",562.0,20995.0,,,,,,20283.0,23.0,0.0,127.0,amber heard makes career ending mistake she will regret!!,,,,,,,,,, +329,https://www.youtube.com/watch?v=KuDXmtTWfy4,0,0,{'Steven And Jason'},1,youtube,video,original video,"greetings friends! + +in this episode, we discuss the fact that amber heard has yet to donate any of the 7 million dollars she received in her divorce settlement to johnny depp. we also touch on armie hammer's interesting way of communicating through dm's. + +if you enjoyed please comment, like, & subscribe. + +add us on instagram: +https://www.instagram.com/stevenrcrowley +https://www.instagram.com/stevenjasonpodcast + +add us on tiktok: +https://www.tiktok.com/@stevencrowley + +listen: +spotify: https://spoti.fi/2eawjph + +the equipment used: https://www.amazon.com/shop/stevencrowley",1301.0,17164.0,,,,,,15463.0,20.0,0.0,380.0,amber heard stole from charity. a story you won’t see in the news... armie hammer's dm's.,,,,,,,,,, +330,https://www.youtube.com/watch?v=tybOcw3gQzc,0,0,{'Viral Vision'},1,youtube,video,original video,"amber heard facing 10 years in prison for fake johnny depp accusations!? +the strange case of amber heard and johnny depp is continuing on in 2021 and it’s not getting any less strange. both sides have been seeking “justice” depending on what side you believe. and the longer the case goes on, it becomes more and more clear that amber heard is the true predator in this case and that johnny is her victim, but she’s trying to make people see that it’s the other way around. but with some new evidence and requests...things might be going a different direction soon. we’ll break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone! a look at the continuing case of amber heard and johnny depp and how things just keep piling on with no end in sight. what do you think is going to happen with this case? do you feel as though amber heard’s “armor” is getting chipped away bit by bit? do you think that johnny depp is slowly getting the upperhand, especially in the public eye? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",24383.0,672041.0,,,,,,643030.0,582.0,0.0,4046.0,amber heard facing 10 years in prison for fake johnny depp accusations!?,,,,,,,,,, +331,https://www.youtube.com/watch?v=XZv49jnUaAw,0,0,{'Stevie J Raw'},1,youtube,video,original video,"join myself with les, shelby, dan and many more guests. if we reach $10,000 raised i will try and sing the classic brown eyed girl...happy to embarass myself for the cause lol. :) + +there will be some auction items and people sharing their experiences in meeting johnny depp. +the ultimate goal is to raise as much as possible for the kids. + +chla charity livestream - #justiceforjohnnydepp community support the children + +aside from being a renowned actor, singer, musician, and writer - johnny depp has always had a charitable heart, whether it be dressing up as jack sparrow to visit sick kids in the hospital or privately donating his own funds to causes he is passionate about. +as part of his divorce settlement agreement between himself and his ex-wife amber heard, he agreed to pay $7 million dollars on her behalf, which would be split evenly between the aclu and the chla. +as of january 7th, 2021 the public has received indisputable evidence which tells them that amber heard, who insisted the funding be given directly to her and not the charities for her to donate directly, failed to keep her promise to both the public and the children’s hospital of la and did not donate the $3.5 million. +chla is a nonprofit that admits approximately 14,600 child patients every year, including those with cancer and long-term illnesses. they rely completely on their donors for financial support. as a group, members of the justice for johnny depp community have decided to put together this page to be able to raise money so that the children get the attention and care they deserve. help us stand up for the truth, against injustice, and help the children. + +childrens hospital la donation link - https://www.justgiving.com/fundraising/justiceforjohnnydepp + +thank you for considering a donation. + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join + +tubebuddy - https://www.tubebuddy.com/steviejreviews + +art of elysium donation page - https://www.pledge.to/the-art-of-elysium + +justice for johnny depp t-shirts (proceeds go to charity): +design 1 - https://t.co/uycndh9ebj?amp=1 +design 2 - https://t.co/hdmq0wicke?amp=1 +design 3 - https://t.co/lqmeoidmje?amp=1 +design 4 - https://t.co/lkteqqdxhg?amp=1 + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#justiceforjohnnydepp #chla #charity",352.0,3989.0,,,,,,3585.0,5.0,0.0,47.0,chla charity livestream - #justiceforjohnnydepp community support the children,,,,,,,,,, +332,https://www.youtube.com/watch?v=tbivEDlVSXc,0,0,{'Viral Flash'},1,youtube,video,original video,"amber heard reportedly in talks for mera hbo max spinoff +______________________________________________ +for more videos subscribe : https://bit.ly/2zopgqj +______________________________________________ +amber heard is now rumoured to be in talks to star in a mera hbo max spinoff tv series, which might get some fans a bit riled up. this rumour comes from daniel richtman’s patreon page. + +in this video are going to share the full news on amber heard reportedly talks for mera in hbo max spinoff. + +this comes after months of speculation that amber heard might be replaced as mera in aquaman 2, however, it sounds as though warner bros. pictures are very much on heard’s side. when i say on heard’s side, i’m of course talking about the whole amber heard vs. johnny depp case. + +warner bros. pictures asked johnny depp to step down from the role of grindelwald in fantastic beasts 3. they did this after he lost his libel case against the sun in the united kingdom. it was then revealed that warner bros. pictures’ executives are not paying any attention to the online petitions demanding that heard be removed from aquaman 2. + +this is something that i’m pretty sure a vast number of dc comics and dceu fans will not like to hear. there’s been a huge number of people who are very much against amber heard and do not want to see her as mera in the dceu any more. that said, the likes of zack snyder and other executives over at wb are very much fans of the actress. zack snyder actually recently revealed that he would love to work with heard again. the two of them worked together on the reshoots fos snyder’s upcoming justice league cut, which will also be coming to hbo max. + +other than this, amber heard‘s dceu future has been constantly called into question, thanks to the fallout of the actress’ messy divorce from johnny depp. however, despite the sizeable backlash against the aquaman star online, warner bros. is sticking by her. that’s definitely how it seems, anyways, given that depp’s been fired from the fantastic beasts franchise while heard has said she’s excited to return as mera in aquaman 2. not only that, but she might even get her own vehicle as the future queen of the oceans. + +according to insider daniel richtman, heard has reportedly had talks with the studio about doing a mera tv show, which would end up on hbo max. that’s all richtman, who shared the intel on his patreon page, has revealed at the moment, but this info does add up with everything we’ve heard about wb’s plans to expand the dceu onto the small screen and make use of their new streaming service. after all, they’re going to want to create as many offshoots from the movies as they can, so it adds up that they would explore doing more with one of the dc universe’s leading ladies. + +of course, this is just what one source is saying and beyond the trailer’s grace randolph has painted a very different picture of what’s going on behind the scenes with her own scoops. randolph’s claimed that aquaman 2 is being written in such a way to allow for mera’s role to be reduced if things go against her in her next lawsuit with depp. furthermore, a new female supporting lead – possibly played by an asian actress – is apparently being added in to “balance things out.” mera has a long dc comics history, so there’s a lot of material to work with there if wb did end up moving ahead with a spinoff for amber heard. and the world clearly wants more from the aqua-verse, given the first movie’s $1 billion global gross. + +but how do you feel about a possible mera show, likely following 2022’s aquaman 2? would you watch a mera spinoff tv show on hbo max? sound off with your thoughts in the comments section below and if you haven’t subscribed to my channel yet, please do so. see you in the next video. +______________________________________________ +about my channel : +welcome to the viral flash! in this channel we upload videos related to celebrity gossip, entertainment news, top 10 list videos, updates on royal family etc. as far as possible, we upload 4 videos each week. thanks for watching! +__________________________________________________ +for more videos subscribe : https://bit.ly/2zopgqj",2.0,88.0,,,,,,76.0,4.0,0.0,6.0,amber heard reportedly in talks for mera hbo max spinoff,,,,,,,,,, +333,https://www.youtube.com/watch?v=CuNHipnOdc8,0,0,{'Spectrum Classic'},1,youtube,video,original video,#justice4johnny,2.0,111.0,,,,,,109.0,0.0,0.0,0.0,amber heard is finally finished!,,,,,,,,,, +334,https://www.youtube.com/watch?v=zrm_87fQA10,0,0,{'Exhaust Compilation. See Description'},1,youtube,video,original video,"amber heard is an american actress. she made her film debut in a minor supporting role in the sports drama friday night lights, followed by a series of other small roles in television and film. amber heard has been romantically linked with someone in the public eye. here's our list of the guys and girls who dated the actress. enjoy our videos today! + + +#amber #dating #love #relationship #past #boyfriend #girlfriend + +👇subscribe our channel for more updated videos!👇 +https://www.youtube.com/channel/ucwhvqsu3g3d0r4ffddvd02w +and don't forget to hit the bell for notifications. 🔔👍 +like and share! + +tags: amber heard johnny depp,amber heard on johnny depp,amber heard with johnny depp,johnny depp about amber heard,amber heard aquaman,amber heard elon musk,amber heard and johnny depp,johnny depp and amber heard,amber heard instagram,amber heard movies,amber heard petition,amber heard mera,amber heard as mera,amber heard and elon musk,amber heard abuse,elon musk and amber heard,amber heard in zombieland,amber heard zombieland,amber heard aquaman 2,johnny depp y amber heard,amber heard james franco,amber heard news,amber heard pineapple express,amber heard y johnny depp,who is amber heard,amber heard audio,amber heard fired,amber heard girlfriend,amber heard husband,amber heard rum diary,amber heard the rum diary,amber heard sister,amber heard boyfriend,amber heard lying,johnny depp vs amber heard,johnny depp e amber heard,remove amber heard from aquaman 2,amber heard 2020,amber heard jail,amber heard liar,amber heard magic mike,aquaman 2 amber heard,how old is amber heard,amber heard crazy,amber heard pirates of the caribbean,amber heard recording,amber heard video,elon musk y amber heard,amber heard johnny depp audio,amber heard beautiful,amber heard elon musk elevator,amber heard in aquaman,amber heard parents,amber heard photoshoot,amber heard y elon musk,amber heard and james franco,amber heard without makeup,amber heard court,amber heard criminal minds episode,amber heard machete kills,amber heard plastic surgery,amber heard trial,amber heard wedding,amber heard 3 days to kill,amber heard and tasya van ree,did amber heard abuse johnny depp,amber heard interviews,amber heard domestic violence,amber heard hair,amber heard jason momoa,amber heard tape,amber heard top gear,amber heard violent,interview with amber heard,amber heard elon,amber heard now,amber heard the stand,amber heard domestic abuse,is amber heard lying,what happened to amber heard,i heard you like amber,amber heard hate,amber heard latest news,amber heard magic mike xxl,amber heard makeup,amber heard narcissist,amber heard red carpet,amber heard vs johnny depp,jason momoa and amber heard,amber heard 2020 takeaway,amber heard crying,amber heard drama,amber heard evidence,amber heard mustang,amber heard 2010,amber heard 2008,amber heard and jason momoa,amber heard guilty,amber heard gold digger,amber heard lawyer,is amber heard crazy,amber heard deposition,amber heard johnny depp fight,amber heard liam hemsworth,amber heard response,amber heard ugly,amber heard upcoming movies,amber heard 2011,amber heard 2012,amber heard 2009,amber heard assistant,amber heard today,amber heard gq,amber heard j,amber heard tmz,valentino lanus y amber heard,amber heard y valentino lanus,amber heard 2016,elon musk on amber heard,latest on amber heard,where is amber heard now,amber heard drunk,amber heard paparazzi,amber heard testimony,amber heard vs scarlett johansson,amber heard with elon musk,amber heard in justice league,amber heard acting,amber heard new movie,amber heard update,amber heard best movies,movies with amber heard,amber heard body language,amber heard kevin costner,amber heard overhaulin mustang,amber heard reaction,does amber heard smoke,amber heard how tall,amber heard fight,amber heard news today,amber heard spanish,amber heard and johnny depp interview,johnny depp with amber heard,amber heard support,amber heard zombieland scene,amber heard cannes,amber heard married to johnny depp,movies of amber heard,amber heard dancing,amber heard jimmy fallon,amber heard on jimmy fallon,amber heard speech,amber heard hot in aquaman,amber heard in movies,amber heard interview aquaman,amber heard james corden,amber heard overhaulin episode,amber heard queen mera,amber heard united nations,amber heard zombieland 2,is amber heard perfect,amber heard footage,amber heard golden globes,amber heard underwater,about amber heard,amber heard conan,amber heard music video,amber heard atheist,amber heard speaking spanish,amber heard singing,amber heard on ellen,amber heard video evidence,amber heard kiss aquaman,amber heard online,amber heard official,amber heard youtube interview,amber heard about,amber heard top gear lap,amber heard johnny depp fight video,amber heard channel,amber heard they won't believe you,amber heard youtube channel,amber heard admits hitting johnny depp,amber heard abusive to johnny depp,amber heard adapt and survive,amber heard and johnny depp",3.0,369.0,,,,,,355.0,7.0,0.0,4.0,amber heard dating history 😍 who she dated 🤔,,,,,,,,,, +335,https://www.youtube.com/watch?v=2HZxp2g3hM4,0,0,{'The Amber Heard Playlist!!'},1,youtube,video,original video,,,,,,,,,144.0,,0.0,,yes!! amber heard did donate the divorce settlement(amber heard playlist!!),,,,,,,,,, +336,https://www.youtube.com/watch?v=2XtaTEAt9N4,0,0,{'Beautiful Celebs'},1,youtube,video,original video,"#beautifulcelebs #celebrities #shorts +how amber heard destroyed johnny depp +video by: charlesperalo (tiktok) +if you are the owner of this video and want me to take it down or add more credit please email me here: timsentoromakevid@gmail.com + +tags: +demi lovato,the ellen show,shorts,surprising fans,ariana grande,trendy lists,kardashians,celebrities surprising fans 2020,celebrity video,surprising videos,celeb surprise fan,meghan fox,celebrity lifestyle,guess the celebrity,kendall jenner,olivia rodrigo,celeb life,taylor swift,bad baby,top celebrity videos,celebrities surprise celebrities on the ellen show,viral tiktoks,cardi b,dwayne johnson surprises fans,best of celebrities,katy perry,jennifer lawrence,public reactions video,alexandra dadario,stars surprise fans,jennifer aniston surprising fans,celebrity,surprise,celebrities surprises fans,celebs surprise fans,billie eilish surprising fans,shakira,celebrity surprises fans,celebrities tiktoks,celebrity surprising fans compilation,best celebrities surprising fans 2019,emma watson,celebrities surprising fans,celebrities surprising fans in hospital,celeb tiktok,celebrity prank,celeblounge,saturday night live,kim kardashian surprises reuben,celebrity tiktok,viral celebrity,celebs surpise fans,justin bieber surprises fans,gigi hadid,viral tiktok,ctcn,emma stone,top celebrity,celebrities surprising,celeb,fan surprise,kylie jenner,bella thorne,celebrities,celeb surprises,ariana grande surprises fan,michael b. jordan.,jennifer lopez,crazy surprising videos,10 times when celebrities surprise their fans,celebrities surprise fans,12 times when celebrities surprise fans,celebrity crush,best celebrities surprising fans 2021,updated version,celebrity surprised fans 2019,lady gaga,celebrity surprising fans,funny celebrities,fans,viral tiktok 2021,celebrities surprise 2021,dua lipa,halsey,youtubers surprising fans,surprise fans,celebs and fans,booming entertainment,fan,celeb reactions,celebrity surprised fans 2021,nicki minaj,justin bieber surprises his fans,adam levine,celebrities surprising fans 2021,bella hadid,hollywood celebrities,celebrities surprise fans 2019,celebrity surprise,moments when celebrities surprise their fans,scarlett johanson,10 moments when celebrities surprise their fans,best celebrity clips,shawn mendes,michelle obama,paris hilton,10 celebrities surprise their fans,best celebrities surprising,dwayne johnson,best celebrities surprising fans,zac efron,charli d'amelio surprising fans,celebrities surprising their fans,celebloungechannel,surprise fan,billie eilish,jimmy fallon,bts surprise fans,selena gomez,viral celebrities,celebrities surprising fans 2019,ed sheeran surprise fan,angelina jolie,celebrities surprise celebrities,celeb surprises fans,ellen degeneres surprises fans,celebrities meeting their crush,miley cyrus surprises fans,mila kunis,cristina aguilera,shocking surprising videos,jennifer aniston,celebrity surprised fans 2020,will smith,kim kardashian,when celebrities surprising fans,celebs tiktok,ellen surprises guests with celebrities,tiktok celebrity,madison beer,celebrities surprising people,harry styles,celebrity surprise fans,celebrity surprise fans 2020,alicia keys,justin bieber surprise,chris hemsworth,best tiktok,celebrity surprise to fans,celebrity viral,comedy space,justin bieber,celebs surprising fans,surprising people with celebrities,john cena,celebrity 2021,tom holland,ariana grande surprise fan,10 celebrities surprises fans,celebrity shorts,hailey bieber,ellen,jimmy fallon subway performance,the rock,beyonce,rihanna,billie eilish surprises fans,adele,ellen surprises fans with celebrities,emily ratajakowski,channing tatum,top 10 moments when celebrities surprise their fans,hollywood celebs surprised,robert pattinson,celebs,miley cyrus,celebrity surprises,compilation,celebrities suprising fans,celebrities surprise 2019,celebrity clips,tiktok shorts,entertainment,kris jenner,celebrities surprise fans 2021,ellen surprises fans,10 celebrities surprises fans moments,moments when celebrities surprise guests,margot robbie,celebrities meeting their idols,jimmy fallon subway,shawn mendes surprises fan,moments when celebrities surprise fans",142425.0,2885304.0,,,,,,2734380.0,3679.0,0.0,4820.0,how amber heard destroyed johnny depp tiktok: charlesperalo,,,,,,,,,, +337,https://www.youtube.com/watch?v=gcXV1z_3Kg0,0,0,{'Entertainment Avenue'},1,youtube,video,original video,"10 celebrities who defended johnny depp against amber heard (johnny depp's exes & amber's assistant) + + in this video we go over 10 celebrities who defended johnny depp against amber heard (johnny depp's exes & amber's assistant). for more entertainment content be sure to subscribe to the channel. thanks for watching this video: 10 celebrities who defended johnny depp against amber heard (johnny depp's exes & amber's assistant) + + + +»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»» +what do you think about the situation? and what do you think happened? + + +can i get a 100 likes and 2000 subscribers? +subscribe here: bit.ly/subentertainmentavenue +»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»» +▲ last week's videos ▼ +https://bit.ly/watchmoreentertainment + +»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»» +#johnnydepp #amberheard #entertainment + + +tags: +defended johnny depp against amber heard,amber heard counterclaim,johnny deep,amber heard perjury,amber heard lied,amber heard charity donations,charity donations,johnny depp amber heard,amber heard johnny depp,depp,jolie pitt depp heard,brad pitt,justice for johnny depp,johnny depp amber heard court,johnny depp amber heard audio,johnny depp amber heard,celebrities who defended johnny depp,johnny depp amber heard fight,johnny depp and amber heard + +»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»» +ignore: +defended johnny depp against amber heard - 10 celebrities who defended johnny depp against amber heard... + +singer alice cooper defends johnny depp against abuse allegations made by amber heard. even more celebrities defend johnny depp against amber heard. + these are the celebrities who defended amber heard right here on top 10 beyond the screen! a look at the trials and tribulations between johnny depp and amber heard and how everything has gone in terms of court battles fighting for public opinion and being exposed for their antics! and there you have it everyone a look at the celebrities who have happily spoken up for johnny depp and defended his character both as a friend as a man and as a loving partner and father. + + so when the situation with amber heard actually popped up wynona didn't hesitate to defend johnny depp by saying that her personal experience with johnny depp has been really wonderful. the current court case that is going on between amber heard and johnny depp is reach major levels of hate and spite. +»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»» + + + + +right notice: the copyright laws of the united states recognizes a “fair use” of copyrighted content. section 107 of the u.s. copyright act states:“notwithstanding the provisions of sections 106 and 106a, the fair use of a copyrighted work, including such use by reproduction in copies or phono records or by any other means specified by that section, for purposes such as criticism, comment, news reporting, teaching (including multiple copies for classroom use), scholarship, or research, is not an infringement of copyright.” this video and our youtube channel in general may contain certain copyrighted works that were not specifically authorized to be used by the copyright holder(s), but which we believe in good faith are protected by federal law and the fair use doctrine for one or more of the reasons noted above.",11.0,198.0,,,,,,183.0,1.0,0.0,3.0,10 celebrities who defended johnny depp against amber heard (johnny depp's exes & amber's assistant),,,,,,,,,, +338,https://www.youtube.com/watch?v=lbz-aaNo56U,0,0,{'Robart Lio Aquaman Bots'},1,youtube,video,original video,"using bots to sign with russian ip on remove amber heard from aquaman 2 petition on change.org. +uses vpn and gmails. $bots are $priced and #petitions are #bought. 1 bot on one channel/vps for 3,000 a day. slower to 1,000 a day on one vps with proxies. #robots + +this is one bot. a full-proof working bot uses different ips and machines. + 10-20 vpses = 20,000 signatures a day, same autoscript. + gmails not checked. detection hidden. + ips, hardware, data, bandwidth, ram, virtual machines... ask me for python script. +no captcha! no captcha! they don't slow it down. +#warnerbros #aquaman #amberheard #jasonmamoa #coding #comics",15.0,1492.0,,,,,,1265.0,132.0,0.0,80.0,bots on change.org with russian ip - amber heard & aquaman,,,,,,,,,, +339,https://www.youtube.com/watch?v=A3jYed_iCs4,0,0,{'Viral Vision'},1,youtube,video,original video,"johnny depp sits with us & opens up about the amber heard court case +johnny depp has just lost a $100m lawsuit case against amber heard! you would believe what caused johnny depp to lose this! we’ll break down for you but first. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone! can you believe how far things have progressed? what do you think is going to happen next with these two? and will their cases and suits against one another ever end? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",3935.0,239788.0,,,,,,233319.0,1470.0,0.0,1064.0,johnny depp sits with us & opens up about amber heard,,,,,,,,,, +340,https://www.youtube.com/watch?v=oiQx3zI2vUA,0,0,{'Beat. tape'},1,youtube,video,original video,,930.0,25189.0,,,,,,24221.0,28.0,0.0,10.0,amber heard💜💙💓 whatsapp status | beat.tape,,,,,,,,,, +341,https://www.youtube.com/watch?v=pg7Dv7cWVHI,0,0,{'MH SERIES'},1,youtube,video,original video,#aquaman #trailer,1.0,37.0,,,,,,34.0,1.0,0.0,1.0,"trailer de aquaman 2 (2022) - jason momoa, amber heard (fan made)",,,,,,,,,, +342,https://www.youtube.com/watch?v=wsO0KLDe530,0,0,{'Movies Update'},1,youtube,video,original video,"amber heard in aquaman 2 ? | movies update + + + +hey people what's up + +social media: +• instagram :- (https://www.instagram.com/moviesupdateyt/ +• facebook :- + + +✓ music provide:- nocopyrightmusic +✓ visit chaneel :-https://www.youtube.com/user/nocopyrightsounds + +related topic: +• + ✓ if you're feeling rich you can donate me +©upi :- moviesupdate@paytm (start rupees 1 ) + + + +#moviesupdate + + +©copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use. no copyright infringement intended. + + +• like +• share +• subscribe + + + +tag:",47.0,607.0,,,,,,545.0,2.0,0.0,13.0,amber heard in aquaman 2 ? | movies update,,,,,,,,,, +343,https://www.youtube.com/watch?v=S0e5p7bJzuI,0,0,{'Ladies in time'},1,youtube,video,original video,amber heard “aquaman” repeating every word 5 times,1.0,88.0,,,,,,87.0,0.0,0.0,0.0,amber heard “aquaman” repeating every word 5 times 4,,,,,,,,,, +344,https://www.youtube.com/watch?v=1nLI4ahi6V4,0,0,{'Crazed Culture'},1,youtube,video,original video,"emilia clarke speaks out on being amber heard's replacement in aquaman 2!!! +unfortunately, lots of things have been moved around due to the incidents that had taken place throughout 2020. what i mean by this is there were a lot of comic book movies that were supposed to be released, but unfortunately, this did not happen. but looking on the bright side of things, it just may be that this will not be the same case for the year 2021, as comic book movies may just make their normal appearances yet again, along with other movies in general. aquaman 2 is one that just may be making its appearance to be the big screen, but there seems to be a bit of a problem with one individual cast member, and by now i think you can guess who i am talking about. allow us to break it all down for you but first be sure to like the video and subscribe to the channel below. + +click here to enter the giveaway! +https://www.youtube.com/crazedculture?sub_confirmation=1 + +and there you have it the recent updates on aquaman 2 and its main characters. will amber heard be able to gain her role back? is emilia clarke the best actress to stand in place of heard? will jason momoa have anything to say about this switch? let us know what you think in the comments down below! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e + +#amberheard #aquaman2 #amberheardreplaced",11235.0,447095.0,,,,,,433088.0,884.0,0.0,1888.0,emilia clarke speaks out on being amber heard's replacement in aquaman 2!!!,,,,,,,,,, +345,https://www.youtube.com/watch?v=cTsLMnXMS-g,0,0,{'Viral Flash'},1,youtube,video,original video,"johnny depp vs. elon musk +______________________________________________ +for more videos subscribe : https://bit.ly/2zopgqj +______________________________________________ +johnny depp has filed a $50 million lawsuit against ex wife amber heard , as time goes more and more high-profile stars have been caught in the middle.and now tesla ceo elon musk has been wrapped up in the drama as well. +in today's video we are going to discuss about johnny depp reportedly dragging elon musk into the libel case against amber heard. + +last week johnny depp's side things received good news when it was announced that his defamation case against amber heard would be going forward in virginia following reports that covid19 concerns would place the trial on hold days prior. depp's allegations come after amber heard's 2018 washington post op-ed, where she accused the fantastic beasts actor of domestic violence. depp denies these claims and has called them an ""elaborate hoax"" to advance her own career. + +british newspaper metro.co.uk was first to report that depp's attorney has issued a subpoena against musk ,the tesla ceo and heard's former boyfriend.new york post website page six also followed up with a similar story hours later. + +the latest development in the legal battle involves an alleged affair johnny depp claims amber heard had with tech mogul elon musk while they were still married. heard and musk have confirmed to have been in a relationship shortly after the rum diary co-stars called it quits in 2016, but depp has gathered information that points to the two possibly being together before that. + +depp's attorney adam waldman told the publications ,""we have now issued subpoenas to amber heard, her hoax assisting friends, elon musk and other witnesses to explain the avalanche of the video, audio, photographic and testimonial evidence with which we intend to confront them."" + +a source told page six, however ""musk has not received anything"" as yet. he and heard split in february 2018 following an on-off relationship.heard also told that the pair now enjoy a ""beautiful friendship"" based on ""intellectual curiosity, ideas and conversation, a shared love for science."" + +recent surveillance footage from the garage of their building has amber heard and elon musk next to each other in an elevator, per news 18. in addition to this, a lawsuit file statement makes the following claims: + +only one month after mr. depp and ms. heard were married - while mr depp was out of the country, filming in march 2015- eastern columbia building personnel testified that ms. heard received musk 'late night' at mr depp's penthouse. specially ms. heard asked staff at the eastern columbia building to give her friend elon access to the building's parking garage and the penthouse elevator 'late at night' and they testified that they did so. building staff would then see mrs. heard's friend elon leaving the building the next morning. + +heard asked a judge to dismiss the $50 million law suit on friday. heard filed a motion in the circuit court of fairfax asking for the case to be struck out. she offered new details about instances in which depp `` shaped her, shoved her, pulled her hair and choked her,"" ap said, providing photos as evidence. + +since their divorce mr depp has continued to publically harass ms heard and attempted to gaslight the world by denying his abuse. it is long past time for mr depp's despicable conduct to end. heard's attorney told ap. +depp's lawyer waldman denied the claims and said it was heard who abused his client. in an email to ap, he added "" the only way for amber heard to sustain her hoax is with more lies."" + +so that's all for today's video. what's your opinion on johnny depp's new allegation against elon musk?sound off know your thoughts in the comments section below.if you have not signed in to my channel yet please do this.see you within the next video. +______________________________________________ +about my channel : +welcome to the viral flash! in this channel we upload videos related to celebrity gossip, entertainment news, top 10 list videos, updates on royal family etc. as far as possible, we upload 4 videos each week. thanks for watching! +__________________________________________________ +for more videos subscribe : https://bit.ly/2zopgqj",22.0,565.0,,,,,,536.0,2.0,0.0,5.0,johnny depp vs. elon musk,,,,,,,,,, +346,https://www.youtube.com/watch?v=KByD2HZ2aN4,0,0,{'Popcorned Planet'},1,youtube,video,original video,"update: youtube just stamped it limited: which means i won't see a dime, but worse - it measn the video won't get pushed out as widely. so please, share the video, and if you're able, donate click here: https://linktr.ee/andysignore to keep news like this coming in spite of google. this stuff is too important! #justiceforjohnnydepp + +amber heard is caught in lies, in fact perjuring herself about donations and other accusations that johnny depp and his team have now proven are false. judge nichol did a terrible job on this case, so its time to break down the latest details! + +s u p p o r t t h i s. c h a n n e l: +subscribe, donate and follow andy here: https://linktr.ee/andysignore + +and join this channel to get access to perks: +https://www.youtube.com/channel/uccdicbo4cle4s1wbxjjsusg/join + + +f o l l o w m y f r i e n d s: +jody’s corner: https://www.youtube.com/channel/uc4ukkunzwgbjyesalvqdqcg +nerd report: https://www.youtube.com/user/nukethefridgetv +the planet of nerds with stef, chris & kev - https://www.youtube.com/channel/ucqdpgnhfwqt-ujeqkwinkda +adan @ nerdtots: https://www.youtube.com/channel/ucpeik5xccv2hgfqrnna074g +damian''s indie horror trailer the other side: https://www.youtube.com/channel/ucir9krgjjkz3vbbrgqtmt6wa +darth daddy lunga's the grey council - https://www.youtube.com/channel/uc2zzqsodtynawkug8ww--qw + +a b o ut t h i s c h a n n e l : +@popcornedplanet offers passionate takes on all things movies, tv & pop culture, created and led by andy signore (creator of screenjunkies, honest trailers, moviefights, man at arms and more) you can learn about andy’s journey here: https://www.youtube.com/watch?v=3wgofa4a0um + +andy also launched hugging the cactus, a channel & series detailing the dangers of cancel culture, stories of redemption and life experience, which you can learn more here: http://www.uncanceled.com or subscribe at: http://youtube.com/huggingthecactus + +c o n t a c t / b u s i n e s s : +popcornedplanet@gmail.com",9826.0,238643.0,,,,,,227008.0,153.0,0.0,1656.0,amber heard caught lying under oath! - great news for johnny depp,,,,,,,,,, +347,https://www.youtube.com/watch?v=X-HZMV_QXLo,0,0,{'This Happened'},1,youtube,video,original video,"amber heard goes to jail for 10 years for johnny depp accusations?! + +the legal battle between former spouses amber heard and johnny depp just took another shocking turn! +in november 2020, johnny lost a libel case against british tabloid the sun, and the court decided - based on amber heard’s testimony. +but it now looks like captain jack sparrow won’t go down without a fight. depp has now accused his ex-wife of submitting fake evidence in her abuse case against him, and if she’s eventually found guilty, amber could face some serious jail time. + +#amberheard #johnnydepp",2359.0,115120.0,,,,,,111643.0,211.0,0.0,907.0,amber heard goes to jail for 10 years for johnny depp accusations?!,,,,,,,,,, +348,https://www.youtube.com/watch?v=uHdwyHxPKg0,0,0,{'Viral District'},1,youtube,video,original video,"10 celebrities who defended johnny depp against amber heard... + +everywhere you go, from grocery store checkout lanes to your home with the news on, it won't take long to come across an article or news about the never-ending legal battles between johnny depp and amber heard. and over the year, people became confused on who was telling the truth between them about their case. in today's video, join us as we show you these 10 celebrities who defended johnny depp against amber heard. + +in the previous years, people turned against johnny depp as it was rumored that he was in a bad relationship. but in reality, it's the other way around. in fact, there are a lot of shocking receipts that prove johnny depp is innocent and amber heard is lying. be sure to watch the whole video and see which celebrities defended the actor! in addition, do us a favor and like the video and subscribe and turn on the notification bell. we’ll see you in the next video! + +#amberheard +#johnnydepp + +related videos: + +10 celebrities who defended johnny depp against amber heard... +https://www.youtube.com/watch?v=74bdltt6khw + +10 celebrities who defended johnny depp against amber heard +https://www.youtube.com/watch?v=ut40yefetk8 + +top 10 celebrities who defended johnny depp +https://www.youtube.com/watch?v=uj9kutxlulw + +celebrities who defended amber heard +https://www.youtube.com/watch?v=52k_6mntyf4 + +more celebrities who defended johnny depp against amber heard!!! +https://www.youtube.com/watch?v=tzqaslwfhig + +i do not take any ownership of the music displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes only.",1.0,30.0,,,,,,29.0,0.0,0.0,0.0,10 celebrities who defended johnny depp against amber heard,,,,,,,,,, +349,https://www.youtube.com/watch?v=ynPYMIGl5Qc,0,0,{'InformOverload'},1,youtube,video,original video,"johnny depp exposes amber heard for lying about charity donations +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +a claim from amber heard that she would donate all of her divorce settlement with johnny depp to a charity is now being called into question. depps legal team actually think that this could have even influenced the judges original decision in depps libel trial. now after visiting the court of appeals we have new evidence from johnny depp that suggests amber heard lied about the charity donations. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#amberheard #johnnydepp #lied #charitydonations #childrenshospital #libelcase #thesun #depp #johnnydeppvsamberheard #justiceforjohnnydepp #justiceforjohnny #exposed #lies #courtroomdrama #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 #celebritygossip #influencergossip #celebritytea #influencertea + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +johnny rogers: https://www.instagram.com/thejohnnyrogers/ + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +jennire narvaez: https://www.instagram.com/jennirenarvaezphotography/ + + +📱instagram: https://www.instagram.com/informoverload +📱facebook: https://www.facebook.com/informoverload/ +📱twitter: https://twitter.com/informoverload +📱reddit: https://www.reddit.com/user/informoverloadreddit +✉️email | contact: informoverload@gmail.com",1449.0,25713.0,,,,,,24071.0,11.0,0.0,182.0,johnny depp exposes amber heard for lying about charity donations,,,,,,,,,, +350,https://www.youtube.com/watch?v=OOc1phcoWks,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard hid video and lied about testimony that proved depp was framed! + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #johnnydepp #amberheard",4182.0,62141.0,,,,,,57456.0,21.0,0.0,482.0,amber heard hid video and lied about testimony that proved depp was framed!,,,,,,,,,, +351,https://www.youtube.com/watch?v=JbmD9SUnpDo,0,0,{'Celebrity Insider'},1,youtube,video,original video,"lately there has been a lot of talk regarding amber heard and johnny depp. +with all the evidence against amber, it is tough to imagine her to have a future as an actress! johnny got released from his roles without any real evidence, so if she gets convicted there is a big chance that her career will see an end quick. +we will be going over why exactly we believe this is the case and show you the rumours. + +let us know if you liked the video and make sure to subscribe to stay up to date :) + +subscribe to our instagram to stay up to date on the run: +instagram: https://www.instagram.com/celebrity23insider/ + +subscribe to celebrity insider on youtube to get the newst stories about the famous and for the funniest, most exciting and bizarre facts about their past.",484.0,19471.0,,,,,,18728.0,12.0,0.0,247.0,why amber heard won't have a future as an actress!,,,,,,,,,, +352,https://www.youtube.com/watch?v=gECq8x8b6bo,0,0,{'Viral Vision'},1,youtube,video,original video,"10 celebrities that defended johnny depp against amber heard +the case against johnny depp is raging on as he tries to go and reclaim his name. it’s a long struggle to be sure, but he’s had various people defending him and talking about him in certain ways that no doubt give him a boost in energy. or at the very least, the knowledge that people don’t believe that he is what amber and others say he is. we’ll break down the full list of celebs for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you go, everyone! a look at the johnny depp case and how there has been a litany of people coming forward to defend johnny depp in one form or another. can you believe that so many people, including many of johnny’s exes, have stepped up to defend him? do you think that with support like this they’ll be able to get him off the charges and clear his name? or is he in for a very long court battle? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",41871.0,1102598.0,,,,,,1056676.0,979.0,0.0,3072.0,10 celebrities that defended johnny depp against amber heard,,,,,,,,,, +353,https://www.youtube.com/watch?v=pi0vtWIzBi4,0,0,{'Lost Beyond Pluto'},1,youtube,video,original video,"answer & grounds of defense: https://www.fairfaxcounty.gov/circuit/sites/circuit/files/assets/documents/pdf/high-profile/depp%20v%20heard/cl-2019-2911-plaintiff-answer-grounds-of-defense-1-22-2021.pdf + + +social media + +patreon: https://www.patreon.com/lostbeyondpluto + +instagram: https://www.instagram.com/lostbeyondpluto + +twitter: https://twitter.com/lostbeyondpluto + +tumblr: https://lostbeyondpluto.tumblr.com/ + +soundcloud: https://soundcloud.com/lost-beyond-pluto + +music videos: + +blue eyes: https://www.youtube.com/watch?v=wm2-kyp18ww + +once a liar: https://youtu.be/bgwc09ptuhm + + + +stars intro theme by eva grace",2078.0,28011.0,,,,,,25656.0,11.0,0.0,266.0,johnny depp v amber heard: johnny's defense (you've got the wrong guy),,,,,,,,,, +354,https://www.youtube.com/watch?v=UvsHWTGHmts,0,0,{'Crazed Culture'},1,youtube,video,original video,"amber heard faces 10 years in prison for false accusations against johnny depp!!! +one of the most absurd cases that is the case between the well loved actor johnny depp and amber heard is one that does not appear to be coming to an end anytime soon. in fact what is happening between the just keeps getting more confusing and more strange as time goes on. of course in order to protect both of their names they are each striving to get the justice that they feel they deserve however this really just depends on whose side you are taking on this issue as it has been noted that many find heard to be in the wrong. allow us to break this whole situation down for you but first be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! +https://www.youtube.com/crazedculture?sub_confirmation=1 + +and there it is, the recent on breakdown on the case between johnny depp and amber heard. do you think that johnny depp will eventually receive the justice he deserves? will amber heard lose it all due to the fact that she is truly not the victim in this case? how is this case going to end, what is in store for the two? let us know what you think in the comments down below! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e + +#johnnydepp #amberheard #justiceforjohnnydepp",24544.0,993142.0,,,,,,963776.0,957.0,0.0,3865.0,amber heard faces 10 years in prison for accusations against johnny depp!!!,,,,,,,,,, +355,https://www.youtube.com/watch?v=1rHVlL8c2zg,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard posts proof of aquaman 2 firing?! oops! she's busted?! + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx + +note: this is for reporting purposes only. as it says in the video, do not contact them in any way. +#thatumbrellaguy #amberheard #johnnydepp",5612.0,103875.0,,,,,,97379.0,57.0,0.0,827.0,amber heard posts proof of aquaman 2 firing?! oops! she's busted?!,,,,,,,,,, +356,https://www.youtube.com/watch?v=O5o4OA63Svg,0,0,{'OMG Blast'},1,youtube,video,original video,"why amber heard quit +the fate of amber heard is one that many in hollywood and beyond are curious to talk about. mainly for the reason that right now her place is very much balancing on a razor’s edge. in recent times she has been hailed as a strong actress but also been noted by many as being abusive and lying about everything that went on in her relationship with johnny depp. to the extent that some are trying to get her kicked out of hollywood. and that’s why many think she should just quit and go away. we’ll break it down for you. be sure to like the video and subscribe to the channel! + +❤️like this video and subscribe or for 7 years good luck ❤️ + +i do not take any ownership of the music displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes only. + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter and instagram under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: https://support.google.com/youtube/an...",218.0,7310.0,,,,,,6968.0,10.0,0.0,114.0,why amber heard quit,,,,,,,,,, +357,https://www.youtube.com/watch?v=TkLRjs5Hlgo,0,0,{'The Amber Heard Playlist!!'},1,youtube,video,original video,https://freakonomics.com/podcast/save-me-from-myself-a-new-freakonomics-radio-podcast/,,,,,,,,41.0,,0.0,,why are people arrested for domestic violence so often? (amber heard playlist!!),,,,,,,,,, +358,https://www.youtube.com/watch?v=dHzmD3A9faA,0,0,{'Celebrity Craze'},1,youtube,video,original video,"amber heard thanks fans for their support | celebrity craze + +in hollywood, there are many stars that have ruined their own careers. these celebrities will do things that destroy their reputation and expose their true selves. + +in the case of amber heard, this situation is entirely different. her destruction has been more of a “slow burn."" because she’s tried so hard to convince people she’s a good girl and a victim, but is not getting exposed as actually something else entirely. + +amber's life has taken a downward spiral but she now takes time to thank her fans for their support. all while, johnny depp rebuilds his reputation that amber heard tried to destroy. + +allow us to break it all down. be sure to like the video, hit the like button and notification bell, and subscribe to the channel! + +#amberheard #johnnydepp #justiceforjohnnydepp +--------------------------------------------------------------------------------------------------------------------------- +subscribe: https://www.youtube.com/channel/uc-lztlg05etwyjds1jqcv3w/featured?sub_confirmation=1 + +check out our other videos: + +amber heard's assistant exposes her for lying: https://youtu.be/ya7h0ol5fto + +amber heard reacts to johnny depp loss in court: https://youtu.be/pi-6w1vxn5o + +amber heard furious at johnny depp for releasing new evidence: https://youtu.be/nufjix1nigg + +the real reason amber heard is lying: https://youtu.be/jh-hynwlx5q + +12 times johnny depp tried to warn us about amber heard: https://youtu.be/0tqhcuojsra + +johnny depp responds to amber heard's apology video: https://youtu.be/qr6yoq6bjts + +johnny depp thanks his supporters for defending him: https://www.youtube.com/watch?v=gwume-u9zke + +this channel intends to provide the most breaking celeb news, drama and controversies all in one place. also, information not only about celebrities from hollywood film industry but also famous people around the world. we maintain different playlists which you could come back and watch videos from your desired interest category. + +we also promise to keep our viewers entertained. thanks for taking your time to checkout the channel! + +subscribe to never miss a video.",1.0,103.0,,,,,,95.0,3.0,0.0,4.0,amber heard thanks fans for their support | celebrity craze,,,,,,,,,, +359,https://www.youtube.com/watch?v=FS7xRLeu9rA,0,0,{'Chicas Cosmo'},1,youtube,video,original video,"artistas, famosos,celebridades, tops , cantantes, hollywood, tienes que saberlo, espectáculos + +johnny depp acusa amber heard de mentir acerca de utilizar el dinero de su divorcio para donaciones + +sigue a tucosmopolis: https://www.youtube.com/c/tucosmopolis + +ya somos más de 3,075,698 almas suscritas y unidas en chicas cosmo",549.0,11391.0,,,,,,10712.0,6.0,0.0,124.0,johnny depp acusa amber heard de mentir acerca de utilizar el dinero de su divorcio para donaciones,,,,,,,,,, +360,https://www.youtube.com/watch?v=LatQ88xeNUQ,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"amber heard wants to see 200 twitter accounts to see if they are real. twitter responds to her action. + +tammy tips and tricks : https://instagram.com/tammy.tipsandtrips?igshid=sk5olemcpdhp + +rob’s rebellion star wars channel : + +https://youtube.com/channel/ucneeomqldbqxhdpdmxaq1pg + +twitter : @wars_everything + +email : estarwars1977@gmail.com + +#justiceforjohnnydepp +#justicefordepp",188.0,1525.0,,,,,,1234.0,1.0,0.0,102.0,amber heard tries to dox accounts on twitter !,,,,,,,,,, +361,https://www.youtube.com/watch?v=KPqHSiWJ5pA,0,0,{'YellowFlash 2'},1,youtube,video,original video,"looks like the appeal for johnny depp vs the sun is a go in england! this is a huge win for depp and true justice! + +how to support +►check out my store: https://teespring.com/stores/yellowflash-merch +►check out my patreon: https://www.patreon.com/yellowflashcomics + +where to find me +►check out my twitch: https://www.twitch.tv/yellowflashtwo +►follow me on twitter: @yellowflashguy +►follow me on minds: https://www.minds.com/yellowflash/ +►follow me on odysee: https://odysee.com/@yellowflash:8?r=ebxc2ze5cbcuihj7wkc7kcageacisrvk +►follow me on bitchute: https://www.bitchute.com/channel/bwecegsvy8ab/ +►follow me on parler: https://parler.com/profile/yellowflash +#amberheard #johnnydepp #justiceforjohnny",7461.0,159515.0,,,,,,151085.0,93.0,0.0,876.0,amber heard on the run?! johnny depp finally gets some justice!,,,,,,,,,, +362,https://www.youtube.com/watch?v=e518XGO-Zy4,0,0,{'Irman N'},1,youtube,video,original video,"amber heard spotted on a valentine's day gateway with her girlfriend bianca butti in los angeles, california, february 14, 2021",3.0,1550.0,,,,,,1464.0,65.0,0.0,18.0,amber heard spotted on a valentine's day gateway with her girlfriend bianca butti in los angeles.,,,,,,,,,, +363,https://www.youtube.com/watch?v=JgK03HpSQ2A,0,0,{'Small Screen'},1,youtube,video,original video,"hey all! today on small screen stories we'll be talking about amber heard and elon musk, if the accusations are true. more info on hbo max/warner media (of course) with special guest clint baker. + +all of this, and more, on today’s episode of small screen stories! + +don't forget to like and subscribe! + +intro by 42cutcom. subscribe to his channel over at https://www.youtube.com/channel/ucqsqc5w-yzgqsmdt004nnga. + +► subscribe to my youtube channel... https://www.youtube.com/c/smallscreenco + +►read the website... http://www.small-screen.co.uk/ + +►follow small screen on… +twitter: https://twitter.com/smallscreenco +facebook: https://www.facebook.com/smallscreenco/ +instagram: instagram.com/smallscreenco/",37.0,507.0,,,,,,467.0,1.0,0.0,2.0,elon musk + amber heard = ghislaine maxwell? warnermedia and hbo max got issues?,,,,,,,,,, +364,https://www.youtube.com/watch?v=OgRXZBndrJA,0,0,{'Truth Exposé With Bri'},1,youtube,video,original video,"this is an edited clip/condensed version of colonel kurtz’ interview with marilyn mansons former personal assistant, paula. i’ve condensed this video for the purpose of showing paula detailing her experience with johnny depp & amber heard while they were married. i’m not a professional video editor, so some of it may seem choppy, as i was trying to cut it down to the most important points paula made. + +if you’re interested in watching the full interview, here is the link for that: + https://youtu.be/-t-1wygftws + +i highly recommend following colonel kurtz on her channel! she’s got some great content, and puts a lot of heart and effort into her work. + +people need to know that amber heard is a dangerous individual, and paula is the second person recently to come out with uncomfortable stories regarding amber. there was another woman and model who recently came forward with allegations of sexual assault by amber heard. it’s said she did a podcast that will be posted soon, after she gets a police report established, so please keep an eye out for that as well. + +colonel kurtz twitter handle: +@colonelkurtz99 + +my twitter handle: +@nearlydear",153.0,8677.0,,,,,,8485.0,7.0,0.0,32.0,mansons former assistant’s experience w/ amber heard,,,,,,,,,, +365,https://www.youtube.com/watch?v=81OfA8pWNUI,0,0,{'It’s Bintou'},1,youtube,video,original video,"déroule moi + + + + + + +sources ⤵️ + + +court of appeal : https://youtu.be/cpbpingmqni + +nick wallis (journalist) : https://www.nickwallis.com/depp-trial + +adam waldman : twitter (suspendu indéfiniment?) + +thatumbrellaguy : + +https://youtu.be/tatpp1ofja8 (audio entre johnny et amber) + +https://youtu.be/lpknbpe8jro (connexion entre le magazine the sun et la cour) + + + + +coucou 🦋 +aujourd'hui, l'on parle du procès de johnny depp qui implique l'actrice amber heard et le magazine anglais the sun. nous allons principalement parler de la 1er partie du procès qui se déroule au royaume-uni. nous conclurons la vidéo en survolant les informations qui sont sorties par rapport à la deuxième partie du procès qui se déroulera au usa. dans cette video, nous allons aussi survoler les principales dépositions, les anciennes et nouvelles preuves, les suppositions autour d'une soit disant relation entre amber heard et elon musk, les 7 millions de dollars qu'elle a promis de donner à un hôpital : « children hospital of los angeles » et bien d'autres choses. + +bon visionnement ! + +♡ trouve moi sur : +business : itssbintou@gmail.com +twitter : https://twitter.com/itsbiintou/ +instagram : https://www.instagram.com/itssbintou/?hl=fr +snapchat : itssbintou",638.0,8433.0,,,,,,7633.0,6.0,0.0,156.0,"johnny depp vs amber heard : les dépositions, nouvelles preuves, demandes de la cour americaine etc",,,,,,,,,, +366,https://www.youtube.com/watch?v=wXN7vi9YoZg,0,0,{'¡HOLA! TV'},1,youtube,video,original video,"continua la batalla mediática y legal entre amber heard y el actor johnny depp, al acusar a su ex esposa de incumplir su promesa de donar todo el dinero obtenido por su divorcio a fundaciones estadounidenses. las organizaciones benéficas solo habrían recibido 100.000 dólares por parte de la actriz de los 3.5 millones que recibió luego del divorcio con el actor de ‘los piratas del caribe’. la abogada de la modelo estadounidense afirmó que su clienta tiene intenciones de cumplir su promesa pero que el retraso se debe a la cantidad de demandas que recibe por parte de depp. + +visítanos en: +página oficial: http://hola.tv/ +fb: https://www.facebook.com/holatvamerica/ +twitter: https://twitter.com/holatv +instagram: https://www.instagram.com/holatv/",111.0,13990.0,,,,,,13841.0,5.0,0.0,33.0,johnny depp y amber heard: una lucha interminable continúa en 2021 | ¡hola! tv,,,,,,,,,, +367,https://www.youtube.com/watch?v=i562oRbXm-g,0,0,{'Doctor Soup'},1,youtube,video,original video,"has amber heard been replaced by emilia clarke? well, this seems to be a rumor, but lets check it out! + +#justiceforjohnnydepp​ #amberheardjohnnydepp​ + +amber heard and johnny depp continue to go at it. we all know the true perpetrator, depp is innocent, heard not. learn more in this video. + + +twitter: iamdrsoup +other awesome channels: +sec +stevie j raw +come geek some +lost beyond pluto",203.0,2976.0,,,,,,2723.0,3.0,0.0,47.0,emilia clarke to replace amber heard aquaman 2; real or rumor?,,,,,,,,,, +368,https://www.youtube.com/watch?v=bWddtU5fJL0,0,0,{'Trinity Trin'},1,youtube,video,original video,"amber heard has been tripling down in her attacks of those who would support her ex-husband johnny depp in their on-going legal battle on social media. + +it's important to point out that never has any of his camp attacked every day people like you and i and yet she has employed media people to smear real dv survivors and supporters of him because they see the truth. + +it is also important to point out that they are using a tactic that is often used in the media when they want to spin a life and that is something called logical fallacies. https://yourlogicalfallacyis.com/ you would benefit from studying the different types of fallacies and how they are used to fool the public, quite easily.",8.0,195.0,,,,,,185.0,0.0,0.0,2.0,amber heard's camp attacking and twisting words of supporters of jd on social media,,,,,,,,,, +369,https://www.youtube.com/watch?v=yANbdh_gK6c,0,0,{'Curious Edits'},1,youtube,video,original video,#shorts,80587.0,1917877.0,,,,,,1834308.0,2478.0,0.0,504.0,amber heard whatsapp status full screen 🔥,,,,,,,,,, +370,https://www.youtube.com/watch?v=yH7iqjrBWm0,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard's biggest mistake will wreck her! she never saw it coming! + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",5594.0,100728.0,,,,,,94452.0,78.0,0.0,604.0,amber heard's biggest mistake wrecks her! she never saw it coming!,,,,,,,,,, +371,https://www.youtube.com/watch?v=jQTD2pDwoz4,0,0,{'Viral Vision'},1,youtube,video,original video,"10 times johnny depp tried to warn us about amber heard +the question of “why?” is something that has been popping up a lot in regards to the case between johnny depp and amber heard. such as “why is this going this far?”, “why hasn’t johnny depp been cleared yet?”, “why would amber heard do these things?”, “why did johnny not come forward sooner about this?” and so on and so forth. but while we don’t have all the answers to those questions, we are able to look back in hindsight and see if johnny depp tried to warn us about all that was going on with his relationship with amber heard. we’ll show some examples of this. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone! a look at amber heard and johnny depp and how things were secretly teased before we knew what was really going on. what do you think about these events or scenes? can you believe that no one really picked up on this before? do you think many people owe johnny depp an apology for all of this? are there more instances of this that we just don’t know about? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",861.0,22135.0,,,,,,20996.0,22.0,0.0,256.0,10 times johnny depp tried to warn us about amber heard,,,,,,,,,, +372,https://www.youtube.com/watch?v=Dnv3kg2Jv6g,0,0,{'Upsocl'},1,youtube,video,original video,"cuando amber heard era una total desconocida apareció, de la noche a la mañana, en una alfombra roja mexicana y de la mano del galán de telenovelas más importante del momento. todo indicaba que pronto sonarían campanas de boda, pero su misteriosa historia no tomó ese rumbo. + +suscríbete al canal, activa la campanita de notificaciones y disfruta contenido todos los días y para todos los gustos http://bit.ly/yt-upsocl. + +súmate a nuestra comunidad #upsocl: +facebook http://bit.ly/fb-upsocl +instagram http://bit.ly/ig-upsocl + +encuentra muchos artículos para leer y entretenerte en nuestro sitio http://bit.ly/web-upsocl",1426.0,146283.0,,,,,,144529.0,54.0,0.0,274.0,valentino lanús tuvo una caótica relación con la ex novia de johnny depp,,,,,,,,,, +373,https://www.youtube.com/watch?v=8BJ2Vl4kBaU,0,0,{'JOHNNY DEPP`s FILES'},1,youtube,video,original video,"джонни депп навсегда покинул «пиратов» после решения суда? означает ли это, что «пираты карибского моря» без джонни деппа обреченными на провал? уберут ли аниматроника джека воробья из парков аттракционов, когда студия решила переписать вселенную пиратов? +петиция о возвращении джонни к роли джека воробья https://www.change.org/p/walt-disney-we-want-johnny-depp-back-as-captain-jack-sparrow +петиция о возвращении джонни к роли геллерта гриндевальда https://www.change.org/p/the-people-warner-bros-bring-johnny-depp-back-as-gellert-grindelwald +петиция об отстранении эмбер из аквамена 2 https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2 +видео о разоблачении эмбер херд https://www.youtube.com/watch?v=cye-el1m8ik +#justiceforjohnnydepp +петиция за справедливость для джонни деппа https://www.change.org/p/britain-justice-nicol-needs-to-be-fired-justice-for-male-da-survivors?recruiter=296606681&utm_source=share_petition&utm_medium=twitter&utm_campaign=psf_combo_share_initial&utm_term=psf_combo_share_abi&recruited_by_id=873c0390-d7ab-4b64-b0a9-d311ba85364b +петиция ""кто чем занимается"" (от автора петиции об отстранении херд с роли меры в ""аквамен-2"" https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2/u/28641417?s=09 + +об этом канале: +всегда нравились ""пираты карибского моря""? мечтал получше узнать джонни деппа и все, что с ним связано? тогда советую подписаться на канал, посвященный американскому актеру джонни деппу! +здесь ты узнаешь самые последние новости из жизни и творчества джонни, а также факты о съемках фильмов, музыки, фотосессий и биографии. ""пираты карибского моря"", ""фантастические твари"", ""город лжи"", ""в ожидании варваров"","" минамата"" и о многих других работах джонни деппа тебе расскажет владимир на канале ""файлы джонни деппа""! переходи по ссылке и непременно подписывайся на этот потрясающий канал, да, и про уведомления не забудь, ведь это очень важно. ссылка на канал здесь: https://youtube.com/c/johnnydeppfiles + +контакт / b u s i n e s s : +deppfiles@gmail.com +instagram: @johnny_depp_files +twitter @_andreev23 +telegram channel https://t.me/johnnydeppfiles",645.0,5860.0,,,,,,5042.0,10.0,0.0,163.0,джонни депп навсегда покинул пиратов карибского моря после отказа в апелляции? // файлы джонни деппа,,,,,,,,,, +374,https://www.youtube.com/watch?v=kxgHoou229k,0,0,{'Nicki Swift'},1,youtube,video,original video,"johnny depp is one of the most uniquely talented actors in hollywood. he has the innate ability to mix strangeness with coolness, and somehow he makes it looks sexy and endearing. + +there is no doubt that depp is an exceptional talent and he has been pulling off great performances on the big screen for decades. he has embodied some of the most iconic characters from ""edward scissorhands"" to captain jack sparrow. however, even though depp has a reputation for being one of the most talented actors in the business, he has also built a long list of celebs who can’t stand him. so, who are these celebs who are not fans of the talented johnny deep? we have the deets. + +#celebs #amberheard #johnnydepp + +amber heard | 0:00 +elon musk | 1:43 +wichita | 2:55 +ezra miller | 4:00 +daniel radcliffe | 5:06 +michael man | 6:21 +the sun's dan wootton | 7:19 +angelina jolie | 8:35 +the white house | 9:38 +npr's celeste headlee | 10:44 + +read full article: https://www.nickiswift.com/214843/celebs-who-cant-stand-johnny-depp/",278.0,15655.0,,,,,,14574.0,572.0,0.0,231.0,celebs who just can't stand johnny depp,,,,,,,,,, +375,https://www.youtube.com/watch?v=6I88gY_bLyg,0,0,{'The Amber Heard Playlist!!'},1,youtube,video,original video,,,,,,,,,44.0,,0.0,,response to concept creator (amber heard playlist!!),,,,,,,,,, +376,https://www.youtube.com/watch?v=A23FphD606M,0,0,{'Keeley Talks'},1,youtube,video,original video,why is amber heard so caught up on twitter subpoenas? heres my theory.. let me know what your theory's are in the comments 💜,27.0,149.0,,,,,,112.0,0.0,0.0,10.0,why is amber heard so held up on twitter subpoenas?,,,,,,,,,, +377,https://www.youtube.com/watch?v=aHu0emUuQ-I,0,0,{'Clips HD'},1,youtube,video,original video,"with renewed faith in humanity and inspired by superman's selfless act, bruce wayne enlists the help of diana prince to take on a much larger foe, alongside aquaman, cyborg and the flash. + +#mera +#aquaman +#justiceleague +#amberheard +#superheroine +#superhero +#jasonmomoa +#steppenwolf",845.0,68500.0,,,,,,67399.0,43.0,0.0,213.0,mera & aquaman vs steppenwolf - zack snyder's justice league (2021) l amber heard jason momoa,,,,,,,,,, +378,https://www.youtube.com/watch?v=hdDzdh9Gl7I,0,0,{'The Amber Heard Playlist!!'},1,youtube,video,original video,,,,,,,,,342.0,,0.0,,you must be kidding! for megahoboho (amber heard playlist!!),,,,,,,,,, +379,https://www.youtube.com/watch?v=AAX0myRmkBU,0,0,{'Funky Funions!'},1,youtube,video,original video,"amber is a victim of abuse. she would not go through all the pain of making this public which involves: getting death threats, negative mental health effects and losing career opportunities if these allegations were not real. i stand with amber and everyone that is against abuse should too. unsubscribe if you disagree. i don't want people that disagree watching my videos. thank you, amber, for making this pubic. it was very courageous of you. when johnny depp loses in court, i know you will inspire other women to go public.",5.0,362.0,,,,,,275.0,48.0,0.0,34.0,i stand with amber heard,,,,,,,,,, +380,https://www.youtube.com/watch?v=_BGBuThWscE,0,0,{'Trending Now'},1,youtube,video,original video,"amber heard facing 5years in prison due to bribing her sister to lie on her behalf... +johnny depp and amber heard, the two names that just do not seem to be leaving the media anytime soon. as time continues, the case between the two is one that clearly presents it self to be anything but boring. amber heard has been accused of spreading lies about her ex johnny depp, but how far did she take these lies? well many are saying that she may have gone forward and bribed her sister to go ahead and cover for her on the stand because at this time she kind of appears to be out of options when it comes to finding witnesses to back up her side. allow us to provide you with the details about it all, but first be sure to like the video and subscribe to the channel below. + +#amberheard​ #johnnydepp​ #justiceforjohnny",0.0,15.0,,,,,,15.0,0.0,0.0,0.0,amber heard facing 5 years in prison due to bribing her sister to lie on her behalf,,,,,,,,,, +381,https://www.youtube.com/watch?v=_jnDEAbaLZw,0,0,{'The Celebrity Pie'},1,youtube,video,original video,"johnny depp & amber heard : 10 celebrities who supported johnny depp against amber heard. + + winona ryder + +first of all in the list we have winona ryder! winona ryder is one of the ex-partners of johnny depp and the two dated for four years from 1989 to 1993. both stars got a lot of media attention and their relationship was heavily publicized. she clearly admitted that he was never abusive or violent towards her and that allegations he is a “wife-beater” were “impossible to believe”. +in her statement, ryder, said: “the idea that he is an incredibly violent person is the farthest thing from the johnny i knew and loved. i cannot wrap my head around these accusations. he was never, never violent towards me. he was never, never abusive at all towards me. he has never been violent or abusive towards anybody i have seen.” +she made her point pretty clear that johnny was nothing but pure gentleman in their relationship! + + penelope cruz + +guys with several people coming forth, testifying the aquaman star amber heard’s abusive and ‘manipulative’ behavior, the latest to step forward was penelope cruz who extended her support to depp in the midst of the drama. +the 45-year-old vanilla sky actor wrote a declaration in support of the pirates of the caribbean star, stating the allegations came as ‘unbelievable’ to her given depp’s ‘kind’ and ‘generous’ nature. she even said, +""i do not want to call anyone a liar but from my experience of johnny, it is impossible to believe that such horrific allegations are true. i find it extremely upsetting knowing him as i do,"" + +sharon osbourne + +in an interview with cbs's the talk sharon osbourne admitted that she understands depp and heard’s relationship dynamic because she shares a similar one with her husband ozzy. +the star was quoted telling the leading daily, ""do you know what i think,” after all “it takes two to tango. i think that they had a very vulnerable relationship. i think they're both as bad as each other.” +so it is wrong to accuse depp only! + + + + +welcome to my channel, ' the family guy'(this is not a compilation channel)! this channel brings out interesting and trending celebrity news with full of entertainment, we create videos on your favorite celebrities, top 10 celebrities, movies, hollywood celebrities, talk shows and many more... + +here all my videos are originally made by me with voice overs, by following youtube copyright terms and conditions. all my clips fall under fair use because i add commentary with my original editing skills and i put a lot of hard work into these videos. + +thank you for your valuable time, if you are interested into these kind of stuff, please consider subscribing to our channel and support my hard work if you enjoy watching our videos regularly. + +subscribe: https://bit.ly/30kr4eb + +#johnnydeppamberheard #johnnydeppandamberheard #johnnydeppamberheardaudio #amberheardjohnnydepp #johnnydeppamberheardinterview",35.0,2182.0,,,,,,2138.0,0.0,0.0,9.0,10 celebrities that defended johnny depp against amber heard.,,,,,,,,,, +382,https://www.youtube.com/watch?v=VypGAD2GyTk,0,0,{'Rumoured'},1,youtube,video,original video,"why johnny depp and amber heard’s relationship is hollywood’s biggest tragedy + +once upon a time, johnny depp and amber heard lived in hollywood’s largest palace, filled with the hottest movie-star couples of all time. that was until things went left - real quick. the couple were only married for a year, and divorced in 2016. i mean... in the celebrity world, that’s pretty ordinary. but what was far from normal is the way it happened! until this day, hollywood is still going up in flames because of the split between johnny and amber with multiple people being dragged into the never-ending divorce! here’s how the love story turned into a nightmare... + +#johnnydepp #amberheard",362.0,18525.0,,,,,,18024.0,9.0,0.0,130.0,why johnny depp and amber heard’s relationship is hollywood’s biggest tragedy,,,,,,,,,, +383,https://www.youtube.com/watch?v=gtTV61kUgRo,0,0,{'Stevie J Raw'},1,youtube,video,original video,"the ""actress"" is so much of a nobody that when someone says ""amber heard"" most reply by saying ""amber who?!"" + +let's talk about it! + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join +art of elysium donation page - https://www.pledge.to/the-art-of-elysium + +justice for johnny depp t-shirts (proceeds go to charity): +design 1 - https://t.co/uycndh9ebj?amp=1 +design 2 - https://t.co/hdmq0wicke?amp=1 +design 3 - https://t.co/lqmeoidmje?amp=1 +design 4 - https://t.co/lkteqqdxhg?amp=1 + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#justiceforjohnnydepp #amberheard #johnnydepp",555.0,6117.0,,,,,,5420.0,5.0,0.0,137.0,amber heard is a nobody! ft. sandi brown,,,,,,,,,, +384,https://www.youtube.com/watch?v=5ahVdkkYz_k,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"please do not send any hate to bianca butti, she's a survivor and deserves none, but amber heard on the other hand... thats another story! let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +☆other platforms☆ + + +•backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + +☆support the channel☆ + +•become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +•if you want to support my channel, please check out my patreon and subscribe star below: + +•patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp #biancabutti",1102.0,21923.0,,,,,,20519.0,23.0,0.0,279.0,amber heard hits new low | not helping her girlfriend during cancer treatment & had to take charity!,,,,,,,,,, +385,https://www.youtube.com/watch?v=SkvoYGvnG2Q,0,0,{'I Stand By Johnny Depp'},1,youtube,video,original video,"there are rumors circulating around social media that johnny depp career is sinking while amber heard's career is thriving while other rumors are saying that amber heard is being fired from +aquaman 2. +are these stories true or just click bait? please join me as i separate fact from fiction.",0.0,11.0,,,,,,11.0,0.0,0.0,0.0,why is johnny depp so pissed!? is amber heard really fired from aquaman 2?,,,,,,,,,, +386,https://www.youtube.com/watch?v=L4WnqU8Dj00,0,0,{'Famous Factor'},1,youtube,video,original video,"consequences amber heard is facing (justice for johnny depp) +the johnny depp and amber heard court drama made a major plot twist when johnny depp filed a defamation lawsuit against his ex-wife. he not only claimed that she lied in court, but also that she was abusive toward him. however, the actors will need to wait even longer to get an official court ruling. if the court rules in johnny depp’s favor, amber heard could be facing serious consequences. + +the possibility of amber heard going to jail already has fans asking who would replace her in aquaman 2. and even if she doesn’t get sentenced to jail time, based on the information that johnny depp has already released to the public, many fans have petitioned for amber heard to be replaced in aquaman 2 regardless. rumors have even started swirling that emilia clarke would be her replacement. be sure to watch the whole video and see what lies amber heard has been hiding all these years! in addition, do us a favor and like the video and subscribe and turn on the notification bell. we’ll see you in the next video! + +subscribe if you haven’t already!: +https://www.youtube.com/channel/ucyqhsdyetzrfpd-lhfxkisw?sub_confirmation=1 + +in this video, we breakdown the consequences amber heard is facing. be sure to subscribe to famous factor. thanks for watching this video: consequences amber heard is facing + +related videos: + +amber heard faces 10 years in prison for accusations against johnny depp!!! +https://www.youtube.com/watch?v=uvshwtghmts + +the real reason amber heard could end up behind bars +https://www.youtube.com/watch?v=6qegxqmswl8 + +top 10 celebrities who defended johnny depp +https://www.youtube.com/watch?v=uj9kutxlulw + +amber heard facing 10 years in prison for fake johnny depp accusations!? +https://www.youtube.com/watch?v=tybocw3gqzc + +amber heard officially fired from aquaman 2 role! (reactions) +https://www.youtube.com/watch?v=qbcexsvjbrm + +#hollywood #amberheard #johnnydepp",1.0,30.0,,,,,,28.0,0.0,0.0,1.0,consequences amber heard is facing (justice for johnny depp),,,,,,,,,, +387,https://www.youtube.com/watch?v=rVUnJ3ddgLk,0,0,{'TheLyfeofaFreeSpirit'},1,youtube,video,original video,"#thelyfeofafreespirit #amberreid #reaction + +the coldest water bottle - https://thecoldestwater.com/?ref=thelyfeofafreespiritg +coldest giveaway 👉 https://thecoldestwater.lpages.co/1-gallon-giveaway-thelifeofafreespirit +use promo code "" tlfs "" to get 10% off your entire order. + +i am a free spirit, youtuber & a baddie 💁🏽‍♀️. on my youtube channel i love to do reactions, drama videos and provide commentary on my experiences and more. i’m always down to have fun but i’m here for when things get real 💯 go ahead and subscribe if you haven’t already! xoxoxoxo see you in the next one😘🖤💜 + +😈my of - https://linktr.ee/thelyfeofafreespirit 😈 + +😀 my patreon - https://www.patreon.com/join/thelyfeofafreespirit + +subscribe 💜 subscribe 💜 subscribe + +follow me babes! i won't lead you astray 😈",603.0,11063.0,,,,,,10235.0,19.0,0.0,206.0,amberlynn reid & foodie beauty are morphing! | haul edition 💁🏽‍♀️🙄,,,,,,,,,, +388,https://www.youtube.com/watch?v=1PZ4BNyPQro,0,0,{'TOO SERIOUS.'},1,youtube,video,original video,"we did it boys.... well, kinda. in this episode we talk about the amber heard and johnny depp debacle, xir potatohead's new name, and forced tipping in restaurants post covid. enjoy! + +follow us: +instagram: https://www.instagram.com/tooseriouspodcast/ +spotify: https://open.spotify.com/show/2kd9nzbozgabxvnhclhe1o?si=ktvsp0p-qzgphwtcg66e2g +apple podcasts: https://podcasts.apple.com/us/podcast/too-serious-with-justin-gill/id1498296513 +podbean: https://tooseriouswithjustingill.podbean.com/",5.0,136.0,,,,,,130.0,1.0,0.0,0.0,amber heard was finally fired - too serious. episode 52,,,,,,,,,, +389,https://www.youtube.com/watch?v=DWj6j5gt6nE,0,0,{'All That Matters'},1,youtube,video,original video,"amber heard lawyers expose her & quit absolutely no chance (interview) + +johnny depp and amber heard have been dealing with hard times for quite some time now. after amber sued him for 14 cases of violence, it was johnny depp’s turn to fix his image and he did. the evidence that was shown in the court which can be found in the video made amber heard’s lawyer quit and the whole situation took a different turn in johnny’s favor. what do you think of this couple? are amber heard’s claims real? let me know what you think is the comments down below! + +#johnnydepp #amberheard #exposed + +i do not take any ownership of the music displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes only.",255.0,1667.0,,,,,,1402.0,0.0,0.0,10.0,amber heard lawyers expose her & quit absolutely no chance (interview),,,,,,,,,, +390,https://www.youtube.com/watch?v=1j4fHKp8Yms,0,0,{'eHacker'},1,youtube,video,original video,"amber heard blocks literally everyone on twitter who dislikes her! +check out channel membership if you are keen to support the channel! +new members get their names in the credits! + +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com +donate direct to support : coming soon! + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods",315.0,2317.0,,,,,,1850.0,2.0,0.0,150.0,amber heard blocks literally everyone on twitter who dislikes her!,,,,,,,,,, +391,https://www.youtube.com/watch?v=2RqNnSJLg9Q,0,0,{'Crazed Culture'},1,youtube,video,original video,"johnny depp reacts to the release of new body cam footage confirming amber heard's lies... + +the ongoing case between johnny depp and his ex wife, amber heard, is one that has completely shocked the entire celebrity world. fans of both have been trying to discover who is truly the bad guy in this case. mainly because it was made clear at first that johnny depp was the one in the wrong in their relationship but then tons of evidence rose to the surface that it was actually amber heard who was at fault. with new and never seen before evidence rising to the surface, it seems that johnny depp may have more to further back up what he has been saying this whole time and could completely change the outcome of the case. allow us to break it all down for you but first be sure to like this video and subscribe to the channel below! + +click here to enter the giveaway! +https://www.youtube.com/crazedculture?sub_confirmation=1 + +#justiceforjohnnydepp #amberheard #johnnydepp + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",1267.0,38258.0,,,,,,36668.0,32.0,0.0,291.0,johnny depp reacts to the release of new body cam footage confirming amber heard's lies...,,,,,,,,,, +392,https://www.youtube.com/watch?v=mWiPDaZ1qEo,0,0,"{""LET'S Talk Everything""}",1,youtube,video,original video,"amber heard reportedly fired from ‘aquaman’ for reasons unrelated to depp +#short #trending #viral",0.0,27.0,,,,,,27.0,0.0,0.0,0.0,amber heard reportedly fired from ‘aquaman’ #amberheard #short #jonnydeep #tiktok #viral,,,,,,,,,, +393,https://www.youtube.com/watch?v=VTguEXUJQOQ,0,0,{'Looper'},1,youtube,video,original video,"among the many changes director zack snyder made to his cut of justice league, he gave a larger role to amber heard, who plays the atlantean princess mera. her character gets a bit more developed in the four-hour film, with a battle against steppenwolf and a role in the knightmare ending that implies aquaman is no longer among the living. + +heard was reportedly one of the few actors to be called in to do reshoots when the snyder cut was in production. + +after completing those reshoots, heard told comicbook.com, + +""i'm super excited about it. we just wrapped on reshoots and i just love nerds. i f---ing love nerds, excuse my language."" + +she explained that nerds are often connected to great projects and that ""nerd passion"" drives people to want to be part of something. however, following the release of the movie on hbo max, she revealed something else: that cool atlantean costume she wore basically makes no sense. + +in an amusing instagram video uploaded on march 31, heard appears to be in her trailer, wearing her full-body costume complete with the headpiece, though it's not clear whether it's from shooting for the original film or reshoots for the snyder cut. rather than imbuing her with any special powers, though, the costume appears to be hampering her mobility. + +heard apparently can't sit down in her costume, not can she do much else. as she tries to hoist herself to a standing position, the actress knocks over a cup, the contents of which form a green pool on the floor. although she gamely tries to grab it off the floor, she can't bend over far enough to reach it. generally, it seems that the bodysuit in question has very little give to it, making it impossible for her to use her knees and also making it difficult for her to bend at the waist. she tries some twists, but nothing seems to work particularly well. heard sardonically captioned the image, + +""she's beauty and she's grace."" + +fortunately, none of this really shows up in the movie. it's a good thing she's just standing still in some of her dialogue scenes with aquaman. the movie creates an illusion that this outfit is pliant and elastic enough for her to fight alien invaders in it — underwater, mind you — and comfortable enough for a long trek in a post-apocalyptic wasteland. but in reality, the costume is clearly more about making mera look cool than letting her be functional in any way. + +there has been a long history of criticism against how women are often outfitted in superhero media. as activist holly jacobs pointed out in the twitter thread that followed heard's post of her video there, + +""practicality is never a priority in outfitting women in the media industry."" + +with most costumes, though, the problem is less about inability to move and more about skimpiness. one oft-shared twitter post from the time of the original film's release in 2017 compared the costumes worn by the amazons and designed by lindy hemming for the patty jenkins-directed wonder woman — complete with breastplate armor — and the leathery, midriff-baring amazon costumes from 2017's justice league, as designed by michael wilkinson. + +heard's justice league costume overall is better than many. while form fitting, it is a full-on regal ensemble befitting her station and her role in atlantean culture, complete with a crown, shoulder pad armor, gauntlets, leg and knee armor, and carvings that suggest accents. of course, you could argue that the armor focuses on her chest in unnecessary ways, but it's not as revealing as the costumes many other women have had to wear in superhero movies. + +and heard's comparative modesty comes in contrast to jason momoa's general look as aquaman in the film, which basically seems to involve jeans and shirts he's constantly taking off to reveal his bare chest, though later in the movie he also gets a costume upgrade. + +so in some ways, the costume deftly avoids some of the usual criticism while, as observed by cbr, it stays true to the version the character wears to war in the comic books. if only she could move in it, she'd be a superhero to be reckoned with. + +#mera #snydercut #dceu + +read full article: https://www.looper.com/372354/why-meras-costume-from-the-snyder-cut-makes-no-sense/",1235.0,51365.0,,,,,,49556.0,338.0,0.0,236.0,why mera's costume from the snyder cut makes no sense,,,,,,,,,, +394,https://www.youtube.com/watch?v=r6eSNJgxsq8,0,0,{'DBSTELEVISION'},1,youtube,video,original video,"mother of botham jean, allison jean is confident that a texas appeals court will uphold the murder conviction against amber guyger who shot and killed jean’s son, botham. on tuesday guyger’s lawyer argued before the court that her murder conviction should be thrown out and that she should be resentenced on a lesser charge.",5.0,937.0,,,,,,926.0,2.0,0.0,4.0,botham’s mother optimistic guyger’s murder conviction will stand as ex-cop appeals sentence,,,,,,,,,, +395,https://www.youtube.com/watch?v=MtEEwCGLC7w,0,0,{'Daily hot trends'},1,youtube,video,original video,"record the present, look back on the past +data sources: google trends + +tottenham crash out of europa league after surrendering two-goal ... +how to watch justice league: stream the snyder cut online right now +confirmed: united xi to face milan +who is billy monger and what is his challenge for comic relief 2021? +arsenal 0-1 olympiacos live! el-arabi goal - europa league match ... +lingard, shaw & stones return for england +nine-man rangers exit at hands of slavia +dinamo zagreb vs tottenham hotspur, europa league last 16: live ... +boris johnson to lead covid downing street briefing tonight +fans 'congratulate' katie price on 'pregnancy' after cryptic post +brilliant blackmore in cheltenham double +homecinemachoice +don't sleep on drag race u.k.'s bimini bon-boulash +how to watch justice league: stream the snyder cut online right now +chantry house wins as envoi allen falls at cheltenham +kanye west becomes the richest black man in us history +what is misogyny? meaning and definition explained, with police to ... +cheltenham gold cup 2021 pinsticker guide: full list of runners ... +michael rosen joins hospital staff in covid poetry reading | story ... +amber heard lied about donating $7m divorce money to charity ... +coleen nolan and shane richie marriage: how long were they ... +sex and the city star's erotic thriller deadly illusions' ending explained +kate garraway on a 'precipice' trying to hold on to husband +'reinvent the macarena': taskmaster's alex horne sets us four ... +nigel adkins appointed new charlton manager on two-and-half-year ... +sheffield wednesday told the pros and cons of handing danny ... +cheltenham day 3 tips: frank hickey's best bets for the 2021 festival +evha jannath: ex drayton manor operator fined £1m after ride death +britney spears files fresh bid to remove her father from ... +cheltenham day 3 tips: frank hickey's best bets for the 2021 festival +census 2021: households face £1000 fine if they fail to fill out form ...",0.0,3.0,,,,,,3.0,0.0,0.0,0.0,daily hotspot(british)20210318,,,,,,,,,, +396,https://www.youtube.com/watch?v=SAA7JDNZhMI,0,0,{'The Amber Heard Playlist!!'},1,youtube,video,original video,johnny depp's appeal was a waste of time and he knew it!! anywhere in america it would be denied and uk (english) law is the primary basis of law in america,,,,,,,,245.0,,0.0,,johnny depp's stupid appeal denied (amber heard playlist!!),,,,,,,,,, +397,https://www.youtube.com/watch?v=V3zsDArOk08,0,0,{'Celebrity Fails'},1,youtube,video,original video,"#celebrity #celebrityfails #shorts +amber heard being embarrassing for 16 seconds tiktok johnnnyddeppp + +we post daily videos of justin bieber , charli d'amelio , noah beck , kim kardashain and many other celebrity fails. + +disclaimer: the video clips posted on this channel are not owned by the channel itself. + +if you are the owner of this video and feel like you haven’t been duly credited please contact me here and i will get back to you asap: emil@socialsummitagency.com + +tags: +jimmy fallon,holly wire,technical difficulties,celebrity news,trends,billie eilish,top 10,ariana grande,sharon stone,funny fails,selena gomez,taylor swift,bad acting,ed sheeran,ellen degeneres,lady gaga,fails 2020,harry styles,celeb news,rihanna,katy perry,celebrity,paris hilton,modern family,shawn mendes,mojo,wardrobe malfunction,beyonce,pop culture,worst acting,celebrity scandals,jennifer lopez,try the trend,demi lovato,camila cabello,rumors,jennifer lawrence,iggy azalea,top ten,meghan trainor,sarah hyland,worst movies,vanilla ice,live tv,red carpet looks,gossip,celebrities,entertainment news,worst performances,luke bryan,solange knowles,top 10 list,interviews,ray j,list,reporters,top 10 actors,hollywire tv,celebrity falls,hollywiretv,singers falling on stage,game show fails,celebrities dumbest moments,cardi b wardrobe malfunction,funny family feud,celebrity stage fails,celebs,bet awards 2015,funny celebrity fails,hollywood celebrities,celebrities who ruined their careers,top 10 celebrities,top 10 fails,embarrassing tv moments,blockbuster movies,family feud fails,celebrity comeback fails,funny game shows,singer fails,worst fails,live tv moments,biggest fails,worst game show answers,celeb fails,performance fails,funny tv moments,style trends,celebs falling,hollywire hot minute,bts hollywire,singers messing up,comeback fails,singers throwing up on stage,live television fails,clevver listed,red carpet style,style pop,award show gone wrong,top 10 celebrity fails,actor fails,embarassing celebrity moments,cardi b reveals,awkward on stage moments,top 10 fails 2020,funny singer fails,celeb comebacks,on stage celebrity fails,top 10 biggest celebrity fails of 2020,game show guests,embarrassing celeb fails,celeb game shows,celebrity game show fails,p diddy falls,live tv mess up,coachella 2019 fails,cringey game show moments,worst celebrity comeback attempts,top 10 acting fails,mistakes on live television,cardi b bathrobe,celebrites failing on stage,funny onstage moments,hilarious game show moments,p diddy bet,technical issues on stage,singers bombing on stage,biggest fails of 2020,stylewire,hashtag cringe,performer fails,acting fails,celebs failing,celebs embarrassed,acting comebacks,actor comebacks,celebrity fails + +celebrity fails,fails,best celebrities fails,celebrity,top 10 celebrity fails,stage celebrity fails,celebrity fails on stage,on stage celebrity fails,celebrity fails funny,celebrity fails moments,celebrity fails compilation,best fails,celebrities fails,celebrity beauty fails,celebrity fails on tv,best celebrities fails 2020,best celebrities fails 2016,celebrity stage fails,funny celebrity fails,celebrity fashion fails,biggest celebrity makeup fails,celebrity game show fails",1841.0,76200.0,,,,,,74007.0,204.0,0.0,148.0,amber heard being embarrassing for 16 seconds tiktok johnnnyddeppp,,,,,,,,,, +398,https://www.youtube.com/watch?v=8QKpgDmKaVA,0,0,{'HYBRID TV'},1,youtube,video,original video,"tags: amber heard removed from aquaman 2 +amber heard removed from aquaman 2 petition +amber heard aquaman +amber heard fired from aquaman +has amber heard been fired from aquaman 2 +amber heard replaced +amber heard replaced by emilia clarke +amber heard replaced by emilia clarke in aquaman 2 +amber heard reaction +amber heard reaction to petition +amber heard johnny depp fight video +amber heard johnny depp fight video hindi +amber heard johnny depp +amber heard johnny depp fight +amber heard johnny depp fight video court +amber heard jason momoa +jason momoa amber heard aquaman interview +aquaman 2 cast mera +aquaman 2 cast amber heard +aquaman 2 cast and crew +aquaman 2 release date +aquaman 2 release date in hindi +aquaman 2 petition +aquaman 2 petition to remove amber +aquaman 2 full movie +aquaman 2 petition +aquaman 2 amber heard fired +#amberheard +#johnnydepp +#aquaman2 +#aquaman",6.0,51.0,,,,,,45.0,0.0,0.0,0.0,amber heard fired from aquaman 2|amber heard removed from aquaman 2|aquaman 2 cast mera|,,,,,,,,,, +399,https://www.youtube.com/watch?v=LD-lHpWG9Nk,0,0,{'Comicstube'},1,youtube,video,original video,"hey guys, +this is the chapter 22 of invincible +hope you guys will love this. +and also please buy the comics to help the publisher and its industry. +make sure to like comment and share +please help this channel to reach 14000 subscribe and also please press the subscription button and also press the 🔔icon to get the notification of the latest released videos + +invincible joins omni-man & kills the guardians of the globe l invincible #16: +https://youtu.be/e8hkoa8pyp0 + +battle beast almost kills invincible l battle beast vs new guardians l invincible #19: +https://youtu.be/hzn1ottzavg + +invincible vs omni-man l nolan almost kills his son l invincible #11-13: +https://youtu.be/_wwe34xk7r0 + +omni-man kills the guardians of the globe l invincible #7: +https://youtu.be/czo5mfpcvyq + +#invincible #omniman #battlebeast",232.0,20491.0,,,,,,20091.0,6.0,0.0,162.0,amber discovered mark's secret identity l invincible #22,,,,,,,,,, +400,https://www.youtube.com/watch?v=9sDPkqqeBqY,0,0,{'IoSonoLahX'},1,youtube,video,original video,"► vestiti da supereroe ➥ http://bit.ly/iosonolahxmerch + +in questa settimana sono emerse delle voci sulla partenza dell'attrice dal dc extended universe, ma l'informatore daniel richtman citato nel video ha confermato che amber heard non è stata licenziata da 'aquaman 2' e che ci sara nel film per la fine del 2022. + +sebbene i ragazzi abbiano raccolto un gran numero di firme per richiedere l'uscita di amber heard, la cosa sembra essere inosservata inosservata per la warner. + +per non parlare dell’aumento di stipendio che si dice avrà l’attrice per questo sequel. + + +► siguimi su: +instagram ➥ https://www.instagram.com/iosonolahx/ +gruppo facebook ➥https://bit.ly/3jl7znq + +***************💌********************* +► contatto: lahxinfo@gmail.com",287.0,3631.0,,,,,,3283.0,5.0,0.0,56.0,amber heard licenziata? ti svelo chi sarà la nuova mera!!,,,,,,,,,, +401,https://www.youtube.com/watch?v=6dEQzB06VuE,0,0,{'Crime Talk'},1,youtube,video,original video,"amber heard arguing with johnny depp full audio: +https://youtu.be/xiuuzvzmyro + +crime talk merch: https://teespring.com/stores/scottreischcom-3 +crime talk amazon page: https://www.amazon.com/shop/crimetalk + +sponsors: +safety siren: https://crimetalkoffers.com + +shop our amazon store: https://www.amazon.com/shop/crimetalk + +background check: https://crimetalksearch.com/ + +join our fb group! +https://www.facebook.com/groups/271853833766509/ +even more content on patreon: + https://www.patreon.com/crimetalk +listen to the podcast: +http://voirdire.libsyn.com/ +crime talk on instagram: +crimetalkwithscottreisch +website: +scottreisch.com + business inquiries: +crimetalk@reischlawfirm.com + + +all clips used for fair use commentary, criticism, and educational purposes. see hosseinzadeh v. klein, 276 f.supp.3d 34 (s.d.n.y. 2017) equals three, llc v. jukin media, inc., 139 f. supp. 3d 1094 (c.d. cal. 2015). + +typical legal disclaimer from a lawyer +(occupational hazard): this is not legal advice, nor can i give you legal advice. sorry! everything here is for informational purposes only and not for the purpose of providing legal advice. you should contact your attorney to obtain advice with respect to any particular issue or problem. nothing here should be construed to form an attorney-client relationship. + +where to send items: +1490 west 121st ave., suite 202 +denver, co 80234 + +#johnnydepp #amberheard #truecrime",728.0,8499.0,,,,,,7589.0,30.0,0.0,152.0,johnny depp’s libel lawsuit put to rest...,,,,,,,,,, +402,https://www.youtube.com/watch?v=mVcjdQnvwyM,0,0,{'0 God'},1,youtube,video,original video,#amberheard #interview #shorts,146.0,3640.0,,,,,,3471.0,6.0,0.0,17.0,amber heard interview,,,,,,,,,, +403,https://www.youtube.com/watch?v=C1r8LwozLVs,0,0,{'Prison Mate Luke'},1,youtube,video,original video,"glares video - https://www.youtube.com/watch?v=btxfy3vwhnq + +recording - https://www.youtube.com/watch?v=aca0kwohtqq + +recording - https://www.youtube.com/watch?v=lc4hf4w7qxa&t=3s + +twitter - https://twitter.com/prisonmateluke + +twitch - https://www.twitch.tv/prisongamerluke + +channel members +- skullsnb0nes +- xxazazelxx +- babes in a box +- tiiop +- first spectre +- bacon shakin' +- dom gaming2001 +- dawn from kanto +- steely +- boughten dad +- semper fidelis +- the guy +- snkelol +- todd schultz +- phoe the dumbass +- jennifer green +- waffelywaffles +- halo saver 117 +- oorah marine corp + +join this channel to get access to perks: +https://www.youtube.com/channel/ucewy...",4919.0,78436.0,,,,,,72740.0,85.0,0.0,692.0,amber heard can't go any lower,,,,,,,,,, +404,https://www.youtube.com/watch?v=VzG4rT-BDEA,0,0,{'ROTTEN APPLES'},1,youtube,video,original video,"proof of amber heard being erratic and a lunatic. +proof of james franco being james franco, a.k.a. scum. + +the truth will set us free! +johnny depp is the sweetest. most humble and genuine actor, artist and musician of our generation. justice for johnny! + +""birds of a feather flock together."" james franco is notoriously unloved in hollywood for pushing drugs on people and being a bully. co-stars have come forward exposing him as a sexual assaulter and as being intimidating and cruel on set. wherever he is so is trouble. and amber? well, she cray. sociopathic psychopathic narcissistic and sadistic. did i forget something? oh yea, we love you johnny and the whole world is sorry. + +thanks so much to everyone who published the videos, uploaded them and narrated them. if any of the rights inc. the music belong to you contact me please.",4647.0,378212.0,,,,,,372255.0,388.0,0.0,922.0,amber heard psychotic in elevator james franco drug dealer #justiceforjohnnydepp sorry johnny depp,,,,,,,,,, +405,https://www.youtube.com/watch?v=8vOmZKBhvTI,0,0,{'R.L Cantale'},1,youtube,video,original video,"more bs from miss heard and friends ,calling 911 and not having proof ,now with body cams from lapd she looks like a fool ,this woman and her friends are very sick people.",2.0,79.0,,,,,,56.0,0.0,0.0,21.0,amber heard and footage from the lapd at heard/ depp residence . nothing they found nothing!,,,,,,,,,, +406,https://www.youtube.com/watch?v=t2YpR8W1ESc,0,0,{'Film Streak'},1,youtube,video,original video,"""please..."" ellen degeneres reacts to loosing her show! +i’m sure most of you guys have seen ellen’s show at least once in your life. do keep in mind that this show has won 17 people’s choice awards and has been very popular among the public. in case you do not know, it’s basically a talk show where ellen interacts with celebrities and there’s banter of all sorts. ellen, in her show, comes off as a funny and interesting, yet a kind personality. 2020, however, has not been very good for either ellen or her show. watch this video till the end to see how hard ellen got hit and what allegations are being leveled against her. we all wish ellen really was as kind, nice, and positive as she appears in the show. + +but[p1] unfortunately, that does not seem to be the case. guys, remember that this show has gone on for over two decades, aired 3,000+ episodes, and has employed more than a thousand employees. when the entire world was about to go in lockdown in march, a dutch beauty blogger by the name of nikkie de jagger was about to change ellen’s life. having appeared in her show in january, nikkie made some comments in a dutch talk show that the show had been far from positive for her. she said that the warm and friendly atmosphere presented in the show had nothing to do with reality. + +here on film streak we are all about the latest spill in hollywood! you can rest assure that we will bring you all the latest celebrity drama and gossip especially concerning you favorite actors! we´ll also make sure to keep you updated on the newest movie updates and releases – so if you are interested in anything that happens in hollywood, you should make sure to stay tuned! + +and there you have it guys! we hope you enjoyed the video! if you did please consider leaving a like and telling us what you though in the comments! + +here are some links to some of our other videos that you might find interesting as well: +""forgive me"" justin bieber apologies to haily bieber (ig live video): https://www.youtube.com/watch?v=u-m_q7fs91i +emilia clarke reaction before replacing amber heard in aquaman 2! https://www.youtube.com/watch?v=pyxp9wxhuww +johnny depp officially rehired | back in a new pirates of the caribbean 6 movie? https://www.youtube.com/watch?v=utozmdfngvk +elon musk speaks against amber heard & defends johnny depp! +https://www.youtube.com/watch?v=woo2bftrrl4 + +so, if you are interested in anything related to hollywood, make sure to smash that subscribe button to see more of our content in the future! 🎬 https://bit.ly/3kzplqd + +#ellen #ellenapology #ellendegeneresapology #filmstreak",5743.0,555871.0,,,,,,545376.0,2871.0,0.0,1881.0,"""please..."" ellen degeneres reacts to loosing her show!",,,,,,,,,, +407,https://www.youtube.com/watch?v=MoNTBFo9eqE,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard's lawyer deletes all evidence after dropping heard like a bad habit! + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",3908.0,55792.0,,,,,,51385.0,29.0,0.0,470.0,amber heard's lawyer deletes all evidence after dropping heard like a bad habit!,,,,,,,,,, +408,https://www.youtube.com/watch?v=D6oUiXEXBLk,0,0,{'SET max'},1,youtube,video,original video,"aquaman has been blinded in a mysterious event. years have passed and soon he regains his sight. however, damage to his land has been done. its up to him and mera to find out what happened. + +hey guys i would like to make it clear that this trailer is fan made. that means it contains clips from other movies, put together with special effects using wondershare filmora video editor and photopea (photopea.com) photo editor. + +►what is fan made movie trailer? + +in a nutshell fan made trailers are created for extreme movie fans. that's why its not for everybody because just like pro-wrestling, some hate it some love it. if you are into fan made trailers which means you appreciate bringing new ideas to your favorite movies. but my trailers, are not like any other, one word to describe it, realistic. + +►macamtv's purpose + +if you are new here my name is jr macam, i'm the man behind your realistic dream trailers. the purpose of the channel is simple (not to trick people haha) , to create a community that is passionate to bring dream movies to life. if that sounds like you want to become a part of, subscribe!!!! + +►support macamtv + +creating this video take days to produce and publish. i do lots of research and takes a lot of time. help macamtv make more dream trailers by supporting + + +►thanks to my patrons! +danielle moore +nazzaria grendanin +jazmyn +lynn queen +james johnson +---------------------------------- +editing details: + +creating aquaman 2 was challenging because i was not into this franchsie. but my dc lover side made me appreciate this film more. i watched this film once and i thought it was decent. the fresh clips are not too hard to find since there are plenty of cosplay to chose from. to avoid making this dream trailer feel low budget i chose clips from the aquaman movie it self. such as the atlantic city. + +the music was great, despite the lack of humor the soundtrack by the equalizer 2 trailer #2 was great because it had lots of trailer fling to it. the main actor himself had lots of movies to chose from since this is the first time i made a project about him. not the first aquaman project though, i did one back in 2020 for one of the trailer style of the infinity saga. + +the line ""is only a myth"" is great connection to how aquaman is a mystical character. the film see had great lines talking about ""gods"" that perfectly fits this dream trailer. speaking of perfectly fits, the clip with aquaman attacks the bad guy we get a transition to a guy getting attacked in the water. + +video credits | aquaman | see (2019) | 3 days to kill | the hollow | the undoing | togo (2019) | candyman (2020) | creating aquaman's suit | ikon collectibles 1:1 by cosplay chris | aquaman cosplay by mike kirts | aquaman's mera costume | diy aquaman cosplay tattoos by the woodland elf | mulher maravhilha vs aquaman by franklin fernandes +music credits | the equalizer 2 trailer #2 soundtrack +--------------------------------------- +►music credit: youtube audio library and thanks to feature presentation youtube channel for providing the trailer soundtracks. + +-------------- + + + +thank you for watching my video. my name is gopal jr and i upload new content every day. if you are looking to pick up tips and tricks for your art, then i hope that you will find my videos helpful. + +i hope you enjoy this video. +please give it a big thumbs up and don't forget to subscribe if you haven't done so already. + +instagram .https://www.instagram.com/p/chpyndzf8fr/?igshid=1l71yc4g6b4sf + +i hope you enjoyed this video + +hit likes. +and do subscribe to my channel + +thank you so much for watching + +god bless you all. +lots of love ❤️",3.0,52.0,,,,,,49.0,0.0,0.0,0.0,"aquaman 2 (2022) teaser trailer - jason momoa, amber heard (fan made)",,,,,,,,,, +409,https://www.youtube.com/watch?v=IlDmhlFqNU0,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard's ""friend"" publicly calls her out, while blasting uk appeals! + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#domestic #amberheard #johnnydepp",3036.0,40063.0,,,,,,36677.0,16.0,0.0,334.0,"amber heard's ""friend"" publicly calls her out, while blasting uk appeals!",,,,,,,,,, +410,https://www.youtube.com/watch?v=J2XXKAcYCCc,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"amber heard subpoenas disney & lapd in an attempt to get whatever they can against johnny depp !! blames johnny depp for everything! what else is new ? + +#justiceforjohnnydepp +#justicefordepp + +tammy tips and tricks : https://instagram.com/tammy.tipsandtrips?igshid=sk5olemcpdhp + +rob’s rebellion star wars channel : + +https://youtube.com/channel/ucneeomqldbqxhdpdmxaq1pg + +twitter : @wars_everything + +email : estarwars1977@gm",193.0,1237.0,,,,,,967.0,0.0,0.0,77.0,amber heard subpoenas disney & lapd !,,,,,,,,,, +411,https://www.youtube.com/watch?v=Dw6vnhfbcUk,0,0,"{""Mr. Zod's Fandom Zone""}",1,youtube,video,original video,"#amberheard is causing a division in a certain group? #timburton is taking a stand against the studio now saying johnny depp is his man on beetle juice 2 or he walks. exclusive content that was from where zod is showing the respect and love johnny depp has for his fans and more! + +you can check out my teespring +https://teespring.com/stores/zod-fandom-zone-store + +plus popculturepb great videos +https://youtube.com/c/popculturepb + +plus my twitter page for notifications on my streams +https://twitter.com/generalzodfz?s=09 + +also see the website where all the latest videos and upcoming videos +http://www.zodsfandomzone.com/",141.0,1596.0,,,,,,1407.0,0.0,0.0,48.0,fandom zone news ( #amberheard causes rift in a certain group?),,,,,,,,,, +412,https://www.youtube.com/watch?v=Slr7tzrkLHs,0,0,{'eHacker'},1,youtube,video,original video,"the stand now at 22% on rotten tomatoes! congratulations amber heard and stephen king! +check out channel membership if you are keen to support the channel! +new members get their names in the credits! +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com + +want paid promo spots? send me a mail or dm on to the info. above! (starting as low as $5! note via: paypal) + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods + +for those interested in why i dislike and criticise disney star wars (link below): + +https://disneystarwarsisdumb.wordpress.com/",621.0,5696.0,,,,,,4851.0,1.0,0.0,223.0,the stand now at 22% on rotten tomatoes! congratulations amber heard and stephen king!,,,,,,,,,, +413,https://www.youtube.com/watch?v=_H4DF9kBP2A,0,0,{'Film Streak'},1,youtube,video,original video,"johnny depps daughter defends amber heard! (video) +so the drama between johnny depp and amber heard has been going on for quite some time now and it was only a question about time before their families and their opinions would be involved in this mess as well. +recently, johnny depp's daughter lily-rose depp has been dragged into the drama and here is her opinion on the entire thing! + +here on film streak we are all about the latest spill in hollywood! you can rest assure that we will bring you all the latest celebrity drama and gossip especially concerning you favorite actors! we´ll also make sure to keep you updated on the newest movie updates and releases – so if you are interested in anything that happens in hollywood, you should make sure to stay tuned! + +and there you have it guys! we hope you enjoyed the video! if you did please consider leaving a like and telling us what you though in the comments! + +so, if you are interested in anything related to hollywood, make sure to smash that subscribe button to see more of our content in the future! 🎬 https://bit.ly/3kzplqd + +#lilyrosedepp #johnnydepp #johnnydeppdaughter #justiceforjohnny #amberheard #filmstreak",148.0,13374.0,,,,,,12864.0,298.0,0.0,64.0,johnny depps daughter defends amber heard! (video),,,,,,,,,, +414,https://www.youtube.com/watch?v=6gGr4R73Nmk,0,0,{'MR. DEVIL Gaming'},1,youtube,video,original video,,4.0,103.0,,,,,,95.0,1.0,0.0,3.0,amber heard (mera) aquaman #cute #love #shorts,,,,,,,,,, +415,https://www.youtube.com/watch?v=Y9wJrXvVLZY,0,0,{'Cosmopolis Cine'},1,youtube,video,original video,"increíble, hollywood, famosos, sorprendente, no lo creerás, impresionante, actores, + +¿amber heard despedida de aquaman 2? + +sigue a tucosmopolis: https://www.youtube.com/c/tucosmopolis + +ya somos más de 939,000 almas suscritas y unidas en cosmopolis cine 939,000",691.0,9020.0,,,,,,8167.0,20.0,0.0,142.0,¿amber heard despedida de aquaman 2?,,,,,,,,,, +416,https://www.youtube.com/watch?v=54FqI0QRnwM,0,0,{'eHacker'},1,youtube,video,original video,"amber heard's stand access video hits 450,000 dislikes!",677.0,5454.0,,,,,,4619.0,7.0,0.0,151.0,"amber heard's stand access video hits 450,000 dislikes!",,,,,,,,,, +417,https://www.youtube.com/watch?v=wYdczqCfgJM,0,0,{'Colonel Kurtz'},1,youtube,video,original video,"amber heard analysis / johnny depp analysis / psychological analysis +in this analysis, i discuss the infamous san francisco meeting after amber heard filed a restraining order against and alleged domestic violence by johnny depp. she asked depp to meet up secretly in san francisco despite the restraining order application. + +(i focus on the texts that both sent to mutual friend christian carino. i think i left out a bit of johnny depp's account where he told someone else--not carino i think--that amber had asked him to hold and comfort her. please let me know where i can find that account by depp so i can update this video.) + +please subscribe to my channel. more celebrity and pop culture videos are coming up. + +my videos are too controversial for monetization, but here's my patreon and tip jar: + +tip jar: https://www.paypal.com/donate?hosted_button_id=z65d3ull278sw +patreon: https://www.patreon.com/colonelkurtz",1090.0,18309.0,,,,,,16858.0,15.0,0.0,346.0,amber heard & johnny depp's secret san francisco meeting: psychological analysis,,,,,,,,,, +418,https://www.youtube.com/watch?v=g9IMPBM2zPk,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"are johnny depp fans rabid? are amber heard's? let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +☆other platforms☆ + + +•backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + +☆support the channel☆ + +•become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +•if you want to support my channel, please check out my patreon and subscribe star below: + +•patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp #thesun",320.0,2768.0,,,,,,2328.0,3.0,0.0,117.0,johnny depp is under attack! | desperate amber heard seeks media help!,,,,,,,,,, +419,https://www.youtube.com/watch?v=xtNrYBtlJYs,0,0,{'Stevie J Raw'},1,youtube,video,original video,"full statement. johnny depp's property manager kevin murphy says amber heard is the aggressor! +this is confirmed by multiple people close to the couple and has been verified by many who support johnny depp against these ridiculous allegations made by amber heard. + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join + +tubebuddy - https://www.tubebuddy.com/steviejreviews + +art of elysium donation page - https://www.pledge.to/the-art-of-elysium + +justice for johnny depp t-shirts (proceeds go to charity): +design 1 - https://t.co/uycndh9ebj?amp=1 +design 2 - https://t.co/hdmq0wicke?amp=1 +design 3 - https://t.co/lqmeoidmje?amp=1 +design 4 - https://t.co/lkteqqdxhg?amp=1 + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#justiceforjohnnydepp #johnnydepp #amberheardisaliar",597.0,7686.0,,,,,,6905.0,1.0,0.0,183.0,johnny depp's property manager kevin murphy says amber heard is the aggressor!,,,,,,,,,, +420,https://www.youtube.com/watch?v=O1Rrb3ET21c,0,0,{'This Happened'},1,youtube,video,original video,"celebrities who spoke up about amber heard's lies + +johnny depp and his ex-wife amber heard have been involved in different legal battles for years now, and it finally looks like this drama might soon come to an end. +johnny’s fans are now saying they can’t wait for justice to be finally served and for the court to prove what the fans claim they knew all along–that amber heard was lying. +and it’s not just johnny’s fans who always believed the actor was telling the truth, but also his celebrity friends and colleagues. +so as we wait for this bitter legal drama to reach its conclusion, let’s take a look at all the times celebs have warned us about amber heard’s lies. + +#elonmusk #johnnydepp #amberheard",16907.0,949307.0,,,,,,929216.0,395.0,0.0,2789.0,celebrities who spoke up about amber heard's lies,,,,,,,,,, +421,https://www.youtube.com/watch?v=Vb_w6miwSOI,0,0,{'Flixet'},1,youtube,video,original video,"in this video, we are going to share something which will prove that amber heard is lying. + +subscribe for more : http://bit.ly/32rc7vi +_______________________________________________________ + +johnny depp's defamation case against a british tabloid who accused him of assaulting his ex-wife amber heard ended in a london court on tuesday, july 28, when the star's lawyer called heard a ""compulsive liar"" and claimed that depp was the real victim of abuse in the relationship. + +music in this video : + +track: odessa — liqwyd & scandinavianz +music provided by audio library plus +watch: https://youtu.be/jny-dp3lgcg",51.0,633.0,,,,,,572.0,1.0,0.0,9.0,this is the prove that amber heard is lying | flixet,,,,,,,,,, +422,https://www.youtube.com/watch?v=azJv2YsAF8I,0,0,{'Rovanson Wu'},1,youtube,video,original video,,1.0,480.0,,,,,,478.0,1.0,0.0,0.0,amber heard london fields,,,,,,,,,, +423,https://www.youtube.com/watch?v=2efXXcwueZU,0,0,{'True Crime Recaps'},1,youtube,video,original video,"amber hagerman saved 1,000’s of other kids, but her case has never been solved. this is the true story of the abduction that created the amber alert system. (grab some tissues!) 𝐒𝐡𝐚𝐫𝐞 𝐭𝐡𝐢𝐬 𝐬𝐭𝐨𝐫𝐲 𝐰𝐢𝐭𝐡 𝐲𝐨𝐮𝐫 𝐟𝐫𝐢𝐞𝐧𝐝𝐬! https://youtu.be/2efxxcwuezu 🎥 +#amberalert #amberhagerman #truecrimerecaps + +true crime recaps breaks down what happened to amber hagerman. in 1996, 9-year-old amber and her brother were riding their bikes one afternoon in arlington, texas. he went home, she stayed behind. only one witness saw hagerman dragged kicking and screaming off her bike in the middle of a grocery store parking lot. her body was found four days later. her autopsy report shows she was kept alive for at least two days. her killer has never been found. + +subscribe to the youtube show! +𝐓𝐚𝐩 ➡️ https://www.youtube.com/truecrimerecaps?sub_confirmation=1 𝐟𝐨𝐫 𝐚𝐥𝐥 𝐭𝐡𝐞 𝐜𝐫𝐢𝐦𝐞 𝐢𝐧 𝟏/𝟐 𝐭𝐡𝐞 𝐭𝐢𝐦𝐞. 🎥 🔔hit the bell for a heads up when it's time to weigh in on a new true crime recaps episode with amy and chris. + +listen to the podcast: https://bit.ly/truecrimerecapspodcast +(or anywhere you get your podcasts!) chris and amy team up to bring you twice the crime in half the time. we're talking true crime the only way an old(ish) married couple can...with plenty of opinions! don't miss it. + +𝐇𝐞𝐲𝐲!👋🏻 +instagram: http://instagram.com/truecrimerecaps +facebook: https://www.facebook.com/allcrimehalfthetime +twitter: https://twitter.com/truecrimerecaps +the whole deal: https://truecrimerecaps.com + +𝐖𝐡𝐚𝐭 𝐢𝐬 𝐚 𝐫𝐞𝐜𝐚𝐩? +""a summary of what has been said; a recapitulation."" -- oxford dictionary. in the true crime genre, a recap is used to summarize the case up to time of posting. fair use: this site contains copyrighted material the use of which has not always been specifically authorized by the copyright owner. we are making such material available in our efforts to advance understanding of the crime and information surrounding it. we believe this constitutes a fair use of any such copyrighted material as provided for in section 107 of the us copyright law. in accordance with title 17 u.s.c. section 107. all information comes from published sources, credited here. ⤵️ + +🎥𝐒𝐨𝐮𝐫𝐜𝐞𝐬 𝐮𝐬𝐞𝐝: +https://www.foxnews.com/us/texas-cold-case-murder-amber-alert-25th-anniversary + +25 years later: the amber hagerman case: https://youtu.be/dsyb_r99vag + +kiro 7/wfaa press conference: https://www.kiro7.com/news/trending/police-release-new-photos-seek-new-info-unsolved-1996-murder-amber-hagerman/dych62jdmvcozfbrs265gckcju/#:~:text=the%20texas%20girl's%20body%20was,bed%20a%20few%20miles%20away. + +missing kids.org article: https://www.missingkids.org/blog/2021/still-searching-for-ambers-killer + +https://www.woodlandsonline.com/npps/storyimages.cfm?nppage=68886",1913.0,32241.0,,,,,,30081.0,13.0,0.0,234.0,amber hagerman’s killer is out there! (true crime behind the amber alert),,,,,,,,,, +424,https://www.youtube.com/watch?v=JBg8-jqWH74,0,0,{'Stevie J Raw'},1,youtube,video,original video,"this is the full uk statement of building concierge trinity esparza who saw amber heard multiple times following an alleged incident and did not see a single mark, bruise or anything out of the ordinary on amber heard's face. + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join + +tubebuddy - https://www.tubebuddy.com/steviejreviews + +art of elysium donation page - https://www.pledge.to/the-art-of-elysium + +justice for johnny depp t-shirts (proceeds go to charity): +design 1 - https://t.co/uycndh9ebj?amp=1 +design 2 - https://t.co/hdmq0wicke?amp=1 +design 3 - https://t.co/lqmeoidmje?amp=1 +design 4 - https://t.co/lkteqqdxhg?amp=1 + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#justiceforjohnnydepp #amberheard #deppheard2022",450.0,4828.0,,,,,,4290.0,2.0,0.0,86.0,building concierge trinity esparza says amber heard had no bruises!!,,,,,,,,,, +425,https://www.youtube.com/watch?v=Rq9CkmjuXFY,0,0,{'Palmistry of the Rich and Famous'},1,youtube,video,original video,"reading johnny depps life, brain and marriage lines.",39.0,1407.0,,,,,,1329.0,2.0,0.0,37.0,reading johnny depps palm - will he find love after amber heard!?,,,,,,,,,, +426,https://www.youtube.com/watch?v=4sAWuUUciQw,0,0,{'Have It All Daily'},1,youtube,video,original video,"title: + +read more stories here: www.haveitalldaily.com + +description: +if you thought that the amber heard and johnny depp drama has ended then it definitely has not. johnny depp’s new argument is that she had asked for a divorce settlement which she claimed she would give away to charity but never actually did. he says her vow to donate the money have her credibility and made him lose his defamation case. at least that is the new angle he is playing in his defamation case. + +johnny depp’s lawyers are appealing against the uk defamation case where depp sued the sun newspaper for libel ... read more here www.haveitalldaily.com",1.0,26.0,,,,,,24.0,1.0,0.0,0.0,"amber heard and johnny depp legal battle is not ending anytime soon, depp fights back after losing",,,,,,,,,, +427,https://www.youtube.com/watch?v=QGKJfGp0YrU,0,0,{'am love filmes'},1,youtube,video,original video,,4.0,272.0,,,,,,267.0,1.0,0.0,0.0,liga da justiça de zack snyder 2021 cenas de mera amber heard,,,,,,,,,, +428,https://www.youtube.com/watch?v=oJNQm_Hu3hM,0,0,{'WWE'},1,youtube,video,original video,"the inaugural wwe women’s tag team champions are crowned in an elimination chamber match featuring the boss ‘n’ hug connection, carmella & naomi, the iiconics, the riott squad and fire and desire: courtesy of wwe network. +wwe network | subscribe now: http://wwe.yt/wwenetwork +--------------------------------------------------------------------- +follow wwe on youtube for more exciting action! +--------------------------------------------------------------------- +subscribe to wwe on youtube: http://wwe.yt/ +check out wwe.com for news and updates: http://goo.gl/akf0j4 +watch wwe on sony in india: http://www.wwe.com/sonysportsnetwork +find the latest superstar gear at wweshop: http://shop.wwe.com +--------------------------------------------- +check out our other channels! +--------------------------------------------- +the bella twins: https://www.youtube.com/thebellatwins +upupdowndown: https://www.youtube.com/upupdowndown +wwemusic: https://www.youtube.com/wwemusic +total divas: https://www.youtube.com/wwetotaldivas +------------------------------------ +wwe on social media +------------------------------------ +twitter: https://twitter.com/wwe +facebook: https://www.facebook.com/wwe +instagram: https://www.instagram.com/wwe/ +reddit: https://www.reddit.com/user/realwwe +giphy: https://giphy.com/wwe +------------------------------------ +wwe podcasts +------------------------------------ +after the bell with corey graves: https://wwe.com/afterthebell +the new day: feel the power: https://wwe.com/feelthepower +uncool with alexa bliss: https://wwe.com/uncoolwithalexa",56688.0,4930875.0,,,,,,4869259.0,2738.0,0.0,2190.0,full match - wwe women’s tag team championship elimination chamber match: elimination chamber 2019,,,,,,,,,, +429,https://www.youtube.com/watch?v=yNXnuQM4GkI,0,0,{'Podcast Now'},1,youtube,video,original video,"emilia clarke may be cast in a lead role in disney+ secret invasion show. if that's true, will she be able to replace amber heard in aquaman 2? it doesn't seem very likely...let's discuss! let me know what you think and make sure to subscribe to the channel for more content!! #emiliaclarke #secretinvasion #amberheard + +subscribe to my second channel!! -https://www.youtube.com/channel/ucwl_77_rksghvimkpjcb3xw + +follow me on twitter - https://twitter.com/podcastnow15 + +join our discord server! - https://discord.gg/c2de68m + +follow us on twitch - https://www.twitch.tv/podcastnow",47.0,1221.0,,,,,,1151.0,4.0,0.0,19.0,emilia clarke not replacing amber heard in aquaman 2? - secret invasion casting,,,,,,,,,, +430,https://www.youtube.com/watch?v=8WM_s2PtKKw,0,0,{'The Celeb Post'},1,youtube,video,original video,amber heard has been hit by rumours about her role in 'aquaman 2',0.0,12.0,,,,,,12.0,0.0,0.0,0.0,game of thrones' emilia clarke to replace amber heard as mera in 'aquaman 2'?,,,,,,,,,, +431,https://www.youtube.com/watch?v=KBdX0epS9lE,0,0,{'MechaRandom42'},1,youtube,video,original video,"according to a forbes lifestyle article about emilia clarke's home sale, the game of thrones actress appears to be replacing amber heard in aquaman 2. #amberheard #aquaman2 #mecharandom42 + + +*all videos are intended for entertainment purposes only. + +https://teespring.com/stores/mechamerch + +https://twitch.tv/https://www.twitch.tv/mecharandom42 + +https://patreon.com/randomgameuser42 + +donations: https://streamlabs.com/randomgameuser42 + +mecharandom42 +p.o. box 1566 +loveland, co 80539 + +sub to mecha's live channel: https://www.youtube.com/channel/ucncmif1muvtj9qyfxd-7xeq + +mecha's amazon wishlist: https://www.amazon.com/hz/wishlist/ls/2d0qjt6k4d84t?ref_=wl_share + +*disclaimer: youtube's advertisers may be using cookies to track your data weather you are logged in or not. all content on this channel is intended for an audience over the age of 30.",325.0,2757.0,,,,,,2358.0,3.0,0.0,71.0,amber heard replaced in aquaman 2? is this official?,,,,,,,,,, +432,https://www.youtube.com/watch?v=R74lQyLJmR8,0,0,{'The Spotlight'},1,youtube,video,original video,"amber heard fired from aquaman 2 goes viral!! + +subscribe to the spotlight 👉 https://bit.ly/3txagy1 + +watch next: ▶️ + +https://www.youtube.com/watch?v=yvpybrarags&t=143s + +https://www.youtube.com/watch?v=_nlxncl6pfu&t=37s + +https://www.youtube.com/watch?v=h6ag6p31kbo&t=114s + +------------------------------------------------------------------------------------------------------------------------ + + +related videos:👇 + +https://www.youtube.com/watch?v=ywtriglwxvc&t=86s + +https://www.youtube.com/watch?v=j4gaujqn1la + +https://www.youtube.com/watch?v=qbcexsvjbrm + + +before we head on to the details of amber’s current situation with warner bros, let us just have a quick recap on what went down between amber heard and johnny depp. + +so johnny depp and amber heard were quite the love birds who eventually ended up tying the knot. but after a few years into their marriage, toxicity grew which encompassed ruthless allegations and accusations against depp, leading everyone to favor amber heard out of sympathy. this caused depp’s career, personal life, and mental health to deteriorate drastically for years together. + +now back to the present, what is trending about amber heard currently? +we all know amber heard to play the role of mera in aquaman and how she did a marvelous job at it. but will she be in its sequel as initially planned is the big question on everyone’s mind. though many wish to not see her on-screen, due to her cheap ways of getting at depp, the decision finally lies in the hands of warner bros. + +how do we know about the fans not wanting to see her on aquaman 2? +well, if the 1.8 million-plus signatures on the petition on change.org on trying to get amber heard out of the movie wasn’t enough proof of how badly the fans want her out, we don’t know what will! + +based on the situations she has been in in the recent past, you may assume that warner bros have removed or would be removing amber from the cast list due to her false allegation scandal but rumors are stating otherwise. in fact, the rumors are quite far away from this reason and are stated to revolve around her health situation being breached. + +so, is amber heard really facing some health concerns? +the freshest piece of news about the whole amber heard- aquaman 2 situation entails her being asked to leave the cast due to certain health concerns she is facing. rumour has it that warner bros have stated her not to be fit as she was when she played the role of mera in aquaman, and hence need her to get fit or she shall be replaced. + +in actuality, the contract that entails the signature of the cast member playing the role of mera states that the actor has to be in good form before the shooting. as amber is known very well to play the blame-game, she directly blamed johnny depp for her health deteriorating and causing her to fall into depression which thus affected her body, causing her to place her role in aquaman 2 at stake. + +this may have brought a certain special cast onboard but it's more like a tug of war between the two right now, with the new entry almost playing the role of mera while amber heard is left to get in shape before the shooting of aquaman 2, or else would have to face the consequences of losing the role. + +the fans have spoken out about them wanting emilia clarke to play the role of mera as she seems to be the perfect suitor not just because of her amazing personality but also because she has caused flames to arise with her previous on-screen tv series with jason momoa. yes, the khaleesi has tons of talent and potential to conquer this role with class and make both warner bros and the fans satisfied. + +in fact, in an article by keith flamar in forbes, emilia clarke has been said to have signed that contract to play the role of mera with warner bros. why would forbes lie right? + +to add to this, emilia clarke has been seen out and about with a green costume and some dainty red locks complimenting her costume. could this be another hint that we could take, that emilia is playing the role of mera?! we are as confused as you are now but secretly wishing this is true cause we kid you not, we secretly are wishing for her to make it to the big screens with jason momoa again. + +will amber heard attract bad publicity to the movie? +there is a high chance that it may, which is why warner bros. seems to be trying to get rid of her in a subtle way so as to not face the brunt of the consequences. her ongoing court case has been shifted from 2021 to 2022, thus giving her time to shoot for the film without facing any interruptions. but to add to the worries of her court case, amber has been seen galavanting around the world on expensive yachts, especially europe throughout the pandemic, leaving fans to put her sense of responsibility and accountability to test. amber heard aquaman 2 celebrity news clevver newsds + +#amberheardfired #aquaman2 #jasonmomoa #justicefordepp #emiliaclarke #johnnydepp #deppandheard #depp #thespotlight #spotlight",149.0,3760.0,,,,,,3560.0,12.0,0.0,39.0,amber heard fired from aquaman 2 goes viral!! #justicefordepp,,,,,,,,,, +433,https://www.youtube.com/watch?v=ROjf4vPRz7Q,0,0,{'DarthN3ws'},1,youtube,video,original video,"📬📦 feel free to sends me stuffs: + po box 301. dexter, mi. 48130 + +please consider supporting my work- + +💻 https://darthnews.com/ (merch store) +🙏 https://www.patreon.com/darthnews (helps feed my dog & keeps the lights on) +💸 cashapp: $darthnews +🐦 twatter: @darth_news +🎶 dikdok: darth_news +📸 insta: @darthnews / second acct: @darth_news +📧 thedailydarth@gmail.com + +#amberheard #busted #johnnydepp #reeeee + + + #lawsuit #retrial #j4j #aquaman2 #insufferable #barnwitch #ditchthewitch #amberturd #rant #mera #defamation #sociopath #hollywood #domesticviolence #metoo #abuse #lawyer #darthnews #update #justiceforjohnny #instagram #twitter #socialmedia",501.0,4057.0,,,,,,3376.0,9.0,0.0,171.0,depp's lawyer calls out amber heard's lies about donating her $7m settlement to charity!,,,,,,,,,, +434,https://www.youtube.com/watch?v=FjWYJpq6X8A,0,0,{'vast prate'},1,youtube,video,original video,amber heard was fired from aquaman 2,7.0,230.0,,,,,,222.0,0.0,0.0,1.0,amber heard was not fired from aquaman 2,,,,,,,,,, +435,https://www.youtube.com/watch?v=-l2cdTsk8P4,0,0,{'Bluff Central'},1,youtube,video,original video,"10 times johnny depp tried to warn us about amber heard +------------------------------------------------------------------------------------------------------------------------ + +johnny depp and amber heard saga +👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇 +🔥 https://youtu.be/watch?v=xovi9l5el3q&list=pl0c_x0hcmuzfpxfnlmdcijb_wa45kt7ui + +top 10 celebrity videos +👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇 +🔥https://youtu.be/watch?v=6wxusexn4go&list=pl0c_x0hcmuzdjyose9quwlux3fwzdnfj5 + +popular uploads +👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇 +🔥https://youtu.be/watch?v=h9tv-cw5a8u&list=pl0c_x0hcmuzd6koq8fzw4znlowvbluf75 + +don't forget to follow us on instagram 👉 https://bit.ly/3vfxi3d +------------------------------------------------------------------------------------------------------------------------ +the battle between exes johnny depp and amber heard has been going on much longer than their marriage. their case grows more heated everyday and it can be seen that the effects of the case are only distressing depp even more. everybody doubts his personality and character, and he struggles to show that he is not what people think. if you paid attention to him at some points in his life, he sort of warned, even if you didn't know what was happening to him. + +the first warning sign might be a bit controversial, but it's something that needs to be said because of the two of them. amber bombed him with what appeared to be love. what's weird is that shortly after he began dating, amber heard, johnny depp's career began to go off on a tangent. something clearly wasn't right in his life. it was clear that she had an agenda, namely to get married to johnny in order to progress her own career and/or to benefit financially, and she knew how to bring it about. + +it is clear that amber heard was the one who filed for divorce from johnny depp. at one point, amber alleged that depp had physically abused her during their relationship. it was in fact quite shocking to his fans as well as the people who worked with depp, as this side of johnny was never witnessed by them. when amber provided the court with such reasons, depp denied these accusations and even stated that all this was being done by amber in her best interests, and not his. johnny depp made a statement that amber heard was the abuser. initially, everyone was siding with amber, but eventually the truth about her violent nature came out. + +depp had filed a defamation case against heard. in an article published by the washington post, amber heard shared her feelings about johnny depp, using explicit content, damaging depp's image, leading to the beginning of the $50 million law suit against amber heard. many believed that it was all a joke, that she orchestrated this to gain the public's attention. but she got away really fast with that. with the content of the article being attacked, the lawsuit did not end. over the years, several more elements have been added that have proven to be useful proof in support of depp. + +johnny depp released audio of amber heard and himself talking about the abuse. the audio leaks seemed to be an interesting development which puts heard in the spotlight. in the tapes, amber heard and johnny depp can be heard attempting to solve their marriage issues. in one part of the tape, depp accused heard of punching him. this tape was surely a big step in proving depp’s innocence. at this point, heard was truly exposed for who she was, including all her anger issues and violence she was claimed to have. this was one of the most solid forms of proof that helped enable him to be proved as the innocent in this messy trial. + +amber posted the photo of herself, claiming that johnny had hit her with an iphone. amber went to court and received a restraining order against johnny depp. on investigating further into amber’s bruises, they seemed to be fake, because the next day she made an appearance with no trace, not even a single scratch on her. did she think the truth wouldn't come out at all? + +if amber heard truly was the one to have faced being physically harmed but why was johnny depp’s finger left severed? johnny depp describes a time where amber threw a couple of bottles at him. depp goes into detail on what happened and how his finger was injured due to it. when questioned about his bandages later by dakota johnson, johnny depp answers vaguely. he avoids the question with a joke. later, amber has admitted over audio that she did in fact hit johnny with a bottle and hurt his finger. this was out as a part of the ongoing lawsuit filed against his ex-wife. + +depp did a fabulous job in the movie “alice through the looking glass”. his fans were quite enlightened with his presence on the day of its premiere, but the same cannot be said about johnny depp! unfortunately, we all assumed his speech to include his dark humor which he constantly brings out from time to time but indeed many believe it to be a cry for help. + +#bluffcentral #amberheard #johnnydepp #justiceforjohnnydepp #amberheardabuser #metoo",4.0,121.0,,,,,,116.0,0.0,0.0,1.0,10 times johnny depp tried to warn us about amber heard | bluff central,,,,,,,,,, +436,https://www.youtube.com/watch?v=fUSSohLC2Do,0,0,{'Celeb Central'},1,youtube,video,original video,"amber heard reportedly fired from another movie role (latest update) + +join us in today’s video as we show you how amber heard was fired from another movie. celebrity break-ups are a tricky thing. while ending relationships is difficult for all of us, this is exasperated when splitting becomes a public affair. actors johnny depp and amber heard know this all too well, as the former couple has been battling in the press, as well as in court. and now there are rumors about heard being fired from another one of her movies. + +johnny depp and amber heard have both alleged abuse against each other, and they continue to clash in court. months ago depp lost his libel suit against the publication the sun, which resulted in the actor being fired from his role as grindelwald in fantastic beasts 3. there were recently reports that heard was also being sacked by warner bros., but it seems they were inaccurate. because of this, is amber heard getting fired as well? be sure to watch the whole video and in addition, do us a favor and like the video and subscribe and turn on the notification bell. we’ll see you in the next video! + +related videos: + +#johnnydepp +#amberheard +#abuse + +amber heard reportedly fired from another movie role (latest update) +https://www.youtube.com/watch?v=1o9brqmktnq + +amber heard officially fired from aquaman 2 role! (reactions) +https://www.youtube.com/watch?v=qbcexsvjbrm + +johnny depp, amber heard react to leaked audio +https://www.youtube.com/watch?v=pfwvoehcejw + +amber heard facing 10 years in prison for fake johnny depp accusations!? +https://www.youtube.com/watch?v=tybocw3gqzc + +amber heard officially fired from aquaman 2 role! (reactions) +https://www.youtube.com/watch?v=qbcexsvjbrm + +i do not take any ownership of the music displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes only.",63.0,1838.0,,,,,,1722.0,10.0,0.0,43.0,amber heard reportedly fired from another movie role (latest update),,,,,,,,,, +437,https://www.youtube.com/watch?v=UVl_XyyONn4,0,0,{'Filmy Shorts'},1,youtube,video,original video,,44.0,917.0,,,,,,851.0,8.0,0.0,14.0,amber heard aquaman status,,,,,,,,,, +438,https://www.youtube.com/watch?v=F9gisjPPLws,0,0,{'InformOverload'},1,youtube,video,original video,"the real reason prince harry and meghan markle left the royal family +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +following the wild interview that aired on march 7th, with oprah winfrey sitting down with prince harry and meghan markle, social media was flooded with hot takes. some went as far as trying to cancel the entire royal family on twitter, while others were simply showing their support and empathy for megan, who openly admitted to struggling while being under the intense pressure of being a royal. over the course of the interview, the two spoke about some incredibly shocking things, including concerns some of the royal family had, as to how dark the skin color of their first born, archie would be. it seems aside from that, a handful of factors went into the couples departure. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#meghanmarkle #princeharry #oprahinterview #oprah #oprahwinfrey #harryandmeghan #archie #race #royalfamily #uknews #thequeen #princephillip #princecharles #princewilliam #princessdiana #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 #celebritygossip #influencergossip #celebritytea #influencertea + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +jarred bronstein: http://instagram.com/bronst7 + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +daniela suarez: https://www.instagram.com/danielasuarezphoto/ + + +📱instagram: https://www.instagram.com/informoverload +📱facebook: https://www.facebook.com/informoverload/ +📱twitter: https://twitter.com/informoverload +📱reddit: https://www.reddit.com/user/informoverloadreddit +✉️email | contact: informoverload@gmail.com",707.0,13709.0,,,,,,12856.0,31.0,0.0,115.0,the real reason prince harry and meghan markle left the royal family,,,,,,,,,, +439,https://www.youtube.com/watch?v=VNpv30MS8Q8,0,0,{'Fire Amber Heard'},1,youtube,video,original video,had to upload previous video i'm grounded and i'm uploading this from a laptop a old one it very weak,0.0,2.0,,,,,,2.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 35,,,,,,,,,, +440,https://www.youtube.com/watch?v=SjtkduDGVNg,0,0,{'Popcorned Planet'},1,youtube,video,original video,"johnny depp didn't lose his appeal - the uk courts let amber lie. this trial against the sun was never given a fair shake... and its scary what this means for everyone else. + +s u p p o r t t h i s. c h a n n e l: +subscribe, donate & follow us here: https://linktr.ee/andysignore + +and join our community to become a popcorned planeteer, to really become a part of the team and get exclusives scoops & perks! +https://www.youtube.com/channel/uccdicbo4cle4s1wbxjjsusg/join + +popcorned planet offers nerd news on movies, tv, marvel, dc, star wars, disney, ufos, and pop culture outrage incluyding justice for johnny depp coverage. created and hosted by andy signore (creator of screenjunkies, honest trailers, moviefights, hugging the cactus, movie world, man at arms and more). popcornedp lanet is your one stop place for movie talk, movie scoops, and pop culture commentary. + +c o n t a c t / b u s i n e s s : popcornedplanet@gmail.com",1237.0,12897.0,,,,,,11208.0,25.0,0.0,427.0,johnny depp didn't lose - uk courts let amber heard lie!,,,,,,,,,, +441,https://www.youtube.com/watch?v=5TBQCuaPnbA,0,0,{'Cinema X'},1,youtube,video,original video,"#news #marvel #dc +en este video, les cuento todas las noticias relevantes que han pasado a lo largo de la semana, noticias sumamente interesantes y rumores muy locos. +muchas gracias a todos ustedes por apoyarme siempre, no olvides dejar tu like, suscribirte al canal, activar la campanita para que no te pierdas ninguno de mis videos, también deja un comentario para que aparezca en el próximo video. +mi nombre es bruno y esto es cinema x.",16.0,65.0,,,,,,36.0,0.0,0.0,13.0,"noticias || ¿quién será el personaje sorpresa en wandavisión?, ¿warner despidió a amber heard? y mas",,,,,,,,,, +442,https://www.youtube.com/watch?v=f88pmqhuAjw,0,0,{'Celeb Trending'},1,youtube,video,original video,"10 times johnny depp upset over amber heard + +subscribe to the channel ⇨ https://rb.gy/gae7u0 + +watch next ⇩ + +the sad truth of jackie chan's son! +https://youtu.be/rksqotduv48 + +what you must need to know about chris tucker... +https://youtu.be/lihwehxuis0 + +10 celebrities who tried to caution us about ellen degeneres... +https://youtu.be/oxcfmtyyupa + + +related videos⇩ + +10 times johnny depp tried to warn us about ah +https://youtu.be/gshctsd8hng + +10 celebrities that defended johnny depp against amber heard +https://youtu.be/gecq8x8b6bo + +disney apologizes to johnny depp after firing him... +https://youtu.be/sige-fvuhg4 + +johnny depp finally speaks on how amber heard tried to ruin him +https://youtu.be/tdxbul9wunq + +johnny depp responds to amber heard's apology... (court case updates!!!) +https://youtu.be/busaibp7dna + +johnny depp v amber heard (the sun uk): the appeal hearing +https://youtu.be/07h7unv55ne + + +johnny depp has become a household name throughout his career, especially lately with the very public divorce with amber heard. this divorce is explosive in every way that is affecting their image, celebrity status, and finances. johnny depp has been in the public eye since his first experience in the acting world in 1984 when he made an appearance in nightmare on elm street. this movie was just the start of his career, and he is seen as one the most prominent film stars of all time. not only is he an actor, but he is a producer and musician as well. his resume is long and vast, but his marriage to amber heard has been a short and destructive ride. +johnny depp's early life was not cut and dry with a happy little childhood. he was quiet and withdrawn with drug use and self-harm starting at the age of 12, and this pattern has set a stage that will only worsen and affect his behavior in all areas of his life. his life only got worse when his parents split up, giving johnny the responsibility at 15 to collect the child support since he was the youngest. these events are creating the pattern of failing relationships and mental health that are currently bringing him down. +johnny depp has had various romantic relationships, actresses, and models, and not all ended disastrously as his current legal battle. the relationship before amber heard was with vanessa paradis, his partner for 14 years, and they share two children. there are many speculated reasons for this split, and none of them are centering around any abuse claims. the reports are vanessa's dislike of his mother, depp became bored, and a potential relationship with amber heard. their relationship did start the same period as depp and paradis's separation. again i will say in this relationship of 14 years, and there were no allegations of abusive behavior. +amber heard files for divorce under irreconcilable differences on may 23rd,2016, just three days after his mother's death, but this rocky marriage of 15 months has many sides to it. heard was seeking spousal payments and claiming verbal and physical abuse but this divorce and court proceedings go beyond civilized and straight revenge starts. depp's behavior has become erratic throughout their marriage, and his silent cries for help are finally being seen and heard. depp denies all allegations and states he will not respond to lies about his personal life, but this is far from the end. + +celeb trending is the #1 youtube to get caught up on the latest news and trends about your favorite actors, athletes, political figures, and more! in this channel, you will never miss your fix on the most trending celebrities! +#johnnydepp #amberheard #celebtrending",23.0,604.0,,,,,,574.0,1.0,0.0,6.0,10 times johnny depp hated amber heard...,,,,,,,,,, +443,https://www.youtube.com/watch?v=QdVsTIniocQ,0,0,{'Celeb Central'},1,youtube,video,original video,"amber heard full apology video: this has gone too far + +join us in today’s video as we share with you the full apology of amber heard. until now, none of either johnny depp's or amber heard's accusations has ever been put before a judge or jury in any court anywhere, or even confirmed by police reports. but with everything that is going on between the two former co-stars and couple, it’s hard to lose track of how it all started in the first place. + +johnny depp and amber heard went their separate ways after the divorce was finalized and it seemed like everything was calming down when heard became romantically attached to billionaire inventor elon musk in the spring of 2017. that relationship, however, was short-lived. because of all these chaos, amber heard has shared her thoughts. be sure to watch the whole video and in addition, do us a favor and like the video and subscribe and turn on the notification bell. we’ll see you in the next video! + +#johnnydepp +#amberheard + +related videos: + +amber heard full apology video - ""this has gone too far""...!? +https://www.youtube.com/watch?v=8oib_u4rdim + +amber heard vs johnny depp: comparison of depositions +https://www.youtube.com/watch?v=x7pwjy8g3gk + +johnny depp, amber heard react to leaked audio +https://www.youtube.com/watch?v=pfwvoehcejw + +amber heard facing 10 years in prison for fake johnny depp accusations!? +https://www.youtube.com/watch?v=tybocw3gqzc + +amber heard officially fired from aquaman 2 role! (reactions) +https://www.youtube.com/watch?v=qbcexsvjbrm + +i do not take any ownership of the music displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes only.",50.0,3017.0,,,,,,2927.0,18.0,0.0,22.0,amber heard full apology video: this has gone too far,,,,,,,,,, +444,https://www.youtube.com/watch?v=2Rm_0-KItlc,0,0,{'eHacker'},1,youtube,video,original video,"amber heard gives mean vibes on stage! +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods + +for those interested in why i dislike and criticise disney star wars (link below): + +https://disneystarwarsisdumb.wordpress.com/",838.0,15039.0,,,,,,13816.0,15.0,0.0,370.0,amber heard gives mean vibes on stage!,,,,,,,,,, +445,https://www.youtube.com/watch?v=RNxOnso7j5c,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"fbi targets amber heard; confirms australian federal criminal case! + +note: this is for journalistic purposes only. please do not contact anyone involved. + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",11484.0,204745.0,,,,,,191489.0,160.0,0.0,1612.0,fbi targets amber heard; confirms australian federal criminal case!,,,,,,,,,, +446,https://www.youtube.com/watch?v=3hOujQAiWU4,0,0,{'eHacker'},1,youtube,video,original video,amber heard trolls again on alleged aquaman movie set?,530.0,6277.0,,,,,,5531.0,4.0,0.0,212.0,amber heard trolls again on alleged aquaman movie set?,,,,,,,,,, +447,https://www.youtube.com/watch?v=Jd2d0qYA134,0,0,{'The Amber Heard Playlist!!'},1,youtube,video,original video,https://www.forbes.com/sites/scottmendelson/2019/01/22/box-office-aquaman-jason-momoa-amber-heard-james-wan-dc-films-johnny-depp/?sh=274a0c3532f7,,,,,,,,68.0,,0.0,,amber's movie out-earned all of johnny depp's movies!! (amber heard playlist!!),,,,,,,,,, +448,https://www.youtube.com/watch?v=G440kJneIw8,0,0,{'DELCARAJO TV'},1,youtube,video,original video,"► ana ➥ https://tus10seg.com/1022870 + +00:00 marzo!!! +01:14 la ""inyectacion"" vip en argentina +03:46 golden globes +05:50 buenas noticias ""vacuniles"" +07:14 volvió trump +07:43 el crack de la semana +08:22 el no crack de la semana +08:52 el rapero t.i. en el horno +10:23 un loco entra a la casa de kim kardashian +10:51 james charles es muy turbio +12:17 dalas vs wismichu feat auron play y sara biyin +20:16 la verdad del despido de amber heard (y no es por johnny depp) + +► tus 10 segundos ➥ https://tus10segundos.com/products/delcarajotv +► se parte del team delcarajo: +➥ https://youtube.com/channel/ucuwebhxve6c69jtbpiy-y8q/join +► tienda delcarajo ➥ http://delcarajo.net + +► sigueme en: +twitter ➥ http://twitter.com/juanitosay +instagram ➥ http://instagram.com/juanitosayoficial + +► contacto: say@delcarajo.net + + +* hey, friki delcarajo... ¿que haces tan abajo? el boton de like esta mas arriba ( ͡° ͜ʖ ͡°)",11198.0,167050.0,,,,,,154540.0,273.0,0.0,1039.0,¡despidieron a amber heard por no cumplir su contrato! auronplay vs wismichu y adios james charles,,,,,,,,,, +449,https://www.youtube.com/watch?v=UgDLGeHsI5w,0,0,{'The Spotlight'},1,youtube,video,original video,"johnny depp officially loses case against amber heard?!! + +subscribe to the spotlight 👉 https://bit.ly/3txagy1 + +watch next: ▶️ + +https://www.youtube.com/watch?v=q32tzepkrj4 + +https://www.youtube.com/watch?v=lrgawogssbw&t=62s + +https://www.youtube.com/watch?v=yvpybrarags&t=132s + +------------------------------------------------------------------------------------------------------------------------ + + +related videos:👇 + +https://www.youtube.com/watch?v=2a0txmexrx8 + +https://www.youtube.com/watch?v=b9zauwfdvg4 + +https://www.youtube.com/watch?v=dkrfrqa2nk8 + +johnny had requested for an appeal to open up the case, which last week was denied by the judges. this challenge that johnny offered was rejected by lord justice underhill and lord justice dingemans with their reasoning being that they felt going through the case a second time has a high chance of turning out just like the first one. + +depp has been denied the chance to stand up in the libel case against the newspaper as well as one of its journalists. even with him having proof of him being the victim of abuse by amber heard, johnny was facing the brunt. + +lord justice underhill has also stated that it is hard to convince the jury to vote for his side of the case due to the fact that purely factual questions were not enough to turn the case around. + +amber had promised to give away the divorce settlement of 7 million dollars that she had received from johnny depp, to two associations one being the aclu and the other being the children’s hospital, los angeles. + +the truth about this came out when johnny’s team did some digging and found out that she hadn’t donated the money and only had contributed $100,000 towards the organizations. + +amber has refuted back that she would pay off the donations in time and that all the money that she had, had gone into the lawsuit case, defending herself. but johnny also did say that the money that she got was being used to sway the judge towards her favour, which is probably what happened. after knowing her nature, it is quite hard to think of her otherwise. + +sadly, johnny cannot go back and fend for himself this time. this is due to the fact that the same crime cannot be tried twice and thus the newspapers have taken a deep breath due to their narrow escape from the case getting messier. + +in fact, it was the perfect press strategy. looking at the situation holistically, the overall benefit that amber has is much higher now. but why? well, once one rules you out from being the winner of the case, it is hard for other and judged to not agree with his side of the case too. + +what did the sun have to say about this after the verdict was out? +first of all, they were pretty glad that they got out of such a rut of a situation. secondly, the attorney from the sun had stated that the winning of the was a big deal as it was a true representation of how strong amber is to stand up to the face of mr depp. + +this whole situation according to them stood as a great example for those suffering from domestic violence and that they are being heard and must be strong enough to stand up for their rights. + +this libel trial of the century had 12 files of evidence that were looked into with evidence also been taken from around 30 witnesses. the does not wish to proceed on with this case and is hoping this to be the final end to this prolonged case. + +during the first case that he was involved with, the loss that he endured cost him a major chunk of his career. two of the biggest roles he was holding at that point in time, one being the role of jack sparrow from the pirates of the caribbean and gellert grindelwald from the fantastic beasts franchise, both went down the drain after his loss. + +no one wanted to work with him and ruin the reputation of working with an individual who was involved in domestic abuse. + +the only thing left to look forward to is depp’s defamation lawsuit that would take place in the united states of america. how that would play out and when it would happen is quite unpredictable at this point in time. + +the pandemic has made things all the more worse by dragging out the events of the case. the case that was to be heard out at in april this year, has been postponed to may next year, which is quite a lot of time. + +joelle rich from shilling partners in london has spoken up on behalf of johnny depp stating that he still has hopes of winning. in fact, he still thinks that the in the us may actually see things from his perspective and that he may actually be proved not guilty. amber heard aquaman 2 jason momoa clevver news informoverload amber heard elon musk viral vision + +#johnnydepplosescase #justicefordepp #amberheard #heard #depp #johnnydeppcase #amberheardcase #amberheardaudio #aquaman2 +#justiceforjohnnydepp #thespotlight #johnnydeppappeal",25.0,872.0,,,,,,827.0,9.0,0.0,11.0,johnny depp officially loses case against amber heard?!!,,,,,,,,,, +450,https://www.youtube.com/watch?v=ToCC0xLLi-k,0,0,{'Celebrity Insider'},1,youtube,video,original video,"amber heard faces 10 years in prison due to fake johnny depp accusations! +there has been a lot of drama going on between johnny and amber. +new information reveals that amber heard is facing up to 10 years in prison for false accusations made against johnny depp. +why, you ask? we've got all the facts together in this video! + +leave a comment with your thoughts and hit that subscribe button! + +subscribe to celebrity insider on youtube to get the newst stories about the famous and for the funniest, most exciting and bizarre facts about their past.",356.0,11278.0,,,,,,10804.0,7.0,0.0,111.0,breaking: amber heard facing 10 years in prison for fake johnny depp accusations!?,,,,,,,,,, +451,https://www.youtube.com/watch?v=De1bPwy4f3g,0,0,{'Stevie J Raw'},1,youtube,video,original video,"this video johnny depp v amber heard is a full readthrough of amber heard's 7th witness statement from the uk trial. + +this is one of multiple videos to be released every 2-3 days, each covering another witness statement from the johnny depp v the sun trial in the uk. + +big thanks to les for doing the voice over for each female witness. +subscribe to les - https://www.youtube.com/channel/ucseatdlh3kfgl17dnarfw2g + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join +art of elysium donation page - https://www.pledge.to/the-art-of-elysium + +justice for johnny depp t-shirts (proceeds go to charity): +design 1 - https://t.co/uycndh9ebj?amp=1 +design 2 - https://t.co/hdmq0wicke?amp=1 +design 3 - https://t.co/lqmeoidmje?amp=1 +design 4 - https://t.co/lkteqqdxhg?amp=1 + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#justiceforjohnnydepp #johnnydepp #johnnydeppamberheard",152.0,1215.0,,,,,,987.0,0.0,0.0,76.0,johnny depp v amber heard (the sun) | amber heard witness statement (7 of 7) full readthrough,,,,,,,,,, +452,https://www.youtube.com/watch?v=biW1mXUgUc8,0,0,{'Steven And Jason'},1,youtube,video,original video,"in this episode we discuss the recent allegations that johnny depp's legal team has presented about amber heard and her intention to keep her 7 million dollar divorce settlement. what are your thoughts and opinions? + +please subscribe, comment & share! + +add us on instagram: +https://www.instagram.com/stevenrcrowley +https://www.instagram.com/jason.philip.001 +https://www.instagram.com/stevenandjason + +add us on tiktok: +https://www.tiktok.com/@stevencrowley + +listen: +spotify: https://spoti.fi/2eawjph + +the equipment used: https://www.amazon.com/shop/stevencrowley",509.0,5929.0,,,,,,5129.0,7.0,0.0,284.0,amber heard kept the 7 million dollar settlement!,,,,,,,,,, +453,https://www.youtube.com/watch?v=siGE-fVUHG4,0,0,{'Binge Watch'},1,youtube,video,original video,"disney apologizes to johnny depp after firing him... + +subscribe to binge watch - http://tiny.cc/bingewatch + +watch next 👇 + +amber heard faces prison after this… + +https://youtu.be/dje8bl_blde + +related videos: + +disney officially apologizes to johnny depp after firing him!!! + +https://youtu.be/wlgxd5h6q2a + +disney sends lawyers to defend johnny depp against amber heard in lawsuit + +https://youtu.be/cyliamqcwj4 + +""you saved me"" johnny depp thanks his supporters for defending him (video) + +https://youtu.be/gwume-u9zke + +robert downey jr. steps up for johnny depp since disney won't + +https://youtu.be/yg2dphn3nse + +the fact that johnny depp was fired from his role in the pirates of the caribbean is not +something new. but still, the fans were absolutelly upset and mad as they can't imagine their +favorite movie without johnny. moreover, many people believe that it was just unfair to fire +him as johnny depp has had a long working relationship with disney. the main reason +which made kids’ favorite channel cut ties with johnny was his recent court cases in both the +u.k. and the u.s.. the problems between johnny depp and amber heard made a lot of +mess and as a result, amber’s allegations of domestic violence and ongoing legal troubles +reportedly cost johnny depp his oscar-nominated, starring role in the multibillion-dollar +grossing pirates of the caribbean franchise. +it’s been already said a lot about how difficult johnny depp and amber heard’s break up is +as the nightmare for these two began in 2016. since that year they've been legally fighting +against each other, accusing each other in inappropriate behavior, violence, +libel and many other things. moreover, 2020 wasn't really easy for johnny depp. it was full +of libel trials against news group newspapers, the publisher of the sun, in court over a +2018 article in which they called him a ""wife beater"". during the trial depp denied he's being +violent to amber and also accused heard of having extra-marital affairs with james franco +and elon musk, which heard also denies. however, no matter how depp tried, the court +ruled against depp in the libel trial. +due to recently highlighted personal issues and allegations made against the famed actor, +depp has been dumped by many major film studios. it all began with the fact depp +announced that he had been 'asked to resign' from his role as grindewald in 'fantastic +beasts 3'. he posted on his instagram: ""i wish to let you know that i have been asked to +resign by warner bros. from my role as grindelwald in 'fantastic beasts' and i have +respected and agreed to that request."" he continued, ""... i intend to prove that the +allegations against me are false,"" depp added. ""my life and career will not be defined by this +moment in time."" +and then walt disney pictures who said ‘goodbye’ to johnny depp. according to a +washington post report, disney is said to have dropped depp from the pirates franchise just +four days after heard’s incendiary 2018 op-ed in the same publication, in which she claimed, +without naming depp, that she was the victim of domestic violence. depp’s lawyers claimed +that the actor’s removal from the multibillion-dollar grossing franchise was because of her +allegations. +in 2018, disney production chief sean bailey confirmed that depp was no longer a part of +the franchise’s future plans. he told the hollywood reporter, “we want to bring in a new +energy and vitality. i love the pirates movies, but part of the reason writers paul wernick and +rhett reese are so interesting is that we want to give it a kick in the pants. and that’s what +i’ve tasked them with.” +moreover, some people think it was not the only reason for disney to ‘break up’ johnny +depp. another reason for his removal could be the fact that disney couldn’t afford him +anymore. according to forbes, depp’s salary, including a healthy profit percentage, reaches +close to $100 million per pirates film. pirates of the caribbean: dead men tell no tales, the + +series’ fifth film, registered a box office haul of almost $800 million, well below the over $1 +billion totals of the franchise’s second and fourth films, and the $963 million haul of the third +one. disney is looking to save $90 million by recasting depp, the report said. +... +now i want to know your opinion. let me know in the comments section down below do you +believe that there’s a chance for fans to see johnny depp as a captain jack sparrow? + +binge watch - binge watch is the best source of the latest celebrity news. want to see what's trending today in the hollywood life or hear about the newest celeb gossip? you're in the right place. + +consider subscribing to not miss out on what's trending today in the life of the world's biggest stars. + +#bingewatch #justiceforjohnnydepp #celebrity",28801.0,1367820.0,,,,,,1333325.0,1124.0,0.0,4570.0,disney apologizes to johnny depp after this...,,,,,,,,,, +454,https://www.youtube.com/watch?v=bhXfGjTrVbI,0,0,{'TAWAF TV'},1,youtube,video,original video,"amber heard membagikan potret liburannya di salah satu masjid di istanbul, turki. dalam foto yang dibagikan di instagram pribadinya, mantan istri johnny depp tersebut tampak mengenakan hijab berwarna pink dan tanktop yang dirangkap dengan kemeja berwarna khaki. + +""menghabiskan hari dengan berkeliaran di sekitar keajaiban masjid di istanbul. tidak mungkin tidak mencintai kota yang indah ini,"" tulisnya melengkapi keterangan foto. + +namun sayangnya, potret tersebut banyak menuai kritik dari warganet. pasalnya dalam foto tersebut menampilkan area dadanya yang menonjol. tak sedikit, orang berspekulasi bahwa perempuan 34 tahun tersebut tak mengenakan bra. + + +== +please like, comment, subscribe & share this video. +kunjungi website kami di : +https://www.tawaf.tv + +follow official account tawaftv di : +facebook : tawaf tv +twitter : @tawaftv +instagram : tawaftv +vidio : https://vidio.com/@tawaftv + +#tawaftv #dewanmasjidindonesia #beritaislam #tvislam #beritamuslim #beritaterkini #videoviral #beritaviral #news",0.0,1743.0,,,,,,1742.0,0.0,0.0,1.0,"masuk tanpa bra dengan hijab asal, dianggap lecehkan masjid turki amber heard dikecam publik",,,,,,,,,, +455,https://www.youtube.com/watch?v=7VB-m8BN8js,0,0,{'On Demand Entertainment'},1,youtube,video,original video,"american actress amber heard reveals she’s been fighting pandemic fatigue. + +she confesses the best way to cope for her has been to socialise outside, while sticking to the guidelines. + +""i have found that being outside in safe environments, meaning distancing and being on hikes, out in the open air, not with groups, not with crowds. podding with the group you trust so you still have interaction with people,"" heard said. + +she stars alongside jovan adepo on starzplay pandemic epic the stand, based on a novel by stephen king. + +#amberheard #thestand #pandemic",11.0,2695.0,,,,,,2236.0,369.0,0.0,79.0,the stand: amber heard on fighting pandemic fatigue with ‘trusted people’,,,,,,,,,, +456,https://www.youtube.com/watch?v=BDgktmMv1ZE,0,0,{'This Happened'},1,youtube,video,original video,"amber heard claps back at johnny depp fans dragging her + +amber heard went from being the spokesperson for women’s rights to one of the most hated women in hollywood. +after she first accused her ex-husband johnny depp of physical aggression back in 2016, amber received support from both fans and fellow celebs. +however, over the years, amber has lost almost all of her supporters as more and more people started doubting her version of events. + +subscribe for celeb drama: http://youtube.com/channel/ucylyoo597nuffyjs_hwhubq?sub_confirmation=1 + +#thishappened #amberheard #johnnydepp",622.0,19507.0,,,,,,18637.0,23.0,0.0,225.0,amber heard claps back at johnny depp fans dragging her,,,,,,,,,, +457,https://www.youtube.com/watch?v=PGSa4OzCuMA,0,0,{'DELCARAJO TV'},1,youtube,video,original video,"► apex legends temporada 8 ➥ https://store.steampowered.com/app/1172470/apex_legends/ +#ad #apexlegends #apexlegendss8 + +► asian girl ➥ https://tus10seg.com/1023647 +► sorteo auricular razer ➥ https://www.instagram.com/p/cmdppsxmrqs/ +► e11even games ➥ https://www.instagram.com/e11evengames/ + +00:00 sorteo épico +00:32 space jam 2 de mal en peor (pepe le pew) +02:08 apex legends temporada 8 y lanzamiento en nintendo switch +03:17 papa john's en problemas +04:39 phillip defranco y el escándalo de su salud +05:48 drama en el uber +06:50 no habra pasaporte de inyectados +09:01 winona ryder revela la verdad de amber heard y johnny depp + +► tus 10 segundos ➥ https://tus10segundos.com/products/delcarajotv +► se parte del team delcarajo: +➥ https://youtube.com/channel/ucuwebhxve6c69jtbpiy-y8q/join +► tienda delcarajo ➥ http://delcarajo.net + +► sigueme en: +twitter ➥ http://twitter.com/juanitosay +instagram ➥ http://instagram.com/juanitosayoficial + +► contacto: say@delcarajo.net + + +* hey, friki delcarajo... ¿que haces tan abajo? el boton de like esta mas arriba ( ͡° ͜ʖ ͡°)",11081.0,149331.0,,,,,,137189.0,271.0,0.0,790.0,confirmado: ¡amber heard miente! winona ryder revela la verdad de johnny depp,,,,,,,,,, +458,https://www.youtube.com/watch?v=l0htbL4cQxs,0,0,{'TheQuartering'},1,youtube,video,original video,"looks like johnny depp just caught himself a nice little w today with amber heard being forced to pay his legal fees + + + + +support the channel directly! (super helpful) +https://www.youtube.com/channel/ucfwe_odi1ytbdjkzusi1nag/join + +follow me +twitch-https://www.twitch.tv/thequartering +parler-https://parler.com/profile/thequartering/ +twitter-https://twitter.com/thequartering +discord-https://discord.gg/pqvtwa2vvm +subreddit-http://reddit.com/r/thequartering +politics channel -https://www.youtube.com/channel/uc577sigte1cjpdosladwndw",12169.0,155654.0,,,,,,142273.0,150.0,0.0,1062.0,massive win for johnny depp & brutal loss for amber heard,,,,,,,,,, +459,https://www.youtube.com/watch?v=lMTaTbtiaR0,0,0,{'EZ Law'},1,youtube,video,original video,"in 2020, johnny depp lost his libel case against news group newspapers who produce the sun. depp claimed the sun's article in 2018 which claimed he was a wife-beater and had abused amber heard, was false. + +many were confused when the high court ruled against johnny depp, even though there was proof that amber heard had assaulted him. a voice recording surfaced of the pair talking and heard admits to hitting depp. many called for amber heard to go to jail and the hashtag #justiceforjohnnydepp began trending. + +however, a lot of people have misunderstood the case. despite involving domestic abuse, this was not a criminal trial but a libel trial. this means neither amber heard or johnny depp were on trial. johnny depp was only suing the sun and amber heard was simply a witness to help the sun's case. + +unlike in a criminal trial where one must prove guilt 'beyond reasonable doubt', in this libel case the sun only had to prove it was 'more likely than not' that what they had reported was true; that depp had abused amber heard. + +please subscribe for more simple explanations of uk law cases! if you have any questions please leave them in the comments below. + +thank you for watching!",132.0,4173.0,,,,,,3980.0,4.0,0.0,57.0,why is amber heard not in jail?? | why did johnny depp lose his case? | ez law,,,,,,,,,, +460,https://www.youtube.com/watch?v=LXToAXqwbv0,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard fails to sue disney! no money and her career is done! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#amberheard #johnnydepp #thatumbrellaguy",5497.0,113114.0,,,,,,106706.0,89.0,0.0,822.0,disney ruins amber heard suing! this ends her career!,,,,,,,,,, +461,https://www.youtube.com/watch?v=NjrqjBs7ce8,0,0,{'Doctor Soup'},1,youtube,video,original video,"#shelbysoup #johnnydepp + +heard may have something on musk, yet we don't know what it could be... or do we? musk very likely spent the night with depp's former wife amber heard on many occasions. in this video we discuss the possibilities of what could be happening. + + +links: +twitter: https://twitter.com/home +instagram: https://www.instagram.com/shelbyyoutu... + +sources: +https://twitter.com/thatbrianfella/status/1237450512846422017?s=20",391.0,2280.0,,,,,,1785.0,2.0,0.0,102.0,elon musk blackmailed by amber heard? what does heard know?,,,,,,,,,, +462,https://www.youtube.com/watch?v=YiC1UPMjBf4,0,0,{'HNN24x7'},1,youtube,video,original video,"amber heard rumored to have been fired from aquaman 2 for contract breach +amber heard officially fired from aquaman 2 role +very bad news for amber heard officially removed from aquaman 2 +amber heard fired from aquaman 2 weeks ago + + +another day, another rumor calling amber heard’s dceu future into question. there’s been much discussion about whether warner bros. will stick by the actress in the long-term after all the bad press that her ongoing legal battles with ex johnny depp has wrought, but to date. + +heard is still officially expected to reprise her role as mera in aquaman 2. the latest reports, however, are claiming that wb has fired her over a breach of contract + +#aquaman2 #amberheardaquaman2 #amberheard + + + subscribe now for daily updates. + -------------------------------------- +enjoy and stay connected with us!! + ☛ follow us on twitter: https://twitter.com/hnn24x7 + ☛ like us on facebook: https://www.facebook.com/hnn24x7 + ☛ visit our official website: https://hnn24x7.com/ + ☛follow us on instagram: https://www.instagram.com/hnn24x7",2.0,111.0,,,,,,106.0,1.0,0.0,2.0,amber heard rumored to have been fired from aquaman 2 for contract breach,,,,,,,,,, +463,https://www.youtube.com/watch?v=n2q-kN4GIwg,0,0,{'The Celebrity Pie'},1,youtube,video,original video,"johnny depp and amber heard: 5 times when johnny depp tried to warn us + +apology video +when amber heard smuggled their two pet dogs to australia, which goes against the country’s laws- the pair came out with an apology video to address the situation. but, to a lot of people the video seemed weird. although it was heard herself who did the activity, depp appeared to be quite off in the video and some even remarked that it looked like he was being forced to show up in front of the camera. we will let you be the judge of it. + +premiere of alice through the looking glass +in 2016, when johnny and amber’s divorce were in the works, he attended a movie premiere at london. when asked if he had any message for his fans, depp said some lines that sounded extremely weird and even funny to his fans and the audience. however, when we look back now- the message seems almost cryptic, as if he was trying to ask for help. watch the interview for yourself. + + +welcome to my channel, ' the family guy'(this is not a compilation channel)! this channel brings out interesting and trending celebrity news with full of entertainment, we create videos on your favorite celebrities, top 10 celebrities, movies, hollywood celebrities, talk shows and many more... + +here all my videos are originally made by me with voice overs, by following youtube copyright terms and conditions. all my clips fall under fair use because i add commentary with my original editing skills and i put a lot of hard work into these videos. + +thank you for your valuable time, if you are interested into these kind of stuff, please consider subscribing to our channel and support my hard work if you enjoy watching our videos regularly. + +subscribe: https://bit.ly/30kr4eb + +#johnnydeppamberheard #johnnydeppandamberheard #johnnydeppamberheardaudio #johnnydeppamberheardaudio #johnnydeppamberheardinterview",38.0,1371.0,,,,,,1329.0,2.0,0.0,2.0,10 times johnny depp tried to warn us about amber heard : johnny depp & amber heard,,,,,,,,,, +464,https://www.youtube.com/watch?v=OsMkDBajMa0,0,0,{'NASIR ARAFAT'},1,youtube,video,original video,"►if you enjoyed this video hit ""like"" button and subscribe for more awesome content. + +►don't forget to give feedback on this video. thanks for your amazing support. + +▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ + +outro : https://youtu.be/9rujcfyxhqc +music provided by nocopyrightsounds. + +please watch it till the end it takes lots of efforts to make such videos. i hope you will like it :) #anonymousyt + +social medias :- +● facebook ► https://www.facebook.com/ianonymousyt/ +● twitter ► https://twitter.com/anonymous30k +● subscribe ► https://goo.gl/xiwkto",873.0,47386.0,,,,,,46495.0,13.0,0.0,5.0,"johnny depp and his wife amber heard big entry | johnny depp mass entry | johnny depp, amber heard",,,,,,,,,, +465,https://www.youtube.com/watch?v=wlh7AbYUfqk,0,0,{'WhatCulture Comics'},1,youtube,video,original video,"huge dceu movie rumour as game of thrones actress emilia clarke reportedly replaces amber heard. + +for more awesome content, check out: http://whatculture.com/ +follow us on facebook at: https://www.facebook.com/whatculture +catch us on twitter: https://twitter.com/wc_comics",1834.0,77608.0,,,,,,75088.0,62.0,0.0,624.0,amber heard fired from aquaman 2... emilia clarke replaces her as mera?,,,,,,,,,, +466,https://www.youtube.com/watch?v=9cLX5js0zKU,0,0,{'Lost Beyond Pluto'},1,youtube,video,original video,"source: https://johnbrace.com/wp-content/uploads/2021/02/depp-pta-order-_2_-sealed.pdf + + +the appeals process: https://youtu.be/vzq89nk9t-0 + + +social media + +patreon: https://www.patreon.com/lostbeyondpluto + +instagram: https://www.instagram.com/lostbeyondpluto + +twitter: https://twitter.com/lostbeyondpluto + +tumblr: https://lostbeyondpluto.tumblr.com/ + +soundcloud: https://soundcloud.com/lost-beyond-pluto + +music videos: + +blue eyes: https://www.youtube.com/watch?v=wm2-kyp18ww + +once a liar: https://youtu.be/bgwc09ptuhm + + + +stars intro theme by eva grace",3077.0,72973.0,,,,,,69351.0,29.0,0.0,516.0,johnny depp v amber heard (the sun uk) - johnny requests permission to file new evidence,,,,,,,,,, +467,https://www.youtube.com/watch?v=aPDxbXIB4LI,0,0,{'Motivator Network'},1,youtube,video,original video,"investigative reporting on amber heard’s case involving social bots, johnny depp, adam waldman, and political conflicts in a 21st century stand-off online. delves into julian assange, jennifer robinson, progressives and the alt-right, artificial intelligence, russia voting interference, #elonmusk, united nations, and aquaman 2 with humanitarian and women’s rights activist amber heard caught in a crossfire masked by domestic violence and hate online. + +summarizes how amber heard won in the ngn case showing 12 brutal assaults against her and fearing for her life, yet online bots bury her to snuff out her voice. + +.... why would 2 years ago, an alleged romantic partner of ex-staff of depp send a photo of missing anthony fox - going to testify against johnny depp - state amber was kicked multiple times, that they are threatened with death, & do so under a locked account? + +why would reporters - including rachel abrams of the new york times attacked by faceless-bot like adam waldman account - never write a story? rachel abrams was involved with cambridge analytica reporting according to thegeekbuzz.com + +why do social platforms ignore stopping threats against #amberheard, her witnesses, & supporters, as if 'fake jack sparrow' of 2019 at facebook ai/ml training was self-fulfilling prophecy? +why does anonymouswordwide.com never post edited audio of #rosemcgowan, who said agents were used to stop reporters from reporting on weinstein and twitter locked her account in 2017? ""bots are agents."" +if we never interfered, who would have? + +please do due diligence: +""amber heard’s story of cyber abuse inspires change to public safety to save lives"" https://www.truehollywoodtalk.com/amber-heards-story-cyberabuse-inspires-change-public-safety-save-lives +""amber heard, johnny depp and the cyrillic russian spiders from mars"" https://www.thegeekbuzz.com/the-basement/cyrillic-russian-spiders-from-mars +""actors under ‘gag order’ regarding amber heard and johnny depp ordeal"" https://www.thegeekbuzz.com/the-basement/dceu-actors-under-gag-order-regarding-amber-heard-and-johnny-depp-ordeal + +jennifer robinson was “resistant to twitter for a long time”, but now has a following of nearly 40,000 on the site. “twitter can be a hostile place,” she says. “the online attacks in respect of amber heard have been far worse than anything i experienced during the #julianassange case.” +https://www.ft.com/content/16b8cfb2-4934-4e88-9686-ff09172e8258 + +*please note in news stories these points: +- squad - this 'defense squad' was named by a katie cassidy/arrow fan (we're huge supporters of warner bros). ""if i don't try to save it, who will?"" - laurel lance. ""you failed this city."" - green arrow +- persona non grata, spend 24 hours or days with him, anyone who crosses his path (lawyer adam waldman or johnny depp?) + +-- notice warnings of campaign defying reality of legalities to coerce witnesses & business contracts to not testify or lose support. + +""how social bots created an anti-amber heard & aquaman campaign +how to make social bots? — political anti-amber heard & aquaman campaign will show you everything you need to know about social bots & how bots using hate campaigns work."" +https://medium.com/@aquaman-bots/how-social-bots-created-an-anti-amber-heard-aquaman-campaign-e68e16637d3a + +devumi, us-base social bot firm, had 3.5 million estimated accounts & 200 million to follow - ny attorney general: +1. https://gadgets.ndtv.com/social-networking/news/devumi-a-firm-that-sells-fake-twitter-followers-to-be-probed-by-new-york-attorney-general-1805985 +2. https://joshmacdonald.net/ny-times-devumi/ +the more hateful data is incited with bots amplification & fake news, the more they can replicate using natural language processing models, webscraping, create more ips ('1,000,000+ proxy servers installed'): +""astroturfing, twitter bots, amplification: inside online influence industry"" (create copies of other accounts data): https://tech.newstatesman.com/feature/astroturfing-twitter-bots-amplification-inside-online-influence-industry + +we are so happy the world has wonderful, progressive women's rights activists like amber heard - who is also a united nations human rights champion, & supported kamala harris since 2007! + +if you see something unethical which is as easy to interfere with as clicking with technology, writing, or speaking out, you could save lives & not even know it! +this is a dangerous case. we've removed, reported, deleted so many threats. +it's sad that cherie blair, united nations, aclu, & others seen helpless against these technology simulations. + +this book of 46 pages was first published on international women's day! +""#amberheard is an actress, activist, & humanitarian who is a victim of domestic violence at least 12 times from fading a-list actor, #johnnydepp. she's mera in aquaman, & received awards from glaad, aclu, emory. she spoke at un social good summit & supported the sexual assault bill of rights from noble peace prize nominee amanda nguyen.""",,,,,,,,364.0,,0.0,34.0,"amber heard vs johnny depp & bots - 21st century reporter: domestic violence, humanitarian, politics",,,,,,,,,, +468,https://www.youtube.com/watch?v=W4EouG2OoAs,0,0,{'Himanshu Jain'},1,youtube,video,original video,"elon musk crying +elon musk india +elon musk welcome india +elon musk biography +elon musk rich +elon musk money +elon musk networth +elon musk interview +elon musk income +elon musk tesla + tesla + elon musk worth +keyword number 4 . net worth elon musk + twitter elon musk + elon musk spacex + spacex + elon musk solar + hyperloop elon musk + elon musk trump + hyperloop + mars + amber heard elon musk + elon musk news + elon musk wife + elon musk mars + amber heard + talulah riley elon musk + elon musk google + talulah riley + elon musk company + elon musk car + elon musk space x + space x + elon musk book",0.0,15.0,,,,,,15.0,0.0,0.0,0.0,"""elon musk crying"" richest man on earth",,,,,,,,,, +469,https://www.youtube.com/watch?v=ALJ-KGjn1Z4,0,0,{'UnBoxPHD'},1,youtube,video,original video,#johnnydepp #amberheard #jamesfranco,338.0,18660.0,,,,,,18186.0,19.0,0.0,117.0,amber heard and james franco video evidence explained,,,,,,,,,, +470,https://www.youtube.com/watch?v=3EP_1uxUDOU,0,0,{'The Gossipy'},1,youtube,video,original video,"welcome tothe gossipy. we make interesting videos about hollywood in english. we give you a closer look in the lives of celebrities like kanye west, ed sheeran, the rock, jay z, selena gomez, kylie jenner, kim kardashian, rihanna and 100s more. + +in hollywood, there are many stars that have ruined their own careers. these celebrities will do things that destroy their reputation and expose their true selves. + +in the case of amber heard, this situation is entirely different. her destruction has been more of a “slow burn."" because she’s tried so hard to convince people she’s a good girl and a victim, but is not getting exposed as actually something else entirely. + +all while, johnny depp rebuilds his reputation that amber heard tried to destroy. allow us to break it all down. be sure to like the video, hit the like button and notification bell, and subscribe to the channel! + +#amberheard #johnnydepp #justiceforjohnnydepp + +we tell you interesting things about these hollywood celebrities that you may have never heard before. +subscribe - https://www.youtube.com/channel/ucamaieynotgj-dmjp8dpepq?sub_confirmation=1 +''the channel goal is to get all the you tube play buttons"". so please do subscribe to our channel to be a part of the gossipy community, it is really important to grow together as a family and "" we promise you, we will not let you down"". + +cheers!",1.0,37.0,,,,,,35.0,0.0,0.0,1.0,amber heard and johnny depp: their legal battle explained | the gossipy,,,,,,,,,, +471,https://www.youtube.com/watch?v=QJBfgFiTBaE,0,0,{'NegativeNedTV'},1,youtube,video,original video,"well it seems it is official miss amber heard is removed from dc and aquaman 2 respectfully. i agree what she was doing to johnny depp was pretty fucked up with the abuse allegations, and it was probably a matter of time before she got fired. why the flash didn't get fired for choking out a fan... i guess we will never know 🤔 + +don't forget if you enjoyed to like and subscribe and check out my other content, i promise you will only regret it slightly😙 + +#amberheard +#amberheardfired",41.0,2719.0,,,,,,2661.0,8.0,0.0,9.0,amber heard reaction to being fired from aquaman 2 (meme edit),,,,,,,,,, +472,https://www.youtube.com/watch?v=gN8Rgce9owY,0,0,{'Me'},1,youtube,video,original video,"so receipts have come out and it has been revealed that amber heard, in fact, did not donate her promised 7 million settlement to charity. after 4+ years of using this as an excuse or 'proof' she is not a gold digger, the truth has finally come out that she, in fact, is a gold digger who used sick, dying children for positive publicity. +she had the full divorce settlement for over a year before johnny sued her so she did not need the money to fight him in court. +she committed perjury. cancel culture do your thing, a monster is among us. + +#amberheardisanabuser +#justiceforjohnnydepp +#amberheardisagolddigger + +read the article in daily mail: https://www.dailymail.co.uk/news/article-9118921/johnny-depp-accuses-amber-heard-taking-7m-settlement-lying-giving-charity.html + +or sausage roll: https://www.sausageroll.com.au/lifestyle/celebrities/amber-heard-reportedly-stole-withheld-millions-from-a-childrens-hospital/",188.0,4454.0,,,,,,4235.0,2.0,0.0,29.0,curb your donation to dying children,,,,,,,,,, +473,https://www.youtube.com/watch?v=qdRZP1s5GM4,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"amber heard attacks johnny depp and mocks him in a instagram post ! + +join this channel to get access to perks: +https://www.youtube.com/channel/ucg2qylhnyyxksvv6ve11ijw/join + + +hope you enjoyed this video. if you did please consider to become a member of the channel and join our community. + +don’t forget to like, subscribe, share and hit the notification bell. + +thank you for your support, it means more then you could imagine. + +please check out : + +tammy tips and tricks : https://instagram.com/tammy.tipsandtrips?igshid=sk5olemcpdhp + +rob’s rebellion star wars channel : + +https://youtube.com/channel/ucneeomqldbqxhdpdmxaq1pg + +rob’s rules discord : + +https://discord.gg/b2r5aubj + +twitter : @wars_everything + +email : estarwars1977@gmail.com + +#justiceforjohnnydepp +#justicefordepp",383.0,4453.0,,,,,,3869.0,5.0,0.0,196.0,amber heard attack and mocks johnny depp on instagram !,,,,,,,,,, +474,https://www.youtube.com/watch?v=LjGX6L2cMb4,0,0,{'The HollyVibe'},1,youtube,video,original video,"how amber heard destroyed her own life amber heard was extremely successful after divorcing johnny depp: she got cast in the +biggest movie franchise of her career - dc's 'aquaman' - became the spokesperson of +cosmetics giant l'oréal paris, as well as american civil liberties union (aclu) ambassador +for women's rights with a focus on gender-based violence. +so many people even claimed they have never heard about amber until this infamous +divorce: “had no idea who she was until that divorce. i didn’t even know that it was her who +played mara!” - one fan said. +however, the tables have turned and now amber heard is finding that her career as an a-list +hollywood actress might be over. she has reportedly been kicked from aquaman 2 and she +is about to lose the contract with l'oreal paris",26.0,329.0,,,,,,287.0,1.0,0.0,15.0,how amber heard destroyed her own life so bad,,,,,,,,,, +475,https://www.youtube.com/watch?v=WJJXgV9PPWY,0,0,{'Think Story'},1,youtube,video,original video,"the stand has just finished on cbs all access so i thought it would be fun to see the main differences with the new version starring alexander skarsgård, amber heard, and oprah winfrey and the 1994 abc mini series. + +follow me: +twitter: https://www.twitter.com/thinkstoryyt +instagram: https://www.instagram.com/thinkstoryyt +tiktok: https://www.tiktok.com/@thinkstory​ + +#thestand #cbs",3332.0,174209.0,,,,,,169394.0,86.0,0.0,1397.0,72 key differences between the stand (1994) and the stand (2021),,,,,,,,,, +476,https://www.youtube.com/watch?v=-qHw0PtrdQI,0,0,{'This Happened'},1,youtube,video,original video,"how amber heard destroyed her own career + + +after being effectively ostracized from hollywood, johnny is now getting back on his feet and winning over public opinion. +in the meantime, amber is losing jobs left and right, and the consensus among fans is that she orchestrated a hoax against johnny in an attempt to ruin his career. +but it now looks like amber’s plan is backfiring and instead of ruining johnny’s career, she’s ruining her own. + + +subscribe for celeb drama: http://youtube.com/channel/ucylyoo597nuffyjs_hwhubq?sub_confirmation=1 + +#thishappened #johnnydepp #amberheard",6180.0,300022.0,,,,,,291853.0,128.0,0.0,1861.0,how amber heard destroyed her own career,,,,,,,,,, +477,https://www.youtube.com/watch?v=L4xLhQQHsRo,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"more bombshells against amber heard and for johnny depp! +let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +☆other platforms☆ + +•backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + +☆support the channel☆ + +•become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +•if you want to support my channel, please check out my patreon and subscribe star below: + +•patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp #aquaman #aquaman2",580.0,5858.0,,,,,,4903.0,2.0,0.0,373.0,"more bombshell evidence prove amber heard a liar, as johnny depp takes the win!",,,,,,,,,, +478,https://www.youtube.com/watch?v=cAl2sxQfxSQ,0,0,{'InformOverload'},1,youtube,video,original video,"viral tiktok exposes prince harry’s real dad +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +following the recent oprah winfrey interview with prince harry and meghan markle there has been lots of talk about the royal family. now in order to troll prince harry an old theory about who harry's real dad is has seemingly resurfaced on tiktok. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#tiktok #princeharry #jameshewitt #princessdiana #meghanmarkle #theroyalfamily #meghanoprahinterview #princecharles #princewilliam #royaltea #royalfamily #thequeen #realfather #paternitytest #princeharryandmeghanmarkle #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 #celebritygossip #influencergossip #celebritytea #influencertea + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +johnny rogers: https://www.instagram.com/thejohnnyrogers/ + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +jennire narvaez: https://www.instagram.com/jennirenarvaezphotography/ + +📱instagram: https://www.instagram.com/informoverload +📱facebook: https://www.facebook.com/informoverload/ +📱twitter: https://twitter.com/informoverload +📱reddit: https://www.reddit.com/user/informoverloadreddit +✉️email | contact: informoverload@gmail.com",1015.0,31439.0,,,,,,30085.0,67.0,0.0,272.0,viral tiktok exposes prince harry’s real dad,,,,,,,,,, +479,https://www.youtube.com/watch?v=5cbCG4JrqBk,0,0,{'Amber Howe'},1,youtube,video,original video,"hey babes! + +i'm back with another true crime tuesday case and todays case is about the larry eyler also known as the highway killer or the interstate killer. + +larry william eyler was an american serial killer who is believed to have murdered a minimum of twenty-one teenage boys and young men in a series of killings committed between 1982 and 1984 in the midwestern states. + +* +come join my family - hit that subscribe button: +https://www.youtube.com/c/amberhowexox + +you can also find me here : +instagram - amberhowexox - https://www.instagram.com/amberhowexox/?hl=en +twitter - amberhowexox - https://twitter.com/amberhowexox +facebook – https://www.facebook.com/amberhowexox/ +blog - www.amberhowe.co.uk +tik tok - @amberhowexox + +if you want to get in touch regarding a collaborations and/or pr, please feel free to email me: + +amberhowebeauty@gmail.com + +this video isn't sponsored and all opinions are my own. i do sometimes get products sent to me to try but this doesn't affect my opinions. some of the links used may be affiliate links, which basically means i get a small amount of profit if you purchase through them at no additional cost! + +tags: +#truecrime #truecrimetuesdays #truecrimetuesday +#coldcase​ #truecrime​ #solvedtruecrime #unsolvedcases​ #unsolvedtruecrime​​ #truecrimeyoutube​ #truecrimeyoutuber​ #britishtruecrime​ #serialkiller #britishtruecrimeyoutuber #truecrimeandmakeup #truecrimeyoutubersmakeup #serialkillers +keywords: +larry eyler serial killer,larry eyler highway killer,larry eyler victims,larry eyler childhood,larry eyler documentary,larry eyler serial killer documentary,the highway killer,the highway killer larry eyler,true crime youtubers uk,true crime tuesdays,true crime tuesday,the interstate killer,true crime youtubers makeup,true crime and makeup,true crime youtubers like bailey sarian,true crime stories solved,true crime youtubers like kendall rae,solved true crime",61.0,2152.0,,,,,,2043.0,7.0,0.0,41.0,the highway killer - larry eyler - true crime tuesdays! | amber howe,,,,,,,,,, +480,https://www.youtube.com/watch?v=caiiA04xXGk,0,0,{'Doctor Soup'},1,youtube,video,original video,"#justiceforjohnnydepp + +previous video: https://www.youtube.com/channel/ucpi3... + + +i think the video i recently uploaded about raven symoné, gave many of us the impression raven is on depp's side. raven put out a video which discussed how she saw amber heard at the same tesla charging station. amber heard was seen freaking out, by raven and her wife. + +i did some research after this, only to find that johnny depp is one of the accounts raven follows; raven does not, however, follow amber heard! thank you to the twitter user who pointed this out; i apologize for not remembering who tagged me, as i get many notifs a day. + +my links: +twitter: iamdrsoup",490.0,5638.0,,,,,,5036.0,3.0,0.0,109.0,confirmation raven symoné supports johnny depp and not amber heard!?,,,,,,,,,, +481,https://www.youtube.com/watch?v=JNtMBUgIj7k,0,0,{'Planeta Arcadia'},1,youtube,video,original video,"tenemos fecha para creed iii, amber se queda (como dije hace mucho) y más noticias del mundo del cine y las nerdeadas! + +►apoya a protocultura con una donación: +https://ceneka.net/mp/d/pabloarcadia +proto- colaboración: https://mpago.la/24j6p4y +super-colaboración: https://mpago.la/1zzvxon + +►apoya al canal sumándote como miembro: +https://www.youtube.com/channel/uceh7... + +pablo arcadia equipa su pc gamer en peak computación, los mejores componentes y periféricos a precios imbatibles: https://www.peakcomputacion.com + +aseguro que mi memoria esté bien almacenada con discos adata + +mi micrófono es un trust exxo, compralo en https://www.peakcomputacion.com + +protocultura almacena su memoria con adata + +►suscribanse al canal: http://goo.gl/snycvp + +►redes de pablo arcadia: +twitter: http://www.twitter.com/pabloarcadia +instagram: http://www.instagram.com/pabloarcadia +facebook: http://www.facebook.com/protoculturanerd",284.0,1977.0,,,,,,1681.0,3.0,0.0,9.0,"protocultura news 📣 creed iii, amber heard se queda en dc y más noticias de cine y nerdeadas!",,,,,,,,,, +482,https://www.youtube.com/watch?v=C_ftarbzJEk,0,0,{'EVERYTHING'},1,youtube,video,original video,,6.0,61.0,,,,,,51.0,1.0,0.0,3.0,johny depp and amber heard couple status video 2020,,,,,,,,,, +483,https://www.youtube.com/watch?v=ujZhEVOOkfA,0,0,{'Matthew Kircher'},1,youtube,video,original video,"here are my top 10 actresses i want to see take on mera if amber heard does end up getting recasted in the dceu. this is not a hate video towards amber heard by any means but with the ongoing battles with her and johnny depp going on currently, i figured i would share ten actresses i want to see play mera if anything happens",1.0,74.0,,,,,,73.0,0.0,0.0,0.0,top 10 actresses i want to see replace amber heard as mera in the dceu,,,,,,,,,, +484,https://www.youtube.com/watch?v=ShGGbAwR9R8,0,0,{'Sadboii Team'},1,youtube,video,original video,"one of the biggest news recently in hollywood is probably the news about johnny depp being asked to leave fantastic beats 3 as grindelwald but his ex-wife, amber heard was allowed to stay on for dc movies like aquaman. isn't that crazy? the judge from the court case even threw out johnny depp's evidence even though it was a recording of amber heard admitting to hitting johnny depp. hollywood is weird. but warner bros. did johnny depp dirty... funny enough though, warner bros. still has to pay johnny depp his 8-figure salary even though he only filmed one scene in the movie. + +================================== + +listen to the full episodes on:⠀⠀⠀⠀⠀⠀⠀⠀⠀ +apple podcasts - https://buff.ly/37kx09z⠀⠀⠀⠀⠀⠀⠀⠀⠀​​ +spotify - https://buff.ly/2u04hxc⠀⠀⠀⠀⠀⠀⠀⠀⠀​​ +google podcast - https://buff.ly/2yl9yea⠀⠀⠀⠀⠀⠀​​ +buzzsprout - https://buff.ly/39ok4fb⠀⠀⠀⠀⠀⠀⠀⠀​​ + +we've got ads!!!⠀⠀⠀⠀⠀⠀⠀⠀⠀ +instacart: https://buff.ly/3f72pvk⠀⠀⠀⠀⠀⠀⠀⠀⠀​​ +bowflex: https://buff.ly/2ies6rs⠀⠀⠀⠀⠀⠀⠀⠀⠀​​ +buzzsprout: https://buff.ly/3papree⠀⠀⠀​​ + +follow us! +facebook: https://www.facebook.com/theesadboipodcast⠀⠀⠀⠀⠀ +instagram: https://www.instagram.com/theesadboipodcast/ + +follow your hosts! +russel lok: https://www.instagram.com/rkhlok/ +lucas po: https://www.instagram.com/lucas_cyp/",0.0,1.0,,,,,,1.0,0.0,0.0,0.0,#43 || warner bros. screwed up,,,,,,,,,, +485,https://www.youtube.com/watch?v=L8TSBv2IW7Q,0,0,{'Doctor Soup'},1,youtube,video,original video,"amber heard has taken things too far. jennifer howell is being threatened by amber heard stans and it is unacceptable. jennifer howell has done so much for johnny depp and i believe these people can't be reasoned with. in this stream i will be discussing all of the good that jennifer howell has done for johnny depp, to dilute out the hateful stans.",279.0,2450.0,,,,,,2088.0,1.0,0.0,82.0,jennifer howell threatened by amber heard stans. this has gone way too far.,,,,,,,,,, +486,https://www.youtube.com/watch?v=GX2CSx492ak,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard gets wrecked by the police! these attacks may ruin her! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #johnnydepp #amberheard",4566.0,78343.0,,,,,,73124.0,37.0,0.0,616.0,amber heard gets wrecked by the police! these attacks may ruin her!,,,,,,,,,, +487,https://www.youtube.com/watch?v=rVZ7_fC_-OE,0,0,{'Binge Watch'},1,youtube,video,original video,"10 celebrities that defended johnny depp against amber heard + +subscribe to binge watch - http://tiny.cc/bingewatch + +watch next 👇 + +how amber heard destroyed her own career + +https://youtu.be/gefwubrffr8 + +related videos: + +10 celebrities that defended johnny depp against amber heard + +https://youtu.be/gecq8x8b6bo + +more celebrities who defended johnny depp against amber heard!!! + +https://youtu.be/tzqaslwfhig + +top 10 celebrities who defended johnny depp + +https://youtu.be/uj9kutxlulw + +the never ending fight between johnny depp and amber heard seems to last forever. every +day the press reveals new facts and new details about the situation but no one knows how it +all going to end and who is the victim and who is the liar. but the only thing which left for us - +is to analyze the facts. after ex-wife amber heard accused him of committing domestic +violence during their marriage, multiple celebrities with ties to johnny depp have come +forward in his defense. this is really impressive but depp’s other ex-wife and mother of his +two children, vanessa paradis, depp’s ex-fiance winona ryder, and his former co-star +penelope cruz have all testified in the actor’s defense. it should be noted that though all +three women insist depp was never violent in their presence, the only ones for certain who +know the intimate details of heard and depp’s marriage are depp and heard. anyways, let’s +listen to what many celebrities had to say about the entire situation and why they defend +johnny depp. +10. winona ryder +winona ryder is the blast, depp’s edward scissorhands‘ co-star and his ex-girlfriend. she +declared that she had never experienced any of the behavior that heard detailed. she said: +“from my experience, which was so wildly different, i was absolutely shocked, confused and +upset when i heard the accusations against him.” ryder continued as part of her statement +in defense of depp’s character, “the idea that he is an incredibly violent person is the +farthest thing from johnny i knew and loved. i cannot wrap my head around these +accusations.” winona ryder went on to say that johnny depp was “never, never” violent or +abusive towards her or “towards anybody i have seen.” she also said that she’d always “felt +so very, very safe with him.” +9. sharon osbourne +speaking on us daytime hit the talk, sharon compared the pair's relationship to her violent +marriage to ozzy saying: ""she gave him as good as she got."" the former x factor judge +said: ""do you know what i think? it takes two to tango. i think they had a very vulnerable +relationship. i think they're both as bad as each other."" sharon continued: ""she gave him as +good as she got. it wasn't just like a little mouse in the corner being battered. she gave him +back. speaking about depp and heard on the talk this week, sharon insisted: ""if there is +enough love you work through it with help. but there obviously wasn't that love to keep them +together. ""he was defending himself, she was defending herself. whatever went on only +those two know. they both hurt each other”. +8. laura wasser +depp’s high-powered divorce attorney laura wasser, who has also represented clients like +agelina jolie and allegedly works with kim kardashian, responded to heard’s restraining +order request in court documents, saying the actress is “attempting to secure a premature +financial resolution by alleging abuse.” “her current application for a temporary restraining +order along with her financial requests appears to be in response to the negative media +attention she received earlier this week after filing for divorce,” wasser wrote. “yet johnny +cannot protect himself or amber from media scrutiny, and amber’s anger certainly cannot + +drive this dissolution proceeding.” wasser also alleges that heard took advantage of depp at +an emotional time – his mother having died three days before heard filed for divorce on +monday. +7. laurie holden +walking dead star laurie holden defended depp on twitter, in an “impassioned reaction to +the vilification of a human being on social media and the public outcry for complete and utter +rumination.” +“i, for one, am going to see johnny depp’s new movie,” the 46-year-old actress tweeted +about alice through the looking glass. “his personal life is just that. personal. no one +knows the real truth so just zip it.” “to be clear: i am just saying don’t jump to +conclusions,” she added. “even a pic might not be telling the whole story....” +... + +what’s your opinion on the entire situation? +do you think johnny depp's camp is telling the truth and an actor would never harm amber +heard? let me know your opinion in the comments section down below. + +binge watch - binge watch is the best source of the latest celebrity news. want to see what's trending today in the hollywood life or hear about the newest celeb gossip? you're in the right place. + +consider subscribing to not miss out on what's trending today in the life of the world's biggest stars. + +#celebrity #news #bingewatch",2018.0,74693.0,,,,,,72277.0,66.0,0.0,332.0,10 celebrities that defended johnny depp against amber heard,,,,,,,,,, +488,https://www.youtube.com/watch?v=nthKIiDEf5g,0,0,{'Greta Aurora'},1,youtube,video,original video,"narcissists are notorious abusers, but they are just as likely to play the victim. they also often become spokespeople for feminism and other victimhood-based social justice movements. + +support my work on patreon: https://www.patreon.com/gretaaurora +send me a tip: https://www.paypal.com/paypalme/gretaaurorahadesz + +website: https://gretaaurora.com +facebook: https://www.facebook.com/gretaaurorahadesz +instagram: https://www.instagram.com/gretaaurorahadesz +twitter: https://twitter.com/gretaaurora + +references: +https://www.amazon.com/malignant-self-love-narcissism-sam-vaknin/dp/8023833847/ +https://newmalestudies.com/ojs/index.php/nms/article/view/311/374 +https://journals.sagepub.com/doi/abs/10.2466/pr0.1989.64.3.999 +https://journals.sagepub.com/doi/pdf/10.1177/1948550616647448 +https://www.sciencedirect.com/science/article/abs/pii/s0191886920303238 +https://psychcentral.com/blog/psychology-self/2018/07/narcissist-delusion#1 +https://pagesix.com/2020/07/23/amber-heard-compared-johnny-depp-to-her-violent-dad-texts-reveal/",364.0,4272.0,,,,,,3799.0,16.0,0.0,93.0,female narcissism and #metoo: when narcissists play the victim,,,,,,,,,, +489,https://www.youtube.com/watch?v=w1W3j_Kk2N0,0,0,{'Spill King'},1,youtube,video,original video,"princess diana wants to work with princess mera. wow, if this comes true then we are going to see some real princesses show down. but amber heard fired from aquaman 2? +we know that both are the dc royalties with such powerful and fierce roles but despite this they haven’t shared the screen yet. +according to dnaniel richtman, gal gadot is eager to work with amber heard in the dceu. if the wonder woman is eager to work with heard and this leaked news is true then we will get to see some great some stuff where both these badass princesses will kick some ass. +we can also maybe see rivalry as both altanteans and amzoneans share a long history of conflict in dceu comics. +as aquaman 2 is in pre-production so we might not see them sharing a scene this soon, but we might see a scene between them in future dc movies slash series. +it was also rumored that emilia clark will replace amber heard’s role as princess mera. and the great khal’s great khaleesi is getting more support for this role to see the great chemistry again. depp’s fans signed a petition to warner bros with over a million signs. yes!! a million signs just to replace amber heard. +▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ +about movie king: +hey everyone, welcome to our movie king youtube channel. +on this channel we show exciting insights about the tea spill with all the celebrity news and their drama. + +you also will find stunning entertainment about the the hollywood life and the showbiz. +▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ +please do like this video to help me keep growing and subscribe to my channel that helps me in ways i can't even explain. i am really grateful to you guys for supporting my channel. +►►►subscribe: https://bit.ly/3vx5q2r +▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ +#amberheard #teaspill #movieking",6.0,174.0,,,,,,161.0,2.0,0.0,5.0,gal gadot wants to work with amber heard,,,,,,,,,, +490,https://www.youtube.com/watch?v=jQAdzYTT3Tg,0,0,{'eHacker'},1,youtube,video,original video,amber heard using marilyn manson against johnny depp!?,406.0,5595.0,,,,,,4913.0,12.0,0.0,264.0,amber heard using marilyn manson against johnny depp!?,,,,,,,,,, +491,https://www.youtube.com/watch?v=Weh7DWgL_XQ,0,0,{'The Spotlight'},1,youtube,video,original video,"amber heard's lawyer exposes her for ruining johnny depp's life!! + +subscribe to the spotlight 👉 https://bit.ly/3txagy1 + +watch next: ▶️ + +https://www.youtube.com/watch?v=yvpybrarags&t=93s + +https://www.youtube.com/watch?v=_nlxncl6pfu&t=251s + +https://www.youtube.com/watch?v=h6ag6p31kbo&t=100s + +------------------------------------------------------------------------------------------------------------------------ + + +related videos:👇 + +https://www.youtube.com/watch?v=pzr2_v4upgi&t=2s + +https://www.youtube.com/watch?v=o1rrb3et21c + +https://www.youtube.com/watch?v=it2kiyt7-rk + + +heard used to act in well-directed independent movies and gained fame but her actual turning point was her portrayal of queen mera in justice league which she went ahead with, in the aquaman movie also. + +it was one of the highest-grossing films in 2018 and she gained international recognition because of that role. she even was nominated as a global spokesperson for l'oreal paris. she even dated elon musk for a year until early 2018! + +amber heard had things going good for her until the controversy struck and her whole career braked to a halt over allegations that she abused depp and he was the victim of abuse during their marriage. + +the entirety of hollywood was split into two, one favoring her and one favoring her ex-husband during this scandal. when she stepped out as a victim of marital abuse, she got a lot of support and concern from all fans. + +sympathy went to depp and most of the production houses didn't want any of them to be broiled in controversy after casting. heard lost her role in aquaman 2 and expressed her deep disappointment and depp stepped down from his role as grindelwald in the crimes of grindelwald movie of the fantastic beasts franchise. + +johnny depp was first married to lori allison and later got engaged to jennifer grey but finally proposed to winona ryder who was his co-star. he was so obsessed with her, he tattooed “winona forever” on his right arm. + +but that didn’t work out and he instead hit it up with vanessa paradis and has two children with her. paradise and he separated in 2012 and then walked amber heard into his life. + +amber heard was dating tasya van ree in the 2010s and they broke up in 2011. there was a charge against her for misdemeanor and domestic violence, but ree later said that it was just over-sensationalized.heard met depp in 2012 on the sets of a movie and they dated and even lived together for three years. they then got married in 2015. + +within 7 months, in 2016, they filed for divorce. but it wasn’t just divorce, she pressed charges against him for verbal and physical abuse under alcohol influence. + +heard went ahead to release pictures and evidence of her abuse which garnered more outrage. they alleged that their relationship was passionate and volatile but forever bound by love. they said that they did not do this for the money and yet, johnny depp had to pay heard an amount of 7 million us dollars, which she donated to the children's hospital in los angeles. + +fans thought that was it, everything had settled, but heard published an op-ed in the washington post where the narrative was about her as an abuse victim. it did not mention depp in any way, yet he took action and slapped a libel case on her. in a huge twist, he accused heard of physical abuse, provided evidence, and said that all her claims were a hoax. + +this was all that depp wanted, he started to sue all the articles that labeled him a “wife-beater” and other claims but the high court of justice voted in heard’s favor and said that his claims of the whole thing being a hoax was not justified. depp decided to appeal the decision and in order to give his all for it, decided to step down from his role in crimes of grindelwald and was replaced by mads mikkelsen. boycott amber heard + +after the call by the actor to contest heard's claim, fans showed massive response by flooding twitter with deppmovienight and deppcember where they organized a 24-hour movie marathon to show westandwithjohnnydepp. + +due to their massive activism in depp's aspect, they generated an online petition to get heard removed from aquaman 2 which succeeded and she was very heartbroken about it. such was the huge controversy in johnny depp's life. + +the mic drop comes because amber heard's lawyers quit. this was quite the turnaround as at this crucial junction it is unheard of for lawyers of great distinction to quit. roberta kaplan is a high-profile lawyer and her withdrawal from the case and letting heard take up the services of another counsel called elaine bredehoft from virginia is quite shocking. depp seems to be moving on and has the case to persist in the case. depp's defamation lawsuit against heard will be commenced in the spring of 2021. clevver news johnny depp amber heard amber heard aquaman 2 + +#amberheard #johnnydepp #justicefordepp #thespotlight #amberheardexposed #depp #heard #aquaman2 #jasonmomoa",199.0,6039.0,,,,,,5757.0,24.0,0.0,59.0,amber heard's lawyer exposes her for ruining johnny depp's life!!,,,,,,,,,, +492,https://www.youtube.com/watch?v=gJ7qMRXBLTU,0,0,{'ryanmost'},1,youtube,video,original video,"amber heard is addressing the allegations that ex-johnny depp's legal team has made. in a report from the daily mail, depp's lawyers are trying to appeal his defamation case against the sun and have claimed that heard kept the $7 million settlement from their 2016 divorce instead giving it to the children's hospital los angeles and… +please subscribe: https://www.youtube.com/channel/uc5uitz5infvuqregsoir_dq?sub_confirmation=1 +source: https://etcanada.com/news/732608/amber-heard-responds-to-claims-she-didnt-donate-7-million-johnny-depp-divorce-settlement-to-charity/ +#amberheard, #addressing, #allegations, #that, #johnnydepp, #legal, #team, #made, #in, #report, #from, #daily",1.0,38.0,,,,,,36.0,0.0,0.0,1.0,amber heard is addressing the allegations that ex-johnny depp's legal team has made. in a report fro,,,,,,,,,, +493,https://www.youtube.com/watch?v=t6HlxXi2wuo,0,0,{'Fire Amber Heard'},1,youtube,video,original video,watch anime bruh,6.0,25.0,,,,,,17.0,0.0,0.0,2.0,solving a rubik's cube everyday until amber heard gets fired - day 27,,,,,,,,,, +494,https://www.youtube.com/watch?v=DiTq6_dFm2I,0,0,{'Anugrah Movies12'},1,youtube,video,original video,"aquaman has been blinded in a mysterious event. years have passed and soon he regains his sight. however, damage to his land has been done. its up to him and mera to find out what happened. hey guys i would like to make it clear that this trailer is fan made. that means it contains clips from other movies, put together with special effects using wondershare filmora video editor and photopea (photopea.com) photo editor. + + +►thanks to my patrons! danielle moore nazzaria grendanin jazmyn lynn queen james johnson ---------------------------------- +editing details: creating aquaman 2 was challenging because i was not into this franchsie. but my dc lover side made me appreciate this film more. i watched this film once and i thought it was decent. the fresh clips are not too hard to find since there are plenty of cosplay to chose from. to avoid making this dream trailer feel low budget i chose clips from the aquaman movie it self. such as the atlantic city. the music was great, despite the lack of humor the soundtrack by the equalizer 2 trailer #2 was great because it had lots of trailer fling to it. the main actor himself had lots of movies to chose from since this is the first time i made a project about him. not the first aquaman project though, i did one back in 2020 for one of the trailer style of the infinity saga. the line ""is only a myth"" is great connection to how aquaman is a mystical character. the film see had great lines talking about ""gods"" that perfectly fits this dream trailer. speaking of perfectly fits, the clip with aquaman attacks the bad guy we get a transition to a guy getting attacked in the water. + +video credits | aquaman | see (2019) | 3 days to kill | the hollow | the undoing | togo (2019) | candyman (2020) | creating aquaman's suit | ikon collectibles 1:1 by cosplay chris | aquaman cosplay by mike kirts | aquaman's mera costume | diy aquaman cosplay tattoos by the woodland elf | mulher maravhilha vs aquaman by franklin fernandes music credits | the equalizer 2 trailer #2 soundtrack --------------------------------------- + + ►music credit: youtube audio library and thanks to feature presentation youtube channel for providing the trailer soundtracks.",0.0,15.0,,,,,,15.0,0.0,0.0,0.0,"aquaman 2 (2022) teaser trailer - jason momoa, amber heard",,,,,,,,,, +495,https://www.youtube.com/watch?v=4mbv0fcpcFo,0,0,{'Nature Spot Entertainment'},1,youtube,video,original video,"amber heard fired from upcoming aquaman 2 movie featuring jason momoa. visit https://mypetstrendy.com for fun cute trendy pet products!!low prices! best quality! free shipping! better than amazon, thats facts",2.0,33.0,,,,,,28.0,1.0,0.0,2.0,amber heard fired from upcoming aquaman 2 movie featuring jason momoa,,,,,,,,,, +496,https://www.youtube.com/watch?v=d4v0E7kkaVQ,0,0,{'whatever'},1,youtube,video,original video,"trolling a protest part 2 ► http://youtube.com/watch?v=lrvcwynxzly&list=pl2uzhehkqpwye07ielwfrcjn7zz5qr-fm + +watch 100+ exclusive videos on patreon! ► http://patreon.com/whatever + +❤️ support me: +patreon ► http://patreon.com/whatever +tip jar ► http://paypal.me/pools/c/8rso7fmrol +merch ► http://whatever.com + +❌ connect: +facebook ► http://facebook.com/whatever +twitter ► http://twitter.com/whatever +instagram ► http://instagram.com/whatever + +🏴‍☠️ cast: +brian ► http://instagram.com/bd_atlas + +🕘 timestamps: +0:00 introduction +1:18 smash the matriarchy +1:25 stop premature christmas decorating +2:08 i hate crowds +2:16 women deserve bigger front pockets on their jeans +2:23 legalize gay marijuana +2:41 shit is fucked up and stuff +2:46 my arms are tired +3:03 i'm here for the gangbang +3:47 atheists for jesus +4:04 redo season 8 game of thrones +4:34 stop shaming small peens +4:48 whatever +5:02 eastern european gymnast immigrants are welcome here +5:20 they were on a break +5:28 lip fillers look super retarded +5:34 manlets are people too +6:33 stop recommending videos of women's pole vault on youtube +6:45 stop simping +6:56 would simp for keyra augustina circa 2005 +7:51 generic angry slogan +7:57 simping is a mental illness +8:12 belle delphine did 9/11 +8:18 redacted are redacted +8:37 picking oddjob in goldeneye 007 is for beta cucks +9:04 not usually a sign guy but geez +9:07 equal pay for men on onlyfans +9:51 justice for johnny depp +10:06 amber heard is a scumbag +10:41 leonardo dicaprio's girlfriends deserve a future +10:55 all labia matter +11:35 cobra kai never dies +12:06 this sure beats working for a living +12:12 smash the matriarchy +13:17 rip zyzz +13:24 conspiracy theory rambling +13:57 outro + +⚠️ disclaimer: i am a professional idiot and an equal opportunity troll. accordingly, i must insist that no one attempt to recreate or re-enact any activity performed in this video.",118811.0,1393608.0,,,,,,1256929.0,3255.0,0.0,14613.0,trolling a protest with absurd protest signs,,,,,,,,,, +497,https://www.youtube.com/watch?v=q32tzepkrj4,0,0,{'The Spotlight'},1,youtube,video,original video,"how amber heard ruined her career!! (exposed) + +subscribe to the spotlight 👉 https://bit.ly/3txagy1 + +watch next: ▶️ + +https://www.youtube.com/watch?v=yvpybrarags&t=132s + +https://www.youtube.com/watch?v=nk62q2ve1ck&t=120s + +https://www.youtube.com/watch?v=weh7dwgl_xq&t=11s + +------------------------------------------------------------------------------------------------------------------------ + +related videos:👇 + +https://www.youtube.com/watch?v=dkrfrqa2nk8 + +https://www.youtube.com/watch?v=izthjawkdza + +https://www.youtube.com/watch?v=rinub0hg78w + +before you proceed on with the video, do us a solid, smash the subscribe and like button to support our channel. also, do mention #justiceforjohnny in the comment section below so as to provide him with the justice he truly deserves as well as to feed the algorithm. + +so we guess most of you guys know about the messy divorce case that took place between hollywood superstar johnny depp and the gorgeous amber heard. ever since the proceedings of the divorce took place in 2016, johnny’s name in the industry has constantly been deteriorating while her name kept rising amongst the ranks of other film stars. + +in complete honesty, no one knew who amber heard was. many film stars from the industry have also claimed of not knowing her until her infamous divorce case was the talk of the town. + +do you guys want to know a certain bunch of deals she struck after her gruesome divorce? +well, for starters she was hired by the warner bros to play the role of mera in aquaman which was such a big deal for her as she had been playing smaller roles till then. this was also accompanied by her being the spokesperson of loreal paris, the world-renowned cosmetics brand. + +so, what exactly caused her career to come crashing down? +not going to lie, but all the virtual rotten tomatoes that are being thrown at her by the public after the truth about her actions was out, was completely her fault. amber heard had strategically planned all her moves carefully all along. she had the prime goal of ruining johnny’s life as well as career, probably for his money as he was once worth 400 million dollars which kept deteriorating till it touched 150 million dollars as of now and is still dwindling due to the massive amounts he has to pay. + +so, what exactly is the 50 million dollar johnny depp filed against amber heard, and what are the consequences that she may face in case johnny wins? +long story short, johnny cut the chase and brought out evidence of leaked audiotapes and text messages that clearly displayed amber to have abused him. + +in the case of amber being accused guilty, she would have to face a minimum of 3 years in prison for the reason of manipulation of evidence as well as for defaming her ex-husband. in addition to all of this, there are two petitions out in the open that are gaining a massive inflow of signatures on change.org, one of them holding the goal to remove her from being cast in aquaman 2. + +after the divorce with the me too movement blowing up, of which johnny was a major victim, johnny was losing roles, losing money, and losing fame. he even gave out a statement that he was attracted to her for beauty and actually thought she was a supportive woman but only a while later did he notice that she was only with him for the fame and the money. this is also probably why she struck a major deal with the dc movie aquaman quite easily. i think with that being said, it is safe enough to say that amber heard was truly a golddigger, not only for his money but was out to get his fame too. + +but what has amber heard said about these claims? +first of all, amber is a professional liar and that is something we all can agree on now. she has constantly been refuting the truth by stating that the accusations were false and that the world is just going against her based on some false facts. + +in fact, she even went out to lie about her divorce settlement. while she received her divorce settlement for 7 million dollars, she openly claimed that she didn’t want to keep the money of an individual who is involved in domestic abuse and even stated she would donate them to two organizations one being aclu and the children's hospital los angeles. the truth did come out that she did not fulfill her promise to both the organizations and just gave a mere few thousands out of the millions that she inherited. + +so back to the latest news about her, is she being kicked out of aquaman’s sequel? +warner bros have been quiet about this, but the latest reports have stated that she didn’t pass the physical exam which she is to pass as mentioned in the contract. due to her being out of shape, the movie may outcast her if she doesn’t fix it quickly. jason momoa + +#amberheard #johnnydeppcase #justicefordepp #amberheardcase #amberheardaudio #justiceforjohnnydepp #thespotlight",317.0,7076.0,,,,,,6653.0,6.0,0.0,100.0,how amber heard ruined her career!! (exposed),,,,,,,,,, +498,https://www.youtube.com/watch?v=czMFMTZiQJM,0,0,{'Tech In Asia ID'},1,youtube,video,original video,"in this session, amber will share her experiences as lazada's senior product manager and the practices that have helped her make leaps in her performance. + +- what kind of data does she use for product design? +- how does she use data to help the product design process? +- how does the implementation of data drive product outcome? what lessons has she learned from her product design experience? + +the session will be conducted in english.",26.0,1847.0,,,,,,1819.0,2.0,0.0,0.0,road to pdc: infusing analytical dna into product design,,,,,,,,,, +499,https://www.youtube.com/watch?v=fMmVy2dq7G4,0,0,{'DELCARAJO TV'},1,youtube,video,original video,"► ricardo ➥ https://tus10seg.com/1024944 + +► tus 10 segundos ➥ https://tus10segundos.com/products/delcarajotv +► se parte del team delcarajo: +➥ https://youtube.com/channel/ucuwebhxve6c69jtbpiy-y8q/join +► tienda delcarajo ➥ http://delcarajo.net + +► sigueme en: +twitter ➥ http://twitter.com/juanitosay +instagram ➥ http://instagram.com/juanitosayoficial + +► contacto: say@delcarajo.net + + +* hey, friki delcarajo... ¿que haces tan abajo? el boton de like esta mas arriba ( ͡° ͜ʖ ͡°)",6581.0,91925.0,,,,,,84579.0,118.0,0.0,647.0,¡amber heard ataca a johnny depp y su abogado! controversia de el demente y regresa harley quinn,,,,,,,,,, +500,https://www.youtube.com/watch?v=1aVvkzyNYsk,0,0,{'eHacker'},1,youtube,video,original video,amber heard blames johnny depp for donation receipts!,642.0,3630.0,,,,,,2628.0,3.0,0.0,357.0,amber heard blames johnny depp for not donating 7 million!,,,,,,,,,, +501,https://www.youtube.com/watch?v=AO12UAR9WlE,0,0,{'eHacker'},1,youtube,video,original video,"amber heard flaunted richness! (clip) +check out channel membership if you are keen to support the channel! +new members get their names in the credits! + +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com +donate direct to support : coming soon! + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods",504.0,3599.0,,,,,,2945.0,5.0,0.0,145.0,amber heard flaunted richness! (clip),,,,,,,,,, +502,https://www.youtube.com/watch?v=CjZ7MZI_M9A,0,0,{'RH 20YT'},1,youtube,video,original video,"aquaman 2 (2022) hd trailer jason momoa - amber heard movie hd + + + +#trailer #aquaman2",40.0,282.0,,,,,,237.0,4.0,0.0,1.0,aquaman 2 (2022) hd trailer jason momoa - amber heard movie hd,,,,,,,,,, +503,https://www.youtube.com/watch?v=jsDJEZhsfGY,0,0,{'Stevie J Raw'},1,youtube,video,original video,"this video johnny depp v amber heard is a full readthrough of amber heard's fifth witness statement from the uk trial. + +this is one of multiple videos to be released every 2-3 days, each covering another witness statement from the johnny depp v the sun trial in the uk. + +big thanks to les for doing the voice over for each female witness. +subscribe to les - https://www.youtube.com/channel/ucseatdlh3kfgl17dnarfw2g + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join +art of elysium donation page - https://www.pledge.to/the-art-of-elysium + +justice for johnny depp t-shirts (proceeds go to charity): +design 1 - https://t.co/uycndh9ebj?amp=1 +design 2 - https://t.co/hdmq0wicke?amp=1 +design 3 - https://t.co/lqmeoidmje?amp=1 +design 4 - https://t.co/lkteqqdxhg?amp=1 + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#justiceforjohnnydepp #johnnydepp #johnnydeppamberheard",185.0,1852.0,,,,,,1566.0,2.0,0.0,99.0,johnny depp v amber heard (the sun) | amber heard witness statement (5 of 7) full readthrough,,,,,,,,,, +504,https://www.youtube.com/watch?v=IrMhJbXc8FM,0,0,{'Phoenix Spring Tarot'},1,youtube,video,original video,"💥💥warning 💥💥 if you feel that domestic issues of this nature would be triggering for you, please do not watch this reading. there are other reading on this channel you may feel more comfortable with. keep mentally safe 🕊️ + +hi guys, this reading forms part of the depravity series i'm doing. i suspected going into this reading what the outcome would be and it was confirmed so no major surprises here depending on what side of the fence you're on. + +there are no sides taken in this reading, i'm being impartial and just reading the cards. note any form of violence regardless of the perpetrator is unacceptable. i hope this gives insight into how a situation can escalate out of control. there are valuable life lessons and takeaways from observing the experiences of others and that is what all my readings are about, in particular the depravity series. + +if you found the reading insightful please like & subscribe. if you have any comments or questions let me know in the comments below and i'll get back to you within 48/72 hours. should you be interested in receiving your own private reading or experiencing one of the other spiritual modalities such as akashic record reading, chakra cleansing, life purpose and soul lessons/divine purpose for this incarnation, visit my website on www.phoenixspringtarot.com + +johnny depp vs amber heard ~ tarot reading! depravity series part 4 + +⏳timestamps⏳ +🍿📽️1) introduction - 0:01 +🍿📽️2) reading on current energies between johnny & amber - 4:00 +🍿📽️3) what the relationship between johnny & amber was really like / astrology placements - + 📽️amber heard's first impression of johnny & their relationship - 21:00 + 📽️what johnny depp thought of amber heard during the relationship - 24:50 / 26:29 +🍿📽️5) who is leaking deceptive stories to the public? johnny or amber or both? - 33:53 +🍿📽️6) immediate future for both johnny & amber - 31:48 / 51:00 + +#amberheard #johnnydepp #elonmusk #phoenixspringtarot #amberheardfired #johnnydeppfired #phoenixspringtarot #sunnewspaper #amberhearddeposition #johnnydeppdeposition #emiliaclarke #celebritytarotreading #depravityseries #metoo #amberheardmetoo #johnnydepplosesappeal #antphrodite",82.0,1579.0,,,,,,1426.0,13.0,0.0,58.0,johnny depp vs amber heard ~ tarot reading! depravity series part 4,,,,,,,,,, +505,https://www.youtube.com/watch?v=8n68SzcVhak,0,0,{'Vs editx'},1,youtube,video,original video,"mera | amber heard ❤️😍 +. +watch the video in hd quality +(1080q + earphones) +. +video edit by vs editx +. +#mera #vseditx #tuhimera #aquaman #amberheard",37.0,815.0,,,,,,769.0,4.0,0.0,5.0,mera 🥺💓💓 tu hi mera 😍| amber heard ❤️ | hd whatsapp status #shorts love status,,,,,,,,,, +506,https://www.youtube.com/watch?v=k0jXZC7m2HU,0,0,{'The Spotlight'},1,youtube,video,original video,"10 celebrities who defended johnny depp against amber heard... + +we all are quite familiar with how marriages work in hollywood. with just a handful of marriages that work out, the majority of the alliances end in despair and divorce. one notable and controversial divorce is the one between amber and depp. + +though amber is clearly in the wrong, depp is the one who seems to be losing his battles at court. to prove depp to be the victim, many have voiced their opinions in his defense. in today’s video, we’ll be listing down the top 10 celebs who stood up for the injustice and defended depp. + +subscribe to the spotlight 👉 https://bit.ly/3txagy1 + +watch next: ▶️ + +https://www.youtube.com/watch?v=yvpybrarags&t=77s + +https://www.youtube.com/watch?v=gw3jsjp13xc&t=24s + +https://www.youtube.com/watch?v=3vywz8t4_m4&t=5s + +------------------------------------------------------------------------------------------------------------------------ + + +related videos:👇 + +https://www.youtube.com/watch?v=gecq8x8b6bo + +https://www.youtube.com/watch?v=nczuqjc-jhu + +https://www.youtube.com/watch?v=cg9svqsmnoe + +jason momoa is a name that is buzzing and has been buzzing in the world of showbiz for quite some time. in fact, when aquaman was released earlier in the year 2018, he was the only talk of hollywood! following that, he was given the opportunity to play a variety of roles in different movies leaving us to wonder when we would see this heartthrob on the big screens again! + +due to aquaman’s major success, soon after its release, the second sequel to the movie was announced to be premiered in the year 2022. unfortunately, with the me too movement targeting so many a-listers, one of the cast members was accused of being a part of this bandwagon. any guesses on who fell off the wagon and joined in amongst the list of abusers? yes, it was amber heard! + +amber heard has been making headlines regularly for almost 2 years now, especially after her divorce from johnny depp. initially, people assumed her to be the poor victim in the chaotic scenario she had going on with johnny depp. at one point, we were pretty convinced that she was the victim after she posted her pictures of the scars that she had obtained due to being a victim of domestic violence. + +what were amber’s claims? + +amber heard proved to be the biggest victim of the year, with her constant rants on social media as well as her claiming johnny depp to be an evil man with anger issues. she kept throwing out lies until one day depp was forced to sue her, hence causing the famous chaotic court case to make repeated headlines. + +how did ambers claims backfire? + +johnny depp was proven innocent to his ex-wife’s claims after a leaked conversation between the two was released, proving that in fact, it was johnny depp who was being victimized. this surely didn’t save the mess he was in but made the likes of big platforms such as disney apologize to him for believing the allegations. + +how did this news worsen? + +the me too movement was trending and each day a new celeb was being called out for inappropriate behaviour of misconduct with the co-workers, especially the female ones. due to this being embedded in the minds of all, depp was the most likely candidate to get abuser-bashed for his immoral actions. + +due to her alleged accusations, johnny depp’s career was quite miserable. in fact, the production teams that loved working with his massive talent started to reject his role in the movies. and all this was due to the fault of amber and her bunch of lies. imagine not having jack sparrow in the next pirates of the caribbean sequel! + +was momoa and heard compatible in real life as much as they seemed on screen? + +rumor has it that the momoa and heard were not as compatible as they seemed on the screen. with them being actors from two different worlds, it is sure to be quite a clash in the studios. but others state that they were actually good together since they were complete opposites and that opposites attract. even though they seem great together on the red carpet, always having fun, the truth behind this fact is still left unknown! + +would momoa’s word and stance on this scenario change the fate of who plays the role of mera? + +most probably, yes. without jason, there is no aquaman. in fact, the entire success behind aquaman was 90% due to jason momoa’s efforts in making the storyline as lively. without him, reaching this milestone would have been highly impossible. on a serious note, it’s highly possible that rather than risking their biggest asset, warner bros. would not sacrifice their king for the sake of amber! clevver news celebrity news amber heard aquaman 2 johnny depp elon musk amber heard fight video top 10 + +#amberheard #johnnydepp #justicefordepp #amberheardfired #jasonmomoa #aquaman2 #justiceforjohnnydepp #johnnydepp #deppandheard #depp",163.0,3544.0,,,,,,3367.0,3.0,0.0,11.0,10 celebrities who defended johnny depp against amber heard...,,,,,,,,,, +507,https://www.youtube.com/watch?v=aQfT8Pwz4a4,0,0,{'Vara Dark - Dark Titan Enterprises'},1,youtube,video,original video,"there are tons of rumors circulating that wb plans to remove amber heard from aquaman 2 and replace her with emilia clarke. + +► twitter: https://twitter.com/vara_dark + +► patreon: https://www.patreon.com/varadark + +► instagram: https://www.instagram.com/vara_dark/ + +► minds: https://www.minds.com/vara_dark/​ + +► twitch: https://www.twitch.tv/vara_dark + +► discord: https://discord.gg/cj8q97549g + +#aquaman2 +#amberheard +#snydercut",295.0,2677.0,,,,,,2329.0,4.0,0.0,49.0,"warner bros fires amber heard from aquaman 2, emilia clarke to reportedly replace her?",,,,,,,,,, +508,https://www.youtube.com/watch?v=WvuW6yZRwEY,0,0,{'eHacker'},1,youtube,video,original video,amber heard proved wrong with a refrigerator receipt by adam waldman!,1126.0,8433.0,,,,,,7047.0,3.0,0.0,257.0,amber heard proved wrong with a refrigerator receipt by adam waldman!,,,,,,,,,, +509,https://www.youtube.com/watch?v=ri0kM4nr2nI,0,0,{'a Friend or Foe'},1,youtube,video,original video,"today amber heard first statement on social media after confirming she did not donate the 7 million (even lied under oath) ended up being a victim mentality post. she is a joke. imagine lying to the public for the past 4 years then posting about being hated for lying. like girl, get off of social media if you have a problem with people hating you for the horrible things you've done. + +the only person amber cares about is herself. she is still on this witch hunt to prove johnny is behind the hated online which he is not. + +i am not a bot, i'm not even really a johnny depp stan. i see the discrimination going on and i know abuse has no gender. + +this is an opinion video, so always go do your own research and tell me your opinion. +don't forget to sign up! +https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2",47.0,584.0,,,,,,518.0,0.0,0.0,19.0,amber heard still lying... and not apologizing for the 7 million lie // #justiceforjohnny,,,,,,,,,, +510,https://www.youtube.com/watch?v=8oiB_u4RDiM,0,0,{'Viral Vision'},1,youtube,video,original video,"celebrity news +there have been a lot of questions going around about the situation we’ll break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone! do you think she’ll continue to play until she’s forced to admit the truth? or will she deny it? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",6010.0,428524.0,,,,,,414537.0,5401.0,0.0,2576.0,"amber heard full apology video - ""this has gone too far""...!?",,,,,,,,,, +511,https://www.youtube.com/watch?v=6TzvEkInog0,0,0,{'DarthN3ws'},1,youtube,video,original video,"📬📦 feel free to sends me stuffs: + po box 301. dexter, mi. 48130 + +*my channel is now monetized* + +please consider supporting my work- + +💻 https://darthnews.com/ (merch store) +🙏 https://www.patreon.com/darthnews (helps feed my dog & keeps the lights on) +💸 cashapp: $darthnews +🐦 twatter: @darth_news +🎶 dikdok: darth_news +📸 insta: @darthnews / second acct: @darth_news +📧 thedailydarth@gmail.com + +#amberheard #johnnydepp #reeeeee #triggeredmovie #triggered #j4j #aquaman2 #insufferable #barnwitch #ditchthewitch #amberturd #rant #mera #defamation #sociopath #hollywood #domesticviolence #metoo #abuse #lawsuit #cancelculture #update #justiceforjohnny #instagram #twitter #socialmedia #loreal",539.0,5924.0,,,,,,5153.0,10.0,0.0,222.0,"amber heard's newest instagram video (for l'oréal) about being a ""proud activist"" is super cringe 😦",,,,,,,,,, +512,https://www.youtube.com/watch?v=0V1BG04yT9k,0,0,{'InformOverload'},1,youtube,video,original video,"meghan markle and prince harry admit they lied +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +during the oprah interview with meghan markle and prince harry a ton of royal tea was spilled all over the place. from conversations surrounding the potential skin color of their child to royal customs that meghan said she was ignorant too, this interview was certainly one for the books. however now a claim made by meghan and harry has been called into question and even they admit that they lied about it. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#meghanmarkle #princeharry #lied #oprahinterview #oprahwinfrey #meghanandharry #princewilliam #katemiddleton #oprah #admission #royalwedding #fakewedding #royaltea #royalnews #theroyalfamily #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 #celebritygossip #influencergossip #celebritytea #influencertea + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +johnny rogers: https://www.instagram.com/thejohnnyrogers/ + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +daniela suarez: https://www.instagram.com/danielasuarezphoto/ + + +📱instagram: https://www.instagram.com/informoverload +📱facebook: https://www.facebook.com/informoverload/ +📱twitter: https://twitter.com/informoverload +📱reddit: https://www.reddit.com/user/informoverloadreddit +✉️email | contact: informoverload@gmail.com",2323.0,56394.0,,,,,,53102.0,352.0,0.0,617.0,meghan markle and prince harry admit they lied,,,,,,,,,, +513,https://www.youtube.com/watch?v=ZuGC4acpuF4,0,0,{'Seulanga Channel'},1,youtube,video,original video,,0.0,34.0,,,,,,34.0,0.0,0.0,0.0,"aquaman - official extended trailer #2 (2018) | jason momoa, amber heard, willem dafoe",,,,,,,,,, +514,https://www.youtube.com/watch?v=xW9MrBIPEBM,0,0,{'OhMyDiaz 22'},1,youtube,video,original video,"#dceu +#aquaman +#amberheard",6.0,296.0,,,,,,290.0,0.0,0.0,0.0,"amber heard fired from aquaman 2 for being fat, failing physical and petition at 1.8 million",,,,,,,,,, +515,https://www.youtube.com/watch?v=-r-vWAVgXvg,0,0,{'Young Dumb Honey Bun'},1,youtube,video,original video,"if you’d like your art to be in my intro email me young-dumb-art@hotmail.com! +like, comment, subscribe, tell me what else you’d like to see, leave any feedback down below! +intro song; my go away dream by not the king. +talk to me on instagram @x.sara.l follow me on twitter: @youngdumbwhat +merch here: https://young-dumb-honey-bun.teemill.com/ +patreon: https://www.patreon.com/youngdumbhoneybun + +yafeini jewelry: + +bracelet i wear: https://bit.ly/39pxsll +bracelets collection: https://bit.ly/2jbnkqn +yafeini jewerly website: https://bit.ly/2ldssgx +20% off coupon code when order $20+: inf20 +buy one get 2nd 20% off coupon code: bg50 +name necklace: https://bit.ly/331n0k8 +classic name necklace collection: https://bit.ly/35ibpgx +yafeini jewelry website: https://bit.ly/3h6erzm 20% off coupon code when over $20: honey20",3152.0,98164.0,,,,,,94336.0,68.0,0.0,608.0,"patreon drama. amber tells lifebyjen to ""get a grip"" because her fatshaming was 'truth'.",,,,,,,,,, +516,https://www.youtube.com/watch?v=qhQkhg4eUzY,0,0,{'Colonel Kurtz'},1,youtube,video,original video,"johnny depp / amber heard / andrew cuomo / marilyn manson / metoo / the crucible +in this video, i provide some further thoughts on metoo and the johnny depp / amber heard , andrew cuomo , and marilyn manson controversies. this video is a follow-up to my earlier videos on these topics. i also discuss the arthur miller play the crucible as well as the recent cuomo accuser and the boylan medium post. i cover a range of ideas here and don't stay on any topic too long. for more in-depth coverage of these topics, see my other videos. + +my next four upcoming videos will be on skincare , angelina jolie / brad pitt, the philosophy of sex, and evan rachel wood (in collaboration with greta aurora). + +tip jar: https://www.paypal.com/donate?hosted_button_id=z65d3ull278sw +patreon: https://www.patreon.com/colonelkurtz?fan_landing=true +bitcoin wallet: 3mdstdvxdhc1vgzijqcounxk7afxttg9ar + +*paypal membership not required to tip there--just need a credit card.*",628.0,8879.0,,,,,,7875.0,10.0,0.0,366.0,"anatomy of the metoo hit job: andrew cuomo, johnny depp, marilyn manson & the crucible",,,,,,,,,, +517,https://www.youtube.com/watch?v=zP_tT3u_tk4,0,0,{'Multiple Contents'},1,youtube,video,original video,"hey guyzzz we are here for you all, welcome to our channel please like and subscribe our channel. so we can make more intresting and beautiful videos for multiple content family :) + +........................................................................................ + +it looks like all those petitions to remove amber heard from aquaman 2 may have finally paid off, as a new report suggests warner bros. has dropped the actress from james wan’s upcoming sequel. a couple of weeks ago, heard lost the appeal to dismiss johnny depp’s $50 million defamation lawsuit and we learned that the aquaman star could be facing up to 3 years of jail time if found guilty of manipulating evidence against her then-husband. but even beyond the former couple’s seemingly never-ending legal battle, heard has come under a lot of fire after evidence presented to the court as part of the lawsuit revealed that she’s physically and emotionally harassed depp while twisting the narrative in her favor and painting the pirates of the caribbean actor as a domestic abuser. + + +note : copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use. + + +#amberheardsadnews +#aquamanstarfired +#amberheardaquaman",37.0,2062.0,,,,,,2020.0,2.0,0.0,3.0,amber heard has allegedly fired from aquaman 2 | aquaman star fired #amberheard #aquamanstarfired,,,,,,,,,, +518,https://www.youtube.com/watch?v=VjBYuyHvAkQ,0,0,{'Liv'},1,youtube,video,original video,"#justiceforjohnnydepp #johnnydepp + +in his witness statement, johnny depp said amber heard was trying to be a ""carbon copy"" of him to make him fall for her. well, she is diagnosed with borderline/narcissistic personality disorder, and we all know narcs steal other people's personalities (especially the good ones) because they don't have a personality of their own. + +when i saw the way she approaches the people in that video, i couldn't not think of how this has always been something jd does with his fans (tries to approach them when his security guards pull him away) and how she always wanted to be/look like him, so i made this video to show you all how she pretends to be him even in the simplest things, and what a bad actress she really is. +(other parts will be uploaded soon) + +link to jd witness statements: https://www.nickwallis.com/depp-trial-witness-statements + +link to an article explaining why narcissists need to steal other people's personalities: https://missycrystal.medium.com/5-reasons-why-narcissists-copy-your-actions-bcf37a915525",26005.0,856334.0,,,,,,828056.0,469.0,0.0,1804.0,when a nobody acts like a legend. amber heard copying johnny depp & failing miserably (pt 1),,,,,,,,,, +519,https://www.youtube.com/watch?v=1GphbMhDbeo,0,0,{'Viral Vision'},1,youtube,video,original video,"amber heard is officially replaced by emilia clarke in aquaman 2! +though aquaman 2 is set to film this year, the presence of amber heard raises questions and some think a good replacement for her would be...emilia clarke? let’s break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone! a look at the situation going on with amber heard and how emilia clarke might be the perfect replacement for her should things go south in a hurry. do you think the “mother of dragons” would be a great replacement to become the new mera? do you think that her chemistry with jason momoa might propel the on-screen relationship to new heights? or do you feel that there is someone better to replace heard should it come to it? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",6651.0,178546.0,,,,,,169815.0,718.0,0.0,1362.0,amber heard is officially replaced by emilia clarke in aquaman 2!,,,,,,,,,, +520,https://www.youtube.com/watch?v=aaS4Lpx-vRg,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard and the aclu exposed in johnny depp bombshell! + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #johnnydepp #amberheard",3018.0,41964.0,,,,,,38550.0,24.0,0.0,372.0,amber heard and the aclu exposed in johnny depp bombshell!,,,,,,,,,, +521,https://www.youtube.com/watch?v=kWmAjL0u_eg,0,0,{'Mannix'},1,youtube,video,original video,"amber heard and johnny depp case just got a little more interesting, hilarious fail on amber heard's part as she lies under oath! 2020 is the year of johnny depp! watch one my best videos yet! https://youtu.be/b6xbwxa3zlc + +new video on second channel: https://bit.ly/mannixplus + +follow me on twitter @sirmannix",2029.0,16061.0,,,,,,13752.0,10.0,0.0,270.0,amber heard caught lying and stealing from charity under oath! great news for johnny depp!,,,,,,,,,, +522,https://www.youtube.com/watch?v=YdfZY8AARoU,0,0,{'Celeb Junkie'},1,youtube,video,original video,"johnny depp: celebrities vouched for johnny depp against amber heard + +everywhere you go, from grocery store checkout lanes to your home with the news on, it won't take long to come across an article or news about the never-ending legal battles between johnny depp and amber heard. and over the year, people became confused on who was telling the truth between them about their case. in today's video, join us as we show you these 10 celebrities who defended johnny depp against amber heard. + +in the previous years, people turned against johnny depp as it was rumored that he was the abusive one in their relationship. but in reality, it's the other way around. in fact, there are a lot of shocking receipts that prove johnny depp is innocent and amber heard is lying. be sure to watch the whole video and see which celebrities defended the actor! in addition, do us a favor and like the video and subscribe and turn on the notification bell. we’ll see you in the next video! + +#amberheard +#johnnydepp + +related videos: + +donald trump jr.'s tweet about chris cuomo is turning heads +https://www.youtube.com/watch?v=giq64zmc0jk + +strange things everyone just ignores about meghan markle +https://www.youtube.com/watch?v=-0-gjedrkbo + +the real ellen - the bitter truth behind the daytime icon +https://www.youtube.com/watch?v=_dvag5i55yc + +i do not take any ownership of the music displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes only.",8.0,244.0,,,,,,233.0,0.0,0.0,3.0,johnny depp: celebrities vouched for johnny depp against amber heard,,,,,,,,,, +523,https://www.youtube.com/watch?v=hlZvqOXWJ4M,0,0,{'Shiva Bemal Arts'},1,youtube,video,original video,"drawing mera ( amber heard ) - aquaman - dc | shiva bemal arts + +i used doms 24 shades colour pencis. + +playlist:- + +short drawing videos: + +https://youtube.com/playlist?list=pl6tfuv2oyl3donknhik8ezviktncb8ifq + +pencil drawing scenery: + https://www.youtube.com/playlist?list=pl6tfuv2oyl3casyifmnxyswplimwfm_bz + +pencil drawing portrait: + https://www.youtube.com/playlist?list=pl6tfuv2oyl3dssdo6jhtg2snaavlgu6qt + + +if you like +plz do like share comment and +subscribe my channel and stay with me +thank you +have a great day...",15.0,104.0,,,,,,85.0,2.0,0.0,2.0,drawing mera ( amber heard ) - aquaman - dc - timelapse | shiva bemal arts,,,,,,,,,, +524,https://www.youtube.com/watch?v=nbgfdu19nlw,0,0,{'The HollyVibe'},1,youtube,video,original video,"amber heard’s lawyer exposed her for ruining johnny depp's life +amber heard's lawyer finally exposed her for ruining johnny depp's career amber heard she's been lying about johnny depp that he treated her so bad and abuse her but the truth is that she is the one that she is ruining johnny",483.0,12855.0,,,,,,12225.0,12.0,0.0,135.0,amber heard’s lawyer exposed her for ruining johnny depp's life and career,,,,,,,,,, +525,https://www.youtube.com/watch?v=J_w1_7gBNns,0,0,{'Film Streak'},1,youtube,video,original video,"johnny depp speaks on amber heard targeting his son (emotional) +johnny depp has simply had enough now! earlier johnny said that he has not been hurt like this before as allegations struck a major blow to his reputation and mental health, but as soon as amber heard started targeting his kids, then johnny had to put a stop for her! and so do we, emotionally blackmail his kids is just wrong! + +first of all, then johnny has since the start of the controversy said that amber heard has made several false and unproven reports about his extravagant spending, his legal disputes with his former managers and a rolling stone profile which portrayed him as a debauched, self-indulgent and narcissistic. she has also said that johnny would be ready to fight till his demise if anyone targets his children. anyways, amber seems to have forgotten that, since she herself has just started targeting johnny's kids. +johnny himself doesn’t even hide the fact. once, he even said that he would bite off the nose of anyone who nears his kids. + +here on film streak we are all about the latest spill in hollywood! you can rest assure that we will bring you all the latest celebrity drama and gossip especially concerning you favorite actors! we´ll also make sure to keep you updated on the newest movie updates and releases – so if you are interested in anything that happens in hollywood, you should make sure to stay tuned! + +and there you have it guys! we hope you enjoyed the video! if you did please consider leaving a like and telling us what you though in the comments! + +here are some links to some of our other videos that you might find interesting as well: +""forgive me"" justin bieber apologies to haily bieber (ig live video): https://www.youtube.com/watch?v=u-m_q7fs91i +emilia clarke reaction before replacing amber heard in aquaman 2! https://www.youtube.com/watch?v=pyxp9wxhuww +johnny depp officially rehired | back in a new pirates of the caribbean 6 movie? https://www.youtube.com/watch?v=utozmdfngvk +elon musk speaks against amber heard & defends johnny depp! +https://www.youtube.com/watch?v=woo2bftrrl4 + +so, if you are interested in anything related to hollywood, make sure to smash that subscribe button to see more of our content in the future! 🎬 https://bit.ly/3kzplqd + +#johnnydepp #justiceforjohnny #amberheard #filmstreak",491.0,17847.0,,,,,,17163.0,29.0,0.0,164.0,johnny depp speaks on amber heard targeting his son (emotional),,,,,,,,,, +526,https://www.youtube.com/watch?v=vPwD_VgP_mg,0,0,{'Viral Network'},1,youtube,video,original video,"top celebrities who spoke up against amber heard's lies + +subscribe to viral network 👉 https://youtube.com/user/zrul90 + +in hollywood, scandals, break-ups, divorces, and gossip are nothing new. one such news that has taken away the thunder of the other news and buzz is the divorce and the legal battle of johnny depp and amber heard. + +the legal battle between amber heard and johnny depp has been going on for years. it started in 2016, just a year after their marriage and since then, it hasn’t had closure. but do you know, what is one thing that seems repetitive throughout this? it is the passing of blames and tampering evidence. + +recently, a subpoena emerged and it suggested that it was addressed to amber heard’s sister whitney henriquez. the fans conjectured that something which whitney must have said would have been a lie and that amber had urged her to do so. as a result, she was asked to appear before the court. isn’t this tampering evidence? the case is unending because of these games that have been played by amber heard. + +throughout the years of the legal battle between amber heard and johnny depp, there have been so many celebrities that pointed out the elephant in the room - the idea that amber heard could be the and liar all these years. all while, the audience kept blaming johnny depp. + +let us go about the celebrities who spoke up against amber and what their opinions are. + +the first celebrity that we are going to talk about is johnny depp’s ex-partner - vanessa paradis. vanessa paradis defends johnny in court and raises serious questions doubting the allegations made against johnny depp by amber heard. according to vanessa, johnny is a kind, attentive, generous, and partner and a father.",21.0,598.0,,,,,,570.0,2.0,0.0,5.0,top celebrities who spoke up against amber heard's lies,,,,,,,,,, +527,https://www.youtube.com/watch?v=l5dfRxlXrv0,0,0,{'ComicBookCast2'},1,youtube,video,original video,"the cbc is an online news outlet & community for nerds of all types. our mission is to deliver content that helps you embrace marvel, dc comics, star wars & other genre films that we all love in a unique way and having a few good laughs in-between. we are dedicated to giving you honest opinions, analytical discussions, and various entertainment. + +become a member ▶▶ https://bit.ly/2zrtl3v +visit out our site at ▶▶ https://www.cbcyt.com + +subscribe now | https://www.youtube.com/comicbookcast2?sub_confirmation=1 + +connect with cbc: +facebook | https://www.facebook.com/thecbcyt +soundcloud | https://soundcloud.com/comicbookcast + +music: +royalty free music by http://audiomicro.com/royalty-free-music +sound effects by http://audiomicro.com/sound-effects + + +important: all images and/or video used is property of their rightful owners. if you would like direct the credit on something specific please contact us through our email and we will respond as soon as we can. + +many of our thumbnails, video images & art are from creators online + +artwork for thumbnails credit [all on instragram] +dgalexkovalenko @ https://www.instagram.com/dgalexkovalenko +cvialet_art @ https://www.instagram.com/cvialet_art +rafagrassetti @ https://www.instagram.com/rafagrassetti/ +britedit @ https://www.instagram.com/britedit/ +spdrmnkyxxiii @ https://www.instagram.com/spdrmnkyxxiii/ +adam_sean_arts @ https://www.instagram.com/adam_sean_arts/ +ultraraw26 @ https://www.instagram.com/ultraraw26/ +erathrim20 @ https://www.instagram.com/erathrim20/ +datrintiart @ https://www.instagram.com/datrintiart/ +lukaswerneck @ https://www.instagram.com/lukaswerneck/ +bosslogic @ https://www.instagram.com/bosslogic/ +psychboz @ https://www.instagram.com/psychboz/ +bobby_art @ https://www.instagram.com/bobby_art/ +marvefx @ https://www.instagram.com/marvefx/ +pabloruizzx @ https://www.instagram.com/pabloruizzx/ +apexform @ https://www.instagram.com/apexform +artoftimetravel @ https://www.instagram.com/artoftimetravel/ +saarukan.psd @ https://www.instagram.com/saarukan.psd +awedope.arts @ https://www.instagram.com/awedope.arts/ +venomhology @ https://www.instagram.com/venomhology/ +jackson_caspersz @ https://www.instagram.com/jackson_caspersz +mizuriau @ https://www.instagram.com/mizuriau/ +lodgiko @ https://www.instagram.com/lodgiko/ +valentinromeroart @ https://www.instagram.com/valentinromeroart +marischabecker @ https://www.instagram.com/marischabecker + +if we use you for thumbnails or in videos and did not list credit contact us and we will fix it as soon as possible, thank you (email please @ comicbookcast2@gmail.com) for credit, thank you!",1310.0,34917.0,,,,,,33169.0,60.0,0.0,378.0,amber heard fired from aquaman 2 emilia clarke to replace her,,,,,,,,,, +528,https://www.youtube.com/watch?v=iCgi0Acn87M,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"more information has come out in the amber heard v johnny depp case via the antislapp laws, let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +☆other platforms☆ + + +•backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + +☆support the channel☆ + +•become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +•if you want to support my channel, please check out my patreon and subscribe star below: + +•patreon: +https://www.patreon.com/user?u=21542407",805.0,13331.0,,,,,,12195.0,8.0,0.0,323.0,"amber heard claims victim in new documents and plays the ""but i'm a girl"" card",,,,,,,,,, +529,https://www.youtube.com/watch?v=Kq95QX0RuDk,0,0,{'eHacker'},1,youtube,video,original video,amber heard defends evan racheal wood! amber involves herself!,501.0,5845.0,,,,,,4920.0,9.0,0.0,415.0,amber heard defends evan racheal wood! amber involves herself!,,,,,,,,,, +530,https://www.youtube.com/watch?v=JLo2-d2j_5o,0,0,"{""Rob's Rules""}",1,youtube,video,original video,this panel will be full. this will be insane. will my wifi be able to handle this ? how do they feel about the upcoming trial ? we will find out.,264.0,4027.0,,,,,,3690.0,12.0,0.0,61.0,🔴 livestream johnny depp vs amber heard with nine other people !,,,,,,,,,, +531,https://www.youtube.com/watch?v=7JJhnke3M9I,0,0,{'YellowFlash 2'},1,youtube,video,original video,"some interesting developments in the depp appeal just dropped, and it’s not good the aquaman 2 star! can queen mera swim her way out of this one? + +►check out my store: https://teespring.com/stores/yellowflash-merch + +►check out my patreon: https://www.patreon.com/yellowflashcomics + +►check out my twitch: https://www.twitch.tv/yellowflashtwo + +►follow me on twitter: @yellowflashguy + +►follow me on parler: https://parler.com/profile/yellowflash +#amberheard #johnnydepp #justiceforjohnny",9980.0,212952.0,,,,,,201526.0,92.0,0.0,1354.0,amber heard exposed big time! johnny depp appeal scores huge victory!,,,,,,,,,, +532,https://www.youtube.com/watch?v=VJWhl3e9SIk,0,0,{'Мир Новостей'},1,youtube,video,original video,"the media reported that the actress, whose name is associated with a loud scandal, was fired from the movie ""aquaman 2"". amber in whose contract it is allegedly noted that she must be in a certain physical form before filming did not pass the medical examination. according to journalists, the role of heard in the film ""aquaman 2"" can be taken by the star of ""game of thrones"" emilia clarke.",3.0,78.0,,,,,,75.0,0.0,0.0,0.0,amber heard lost her role in aquaman 2,,,,,,,,,, +533,https://www.youtube.com/watch?v=B7gaO2v8uHc,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"who do you think will be in aquaman 2? amber heard or emilia clarke? + +let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +☆other platforms☆ + +•backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + +☆support the channel☆ + +•become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +•if you want to support my channel, please check out my patreon and subscribe star below: + +•patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp #thesun #aquaman #aquaman2 #mera",261.0,2094.0,,,,,,1701.0,5.0,0.0,127.0,amber heard or emilia clarke in aquaman 2?? | addressing the obvious,,,,,,,,,, +534,https://www.youtube.com/watch?v=AfiPDxDRjGo,0,0,{'Top Moment'},1,youtube,video,original video,"👉 please like , share, comment and subscribe. for more videos. + +explosion scene (the stand) +last scene (""i brought you the fire"") +ending scene from series: ""the stand"" (2021) + +• original title: ""the stand"" +• episode title (s01e08) ""episode 8"" +• adventure, drama, fantasy +• creators: josh boone, benjamin cavell +• stars: whoopi goldberg, alexander skarsgård, james marsden, amber heard +• imdb: 5,5/10 + +the stand episode 8 release date +‘the stand’ episode 8 is scheduled to premiere on february 4, 2021, on cbs all access at 3 am et. the miniseries is slated to have a total of nine episodes. + +spoilers ‘the stand’ is also titled ‘the stand.’ it is the penultimate episode of the limited series. if the show follows the stephen king book closely, then the upcoming episode will see glen executed by lloyd after he denies bending his knee to randall flagg. the episode may also see a dying nadine prophetically telling flagg that four men from boulder would be his end. in the book, a livid flagg tosses nadine from the penthouse balcony, thus killing her instantly. the next episode might also see the trashcan man return with the nuclear weapon that flagg wanted. + +titled “the stand,” the stand season 1 episode 8 is soon going to be released. the post-apocalyptic fiction has been getting mixed reviews since its premiere. this show is based on a book penned down by stephen king. it went by the same name and was published back in 1978. the makers took very long to realize that the book is worth having a tv adaptation. + +the stand s01e08: in a world mostly wiped out by the plague and embroiled in an elemental struggle between good and evil, the fate of mankind rests on the frail shoulders of the 108-year-old mother abagail and a handful of survivors. their worst nightmares are embodied in a man with a lethal smile and unspeakable powers: randall flagg, the dark man. + +the stand is a post-apocalyptic dark fantasy novel written by american author stephen king and first published in 1978 by doubleday. the plot centers on a pandemic of a weaponized strain of influenza that kills almost the entire world population. the few survivors, united in groups, establish a new social system and engage in confrontation with each other. in writing the book, king sought to create an epic in the spirit of the lord of the rings that was set in contemporary america. the book was difficult for king to write because of the large number of characters and storylines. + +in 1990, the stand was reprinted as a complete and uncut edition. king restored some fragments of texts that were initially reduced, revised the order of the chapters, shifted the novel's setting from 1980 to 10 years forward, and accordingly corrected a number of cultural references. the complete and uncut edition of the stand is considered to be king's longest stand-alone work with its 1,152 pages, surpassing king's 1,138-page novel it. the book has sold 4.5 million copies. + +#thestand #thestand1x8 #thestands1e8 #thestandcast #thestandcbsallaccess #thestandpremiere #thestandepisode8 #thestandtrailer #thestandeps.8 #thestandengsub #thestandseason1 #thestandseries1 #thestandepisode8 #thestandseason1episode8 #thestandfullstreaming #thestanddownloadhd #thestandallsubtitle #thestandfullshow #watchthestandtemporada1capítulo8 #watchthestandsaison1épisode8 #watchthestandseason1episode8fullepisodes #watchthestandseason1episode8fullepisodes #watchthestandseason1episode8fullseries #watchthestandseason1episode8watchonline #watchthestandseason1episode8online",241.0,29479.0,,,,,,28987.0,29.0,0.0,222.0,"the stand - explosion in the last scene ""i brought you the fire"" (s01e08)",,,,,,,,,, +535,https://www.youtube.com/watch?v=pd-iJRfKPuI,0,0,{'DELCARAJO TV'},1,youtube,video,original video,"johnny depp a través de un video logra demostrar que gran parte de lo dicho por amber heard es una mentira gigante. + +#johnnydepp #amberheard + +► tus 10 segundos ➥ https://tus10segundos.com/products/delcarajotv +► se parte del team delcarajo: +➥ https://youtube.com/channel/ucuwebhxve6c69jtbpiy-y8q/join +► tienda delcarajo ➥ http://delcarajo.net + +► sigueme en: +twitter ➥ http://twitter.com/juanitosay +instagram ➥ http://instagram.com/juanitosayoficial + +► contacto: say@delcarajo.net + + +* hey, friki delcarajo... ¿que haces tan abajo? el boton de like esta mas arriba ( ͡° ͜ʖ ͡°)",18245.0,329247.0,,,,,,309397.0,241.0,0.0,1364.0,johnny depp por fin demuestra que amber heard mintió: el video que salvara su carrera 🔥,,,,,,,,,, +536,https://www.youtube.com/watch?v=poSU5v1y5m4,0,0,{'Binge Watch'},1,youtube,video,original video,"10 times johnny depp warned us about amber heard + +subscribe to binge watch - http://tiny.cc/bingewatch + +watch next 👇 + +amber heard faces prison after this… + +https://youtu.be/dje8bl_blde + +related videos: + +10 times johnny depp tried to warn us about amber heard + +https://youtu.be/jqtd2pdwoz4 + +10 more times johnny depp tried to warn us about ah!!! + +https://youtu.be/j1uxydayri4 + +top 10 celebrities who tried to warn us about amber heard + +https://youtu.be/ofo6smjgjhc + +few celebrity breakups are as controversial as the ever-unfolding drama between johnny +depp and amber heard. most people i know are either “team johnny” or “team amber,” +and they’ve spent a lot of time discussing who the real abuser in the troubled relationship +must have been. however, johnny depp was trying to warn everyone about amber heard +and who she is for real. +over the past several months, we’ve heard from depp’s friends, fans, and exes who all claim +he could have never mistreated amber because of his sweet and gentle nature. and there +have been many doubts cast upon heard, leading people to think she’s the core abuser, a +narcissistic gold digger, and ultimately, a liar. adding to this we have johnny depp’s hints +and attempts to tell the truth about his ex wife. +amber heard is not an obvious abuser +we like to imagine that the real abuser is always some sort of obvious monster, and that +we’re not going to be manipulated by any wolves in sheep’s clothing. do you remember that +‘message’ to johnny depp’s fans when he was ‘jokingly’ saying: “i’m scared to death, i’m +frightened and i don’t know what to do, i am confused and i want to go home”. this phrase +made everyone laugh but what if it was johnny’s cry for help? he couldn’t tell anyone what +was going on between him and amber heard (before the legal fight) as he is a good person +and he didn’t want to show people their dirty laundry. +amber heard pretended to be a victim +the myth of the obvious abuser was very convenient for amber heard and of course +eventually it did more harm than good, even for amber. people easily wind up defending +their guilty friends and blaming the victims. we might mistake self-defense and coping +mechanisms by victims as ""proof"" of their crimes. victims of domestic violence may even +use violence themselves against their abusers, and it can be very difficult for outsiders to +establish which person is the primary abuser and which person is the primary victim. johnny +depp was trying to warn everyone she was a liar but he couldn’t prove he wasn’t guilty. +amber heard had a strong tactic - to lie in a court. but eventually body language experts +analysed the video back in 2016 court deposition. first everyone thought amber heard +behaved really weird because she was stressed and scared. but according to body +language experts, she just behaved like a typical liar. +severed finger +being a real man johnny depp didn’t tell anyone what happened with his finger for real and +was even trying to hide the facts and lied to his friends about the incident! obviously, he +wanted to protect amber heard. during the venice film festival 2015 conference dakota +johnson obviously asked johnny depp about his finger, johnny answered vaguely, he +avoided the question with the joke but it seems dakota didn’t believe him. she knew: +something was wrong. just notice, dakota gave him a look that says that she knows more +than he lets on. + +amber heard made him lie for her +you may remember the story about amber heard’s dogs and that she had some problems +with them. in july 2015 amber heard brought yorkshire terriers pistol and boo to the +country illegally. and to avoid problems amber heard asked her former employee kevin +murphy to lie under oath after she was charged with bringing her two dogs to australia +illegally. murphy claimed heard pressured him to commit perjury about the travelling terriers +or risk losing his job. “she wanted me to say essentially that it was my fault in one way or +another that the paperwork wasn’t completed, so that i could take the blame for her,” murphy +said. and of course, she asked johnny depp to help with this problem. isn’t it a warning sign +of ab**se? but probably johnny depp had to go along with everything amber wanted +because he truly loved her. but she literally forced johnny to help her with the problem and +he got in trouble as a result. + + +binge watch - binge watch is the best source of the latest celebrity news. want to see what's trending today in the hollywood life or hear about the newest celeb gossip? you're in the right place. + +consider subscribing to not miss out on what's trending today in the life of the world's biggest stars. + +#celebrity #news #bingewatch",1590.0,68374.0,,,,,,66348.0,94.0,0.0,342.0,10 times johnny depp warned us about amber heard,,,,,,,,,, +537,https://www.youtube.com/watch?v=qg9H0_ulnCE,0,0,{'ET Canada'},1,youtube,video,original video,"after amber heard responded to johnny depp fans on twitter following his latest loss in court, roz weston, graeme o'neil and guest co-host elamin abdelmahmoud react during et canada live. + +subscribe to our channel: + +https://www.youtube.com/user/etcanadaofficial + +follow us here: + +http://www.etcanada.com + +facebook: https://www.facebook.com/etcanada + +twitter: http://www.twitter.com/etcanada + +instagram: http://www.instagram.com/etcanada + +#amberheard #johnnydepp",624.0,84739.0,,,,,,82281.0,822.0,0.0,1012.0,amber heard replies to johnny depp fans on twitter,,,,,,,,,, +538,https://www.youtube.com/watch?v=p_g4c44AVgU,0,0,{'Asshats Love Johnny Depp!! Johnny Depp Es Racista!!'},1,youtube,video,original video,,0.0,,,,,,,8.0,0.0,0.0,,you can learn to judge for yourself!! ( amber heard playlist!!),,,,,,,,,, +539,https://www.youtube.com/watch?v=jcf3UwelNAc,0,0,{'Viral Vision'},1,youtube,video,original video,"amber heard says nobody will hire her for movie roles because of petitions! +the future of amber heard in hollywood is one that isn’t exactly set in stone right now...but that stone is getting prepared for some writing. because between the major court cases she’s fighting right now with her ex-husband johnny depp that is revealing some not-so-nice things about her, as well as the desire from fans to have her removed from roles like mera in aquaman 2, she might seriously be in trouble. which is why some feel she might be already looking to make a jump to another major movie franchise if possible. we’ll break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone! a look at amber heard and how she might go and jump ship in the aquatic sense and land on a spaceship in the literal sense. do you think that amber heard would make a good addition to the star wars franchise should this occur? or, do you think that rumors like these are only popping up because of the uncertainty of what might happen with heard? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",6910.0,201537.0,,,,,,192102.0,295.0,0.0,2230.0,amber heard says nobody will hire her for movie roles because of petitions!,,,,,,,,,, +540,https://www.youtube.com/watch?v=Je5dYfRRnsA,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard sues disney; demands santions because depp! her career is ruined! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #disney",6249.0,146174.0,,,,,,138508.0,54.0,0.0,1363.0,amber heard sues disney; demands santions because depp! her career is ruined!,,,,,,,,,, +541,https://www.youtube.com/watch?v=oMIoRdN-enc,0,0,{'TheQuartering'},1,youtube,video,original video,"it looks like amber was full of bologna in terms of donating her 7 million divorce fund to sick kids..uh oh + + + +support the channel directly! (super helpful) +https://www.youtube.com/channel/ucfwe_odi1ytbdjkzusi1nag/join + +follow me +twitch-https://www.twitch.tv/thequartering +parler-https://parler.com/profile/thequartering/ +twitter-https://twitter.com/thequartering +discord-https://discord.gg/pqvtwa2vvm +subreddit-http://reddit.com/r/thequartering +politics channel -https://www.youtube.com/channel/uc577sigte1cjpdosladwndw",7187.0,73063.0,,,,,,64835.0,92.0,0.0,949.0,amber heard busted for lying about donating to sick kids?,,,,,,,,,, +542,https://www.youtube.com/watch?v=cHSwWu5nPag,0,0,{'Nature Spot Entertainment'},1,youtube,video,original video,"emilia clarke to replace amber heard as mera in aquaman 2? +visit https://mypetstrendy.com for fun cute trendy pet products!! +low prices! best quality! free shipping! better than amazon thats facts",1.0,21.0,,,,,,20.0,0.0,0.0,0.0,emilia clarke to replace amber heard as mera in aquaman 2,,,,,,,,,, +543,https://www.youtube.com/watch?v=k2srvP9owb0,0,0,{'Viral Flash'},1,youtube,video,original video,"amber heard calls out media for ignoring marilyn manson abuse allegations! +______________________________________________ +for more videos subscribe : https://bit.ly/2zopgqj +______________________________________________ +amber heard has condemned the media for “ignoring” allegations against the rock star marilyn manson, who has been accused by a number of women of abuse. + +in today's video we are going to discuss about amber heard calls out media for ‘ignoring’ marilyn manson abuse allegations. + +on monday (1 february), actor evan rachel wood accused manson of grooming and abusing her “for years” while they were in a relationship. several other women also came forward with allegations against manson.at least 10 women, including actor evan rachel wood, have spoken out against manson since monday, making allegations that include sexual assault, psychological abuse, physical violence and anti-semitism. manson has denied the accusations, calling them “horrible distortions of reality.” + +on thursday (4 february), heard, who has been embroiled in a high-profile divorce battle with johnny depp, tweeted her support of wood, while suggesting that the media had long turned a blind eye to manson’s behaviour.sharing an article from the new yorker suggesting there is a “blind spot” when it comes to allegations made against public figures, heard wrote: “...and yet, no one sees the trend here? everyone wants to tag a bathroom wall, no one wants to understand the writing. evan & i aren’t the 1st to raise our hands. are you done ignoring it?” + +after a twitter user replied to heard’s message with the single word “fraud”, heard responded: “well i know a couple of over-indulged white male celebrities (who happen to be world famous) and single, who are def in the market for some low rate ass-missing [sic], shall i intro you??” + +earlier this week (2 february), heard’s ex-husband depp was permitted an oral hearing in his attempts to appeal a ruling by the british high court over a newspaper column that described him as a “wife beater”. the hearing will be held in march.heard has long accused the pirates of the caribbean star of domestic violence, something he has denied. after suing the sun publisher news group newspapers and its executive editor dan wootton for referring to him as a “wife beater” in a column, depp lost the case in december. a british judge declared that the claim was “substantially true."" + +in court filings, heard alleged depp, one of manson’s close friends, was verbally and physically abusive to her. in 2016, people magazine published photos that showed heard with a “bruised eye and cut lip” stemming from an alleged domestic violence incident involving depp in december 2015. heard said she “truly feared for her life” during that incident. in november, a british judge ruled against depp in his libel lawsuit against a british newspaper that called him a “wife beater.” heard testified in the case, alleging depp repeatedly assaulted her, including head-butting her, hitting her and tearing out clumps of her hair. + +a petition to remove heard from the aquaman franchise, spearheaded by depp’s fans, has so far received millions of signatures.heard condemned the campaign, while arguing that it will have no effect on her status within the superhero franchise. “paid rumours and paid campaigns on social media don’t dictate [casting decisions] because they have no basis in reality,” heard said in november. + +so that's all for today's video. what's your opinion on marilyn manson abuse allegations? sound off know your thoughts in the comments section below.if you have not signed in to my channel yet please do this.see you within the next video. + +______________________________________________ +about my channel : +welcome to the viral flash! in this channel we upload videos related to celebrity gossip, entertainment news, top 10 list videos, updates on royal family etc. as far as possible, we upload 4 videos each week. thanks for watching! +__________________________________________________ +for more videos subscribe : https://bit.ly/2zopgqj",13.0,817.0,,,,,,771.0,4.0,0.0,29.0,amber heard calls out media for ignoring marilyn manson abuse allegations!,,,,,,,,,, +544,https://www.youtube.com/watch?v=LWaThEvgDK4,0,0,{'Council of Geeks'},1,youtube,video,original video,"so after months of pressure, there's rumors that amber heard might be off of her role in aquaman 2. now, at the time i shot this, nothing was confirmed. but i've still got some thoughts on how this has been similar to and also different from other recent outcries about people like joss whedon, gina carano, and heard's own ex-husband johnny depp. + +✔ support ✔ +patreon: https://www.patreon.com/councilofgeeks +tip jar: https://paypal.me/councilofgeeks + +✔ other channels ✔ +break room of geeks https://www.youtube.com/channel/ucna5ft771bq-grz2bu3ntrq +vera wylde: https://www.youtube.com/user/verawylde + +✔ shop ✔ +merch: https://www.teepublic.com/user/councilofgeeks +book that i wrote: http://a.co/d/atfibba + +✔ social media ✔ +twitter: http://www.twitter.com/councilofgeeks +facebook: https://www.facebook.com/councilofgeeks/ +tiktok: https://www.tiktok.com/@verawylde?lang=en +instagram: https://www.instagram.com/council.of.geeks/?hl=en + +✔ other projects ✔ +podcast with my partner: http://fireandwaterpodcast.com/show/toughlikeagirl/ + +✔ wishlists ✔ +https://www.amazon.com/hz/wishlist/ls/145aiulgrqjld?ref_=wl_share +https://www.etsy.com/people/dramafreak42?ref=hdr_user_menu-profile + +✔ contact ✔ +e-mail: councilofgeeks@gmail.com +mail: +council of geeks +po box 4429 +st. johnsbury, vt 05819",1362.0,23202.0,,,,,,21262.0,92.0,0.0,486.0,what's going on with amber heard and aquaman 2?,,,,,,,,,, +545,https://www.youtube.com/watch?v=DSqa4t5oi3g,0,0,{'The Amber Heard Playlist!!'},1,youtube,video,original video,,,,,,,,,347.0,,0.0,,johnny depp is a crackhead!! (the amber heard playlist!!),,,,,,,,,, +546,https://www.youtube.com/watch?v=ZN1QF7Ohqm8,0,0,{'Celebrity Insider'},1,youtube,video,original video,"there has been a lot going on in the divorce of amber heard and johnny depp. it has come to light that amber is doing everything in her power, to restore and save her own name. in this video we will be going over how exactly, amber heard is trying to manipulate the world in order to save her name. +what do you think of all this? do you think that she is guilty or not? +we'd love to hear your opinion, leave a comment below. + +subscribe to our instagram to stay up to date on the run: +instagram: https://www.instagram.com/celebrity23insider/ + +subscribe to celebrity insider on youtube to get the newst stories about the famous and for the funniest, most exciting and bizarre facts about their past.",539.0,20979.0,,,,,,20219.0,21.0,0.0,200.0,shocking: how amber heard is trying to manipulate the world in order to save her name!,,,,,,,,,, +547,https://www.youtube.com/watch?v=nekn26eMx38,0,0,{'CelebSee'},1,youtube,video,original video,"if you like the video then subscribe us for more :) + +#amberheard #verticle #whatsappstatus #mera #aquaman #dcu",2.0,46.0,,,,,,42.0,0.0,0.0,2.0,amber heard mera verticle video #shorts,,,,,,,,,, +548,https://www.youtube.com/watch?v=_jndVYZiIyA,0,0,{'Morena A.'},1,youtube,video,original video,"notizie di cui abbiamo parlato: + +— https://www.drcommodore.it/2021/02/03/scimmia-videogioco-chip-neuralink/?tg +— https://www.drcommodore.it/2021/02/11/gina-carano-licenziata/?tg +— https://www.drcommodore.it/2021/02/11/amber-heard-disney-star-wars/?tg +— https://www.ilgiornale.it/news/mondo/ragazza-muore-essere-stata-aggredita-nel-sonno-suo-cane-1922691.html +— https://www.ilmessaggero.it/video/animali/mamma_gallina_covando_gattini_li_difende_fossero_suoi_pulcini-5757902.html + +grazie per aver guardato questo video 🌼 +iscriviti se vuoi perderti anche gli altri! +se ti va puoi supportare questo canale con un simbolico caffè tramite questo link: https://ko-fi.com/morena 🌼 + +se volete contattarmi: +✨ mail: larompiscatole81@gmail.com +✨ ig: https://www.instagram.com/morenangara...​ +✨ goodreads: https://www.goodreads.com/user/show/7​​​...",8.0,177.0,,,,,,161.0,1.0,0.0,7.0,"bed news - amber heard, gina carano e cani assassini",,,,,,,,,, +549,https://www.youtube.com/watch?v=LwQQdnxihYg,0,0,{'Truest Tech'},1,youtube,video,original video,"how amber heard’s lies led to johnny depp losing his career +join us in today’s video as we share how amber heard’s lies led to johnny depp losing his career! amber heard is the now 34 year old hollywood actress who played in the rum diary, the ward, and how could any of us forget her smash hit i do..until i don’t, and as you all know, the now 57 year old johnny depp is a pirate. amber heard has been in a huge tabloid recently by accusing johnny depp of doing something that he never did! at court, the ex-wife was called a “compulsive” liar by the pirates of the carribean star. heards statement was considered a huge lie during court which led her into some big trouble. heard said she preferred to move on with her life after he divoice from depp; however, she’s in quite the dilemma right now. + +amber heard may seem like she’s living the best life but this is no the case. there is a lot you need to know regarding the whole lawsuit between amber heard and johnny depp. if you’re wondering how amber heard has affected johnny depp’s career, you do not wnat to miss this video! in addition, do us a favor and like the video and subscribe and turn on the notification bell. we’ll see you in the next video! in addition, do us a favor and like the video and subscribe and turn on the notification bell. we’ll see you in the next video! + +subscribe if you haven’t already!: +https://www.youtube.com/channel/ucxn6pnvpx8t-7xh5k22lx0g?sub_confirmation=1 + +in this video, we breakdown how amber heard’s lies led to johnny depp losing his career. be sure to subscribe to in the tens. thanks for watching this video: how amber heard’s lies led to johnny depp losing his career + +#amberheard #johnnydepp #lies",3.0,86.0,,,,,,82.0,0.0,0.0,1.0,how amber heard’s lies led to johnny depp losing his career,,,,,,,,,, +550,https://www.youtube.com/watch?v=9jZSrxs3mrs,0,0,{'Bluff Central'},1,youtube,video,original video,"elon musk speaks against amber heard & defends johnny depp + +------------------------------------------------------------------------------------------------------------------------ + +johnny depp and amber heard saga +👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇 +🔥 https://youtu.be/watch?v=xovi9l5el3q&list=pl0c_x0hcmuzfpxfnlmdcijb_wa45kt7ui + +top 10 celebrity videos +👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇 +🔥https://youtu.be/watch?v=6wxusexn4go&list=pl0c_x0hcmuzdjyose9quwlux3fwzdnfj5 + +popular uploads +👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇 +🔥https://youtu.be/watch?v=h9tv-cw5a8u&list=pl0c_x0hcmuzd6koq8fzw4znlowvbluf75 + +don't forget to follow us on instagram 👉 https://bit.ly/3vfxi3d + +------------------------------------------------------------------------------------------------------------------------ + +the case between amber heard and johnny depp is one that people all over the world are becoming familiar with. amber heard is presenting herself to be in a bad situation that might be pretty hard to come back from. someone also involved in this case is the tesla billionaire, elon musk. allow me to explain why elon musk is now a person of interest in this whole drama. + +according to the times-news source, johnny depp has appeared to have dragged elon musk into the amber heard saga. just a couple of days ago it was stated that the tesla billionaire is being brought back into depp’s 50 million dollar libel action against his ex-wife, amber. what some of you might not know is why. well, depp who had accused elon of having an affair with amber during their short-lasting marriage is bringing him back into the case again. however, johnny depp is bringing elon into the mix for a different reason. depp wants elon to be interviewed and in this interview, depp would like him to come forward and hand over the details of all the contact he has had with amber heard. the 57-year-old actor is suing her for 50 million dollars in virginia over a 2019 op-ed article she wrote for the washington post. in the article, amber described herself as a victim. most of you might be aware of this, but the news about elon being brought into the case really changes the game as there could be some new information that elon could bring forward in order to either help depp’s case against amber heard or the other way around. johnny depp has obtained a court order requiring elon musk, the 49-year-old ceo to give his testimony. this is where he will be questioned on the details about his relationship with amber heard. the reason for him being called forward is not to talk about their relationship or whatever they shared together, but musk is being asked to come forward and bring forward any knowledge he has of her allegations against her ex-husband, johnny depp. this means that if he is aware of what the truth is in this case. musk may be the one who holds some useful information that can make or break the case for either of the two. depp is hoping that he comes forward and discusses the truth of what happened and not the lies that are being constantly spread. elon is known for several different things, one of which is that he is the ceo of spacex, and the other being that he is the ceo of tesla. musk, who was estimated last month to be the world’s richest person with a worth of more than 185 billion dollars, is being required to provide details of phone calls, emails, letters, and text messages exchanged with amber heard during various periods in march 2015. now, you may be thinking that this is invading elon’s privacy but there are legitimate reasons behind it. back when things were not so good between amber heard and johnny depp, it was stated that she was going to get a restraining order against depp. when amber decided to do this, the one she made sure to let know was elon musk. as she went on to tell him about the issue, he offered to pay and provide her with 24-hour security. he also shared that he liked amber heard, according to what the high court had to hear. laws said that musk offers to arrange 24/7 security for you, adding the offer would stand even if you never wanted to see me again. anyway, sorry for being an idiot. the radio silence hurts a lot. it only matters because i really like you, said elon. he has also been asked to hand over any documents relating to her 7 million dollar divorce settlement which she claimed to have donated to the american civil liberties union and the children’s hospital los angeles. the money that she in fact came forward to state that she had yet to give her settlement money over as it was promised back when she split with depp.in other news, back when johnny depp unsuccessfully sued the sun over an article describing him in a not-so-kind manner and questioning why j.k rowling let him appear in the fantastic beasts’ film because of the allegations amber heard stated about depp.the high court was told that elon musk became a regular late-night visitor to amber heard monthly. + +#bluffcentral #amberheard #johnnydepp #justiceforjohnnydepp #elonmusk #heard #depp #musk #metoo",51.0,2442.0,,,,,,2372.0,7.0,0.0,12.0,elon musk defends johnny depp & speaks against amber heard | bluff central,,,,,,,,,, +551,https://www.youtube.com/watch?v=0WGYHeWKtbM,0,0,{'funnyguide'},1,youtube,video,original video,"kiss scene (nadine and flagg) +have passionate sex scene (amber heard and alexander skarsgård) +making love scene from series: ""the stand"" (2021) + + +• original title: ""the stand"" +• episode title (s01e07) ""episode 7"" +• adventure, drama, fantasy +• creators: josh boone, benjamin cavell +• stars: whoopi goldberg, alexander skarsgård, james marsden +• imdb: 5,5/10 + + +the stand picks up the pace significantly in a crucial episode directed with flair and dread by vincenzo natali (splice, cube). there are still some odd changes to the source material in this hour. + + +how is nadine not in vegas yet? wasn’t she going 120 mph? anyway, she finds a red carpet in the desert, and she’s suddenly in flagg’s penthouse. she made it. she’s finally with her king. they kiss, and she tells him about harold. now she can be his wife, and the two have passionate sex that gets more and more intense. she starts to sense something isn’t right and realizes she’s still in the desert just as she suddenly sees a demon form of flagg. it’s an odd, vague cut to commercial in that shocking moment that somewhat lessens one of the darkest scenes in stephen king history. in the book, this is a brutal, violent rape scene (“he battered into her, invader, destroyer, and the cold blood gushed down her thighs”) that traumatizes nadine and leaves her catatonic. it may have been too dark for cbs all access, but the way it’s framed here feels like it mutes how much flagg abuses even his “queen.” + + +by this time, nadine has finally reached the next phase of her destiny. flagg transports her to his suite in new vegas, where he has sex with her. it’s all a beautiful illusion, though, as nadine realizes too late. the edges of the fantasy dissolve to reveal that she’s lying in the dirt, and flagg is a demon. and while this scene also shifts to imply that nadine is no longer consenting, it is an improvement upon the scene in the book, which is a violent rape scene. + + +nadine is simultaneously reluctant and determined to get to flagg, enticed of his protection and terrified of his ownership of her. she willingly goes, but it’s also the result of years and years of conditioning on flagg’s part. he shrunk her world so that it seemed like he was the only person she had. he made her need him. she starts to have sex with him and then tries to stop, but he ignores her protests, and things turn violent and terrifying. she sees him for the monster he really is, but it’s too late. he sucks everything out of her so that she becomes a floating, quiet, submissive shell. she has served her purpose: she’s pregnant with flagg’s demon baby, and it’s literally sucking the life out of her. flagg’s at his scariest here. his behaviors with nadine have all the markings of an abusive, manipulative, all-consuming relationship. + + +it goes both ways, too. as already mentioned, harold understands in his last minutes that it was his inability to let go of his humiliation and hatred that has doomed him, and once nadine gets to the desert, she too has an awful moment of clarity when she and flagg bang it out. even mother abigail chastises herself for the sinful pride that caused her to forget that, “i was not the potter, but the clay.” as this series creeps toward the final showdown, cavell and his writers are making it clear that the bigger battle for humanity’s salvation is already underway, and the lines there for which side one should be on are as clear as day. + + +“the walk” works as well as it does because it manages to pull these character and thematic moments together in an episode that is also captivating, and is bolstered by some gorgeous cinematography capturing the quartet’s walk west (and a clutch use of radiohead’s “i promise” during one such portion). the performances of marsden, adepo, kinnear, and bedard represent an emotional high-water mark for the series, with all four actors using the history of the previous six episodes to fall into an effortless rapport as a group. + + +on the flipside, like harold’s motorcycle, teague hits a wall with his performance this time around, as his magnificent crescendo in last week’s “the vigil” didn’t leave him anywhere to go in the early moments of this episode. and while nadine’s lightening-fast gestation of flagg’s demon-baby does hit the whole, “the future is what you make of it” theme a little too squarely on the head, her corpse-like complexion at the end of the episode. + + +the stand season 1 episode 7 | the stand 1x07 | the stand s1e7 + + +#thestand​​ #amberheard​​ #alexanderskarsgård​ #thestand1x07​ #thestandpromo​ #thestandcast​ #thestandpreview​ #thestandsynopsis​ #thestandspoilers​ #thestandreleasedate​ #thestandairdate​ #thestandhdquality​ #thestandseason1​ #thestandepisode7​ #thestandseason1episode7​ #thestandbestseries​ #thestandcbsallaccess​ #thestandfullepisodes​ #thestandonline​ #thestandfreeonline​ #thestandfullfree​ #thestandseason1episode7online",117.0,50317.0,,,,,,50186.0,13.0,0.0,1.0,the stand nadine kiss flagg and the two have passionate sex amber heard s01e07,,,,,,,,,, +552,https://www.youtube.com/watch?v=6LXbiVscMFE,0,0,{'Viral Vision'},1,youtube,video,original video,"amber heard faces 5 years in prison for bribing sister to lie in court!? +amber heard for years now has said that her ex-husband in johnny depp has hurt her in various ways. not the least of which was led to her divorcing him in 2016. but while many were very quick to believe her in 2016 and even 2017 when she wrote an op-ed about it, things have very much changed now. because more and more evidence has come forward to showcase and the lengths she’s gone to in order to make people think she’s innocent. including potentially paying off her sister. we’ll break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone! a look at the various elements of this new court document that seems to indicate that amber heard indeed paid off her own sister to go and give herself proof against johnny depp in her various cases against him. are the walls closing in around amber heard? do these statements and subpoenas go and show how you depp was very much the victim in all of this? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",3650.0,120171.0,,,,,,115780.0,149.0,0.0,592.0,amber heard faces 5 years in prison for bribing sister to lie in court!?,,,,,,,,,, +553,https://www.youtube.com/watch?v=UMglys-ned8,0,0,{'TheQuartering'},1,youtube,video,original video,"the #1 way to support this channel is backing me on subscribestar +https://www.subscribestar.com/thequartering + +become a youtube member! it's the #2 best way to support! +https://www.youtube.com/channel/ucfwe_odi1ytbdjkzusi1nag/join + +follow me +twitch-https://www.twitch.tv/thequartering +parler-https://parler.com/profile/thequartering/ +twitter-https://twitter.com/thequartering +discord-https://discord.gg/d3tnuwdvzm +subreddit-http://reddit.com/r/thequartering +politics channel -https://www.youtube.com/channel/uc577sigte1cjpdosladwndw",16759.0,238982.0,,,,,,219704.0,568.0,0.0,1951.0,amber heard fired & faces 3 years in jail??!?!? huge aquaman 2 news for jason momoa & emilia clarke,,,,,,,,,, +554,https://www.youtube.com/watch?v=xU-leHhdV8A,0,0,{'Viral Vision'},1,youtube,video,original video,"amber heard is in serious trouble after johnny depp's lawyers bring new evidence +for years now, johnny depp and his ex-wife amber heard have been clawing back and forth to go and get an advantage over the other in the numerous cases that have been filed by them at each other. johnny depp for example filed a defamation suit against heard for $50 million and she filed a countersuit worth $100 million. that case is still going on and has been delayed until 2022 due to the pandemic pushing back scheduling. but even though that’s going on, there are some things that aren’t adding up in heard’s defense. we’ll break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone! a look at the situation that is evolving due to amber heard not serving a subpoena to someone who might have information that can help her! but, what does it all really mean? is she not doing so despite saying she will proof that he doesn’t have anything that will help her? or, has she learned that he knows something about her that might come out if johnny depp’s team gets to cross-examine? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",3129.0,106596.0,,,,,,102433.0,72.0,0.0,962.0,amber heard is in serious trouble after johnny depp's lawyers bring new evidence,,,,,,,,,, +555,https://www.youtube.com/watch?v=Sgnde3b29L0,0,0,{'La taquilla'},1,youtube,video,original video,"hola amigos taquilleros, el día de hoy te traemos las #noticias más taquilleras, nuevo trailer de shang-chi, amber heard regresa como mera, olivia colman y christian bale en el ucm, así que prepara tus palomitas y vámonos a las noticias... + +#shangchi #amberheard #oliviacolman #christianbale + +redes sociales +instagram: https://www.instagram.com/lataquillagdl/ +facebook: https://www.facebook.com/lataquillagdl/ + +conductor lennyn díaz +instagram: https://www.instagram.com/lenyn12/ +canal de youtube: https://www.youtube.com/channel/ucak7ggon2g8r1yvfaqhnkvq?view_as=subscriber",19.0,125.0,,,,,,101.0,1.0,0.0,4.0,"nuevo trailer de shang-chi, amber heard regresa como mera, olivia colman y christian bale en el ucm",,,,,,,,,, +556,https://www.youtube.com/watch?v=lsBBAZVEaCM,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"johnny depp drops the bombshell as heard's worst fear will take the stand! +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #johnnydepp #amberheard",5777.0,181832.0,,,,,,175262.0,78.0,0.0,715.0,johnny depp drops the bombshell as heard's worst fear will take the stand!,,,,,,,,,, +557,https://www.youtube.com/watch?v=waXKykBTrQI,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"judge finds amber heard guilty of lying, fraud, more; and yet this? + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",3550.0,45058.0,,,,,,40953.0,20.0,0.0,535.0,"judge finds amber heard guilty of lying, fraud, more; and yet this?",,,,,,,,,, +558,https://www.youtube.com/watch?v=VQ4cKnkYFrw,0,0,{'YT Mizone'},1,youtube,video,original video,"aquaman has been blinded in a mysterious event. years have passed and soon he regains his sight. however, damage to his land has been done. its up to him and mera to find out what happened. + + +copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use.",7.0,65.0,,,,,,58.0,0.0,0.0,0.0,"aquaman 2 (2022) !!! teaser trailer - jason momoa, amber heard",,,,,,,,,, +559,https://www.youtube.com/watch?v=dEhhgg43AiI,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"never-before-seen bodycam footage obtained by dailymail.com shows a tidy apartment at amber heard and johnny depp's apartment in 2016 + +depp says this 'proves' heard is lying about the blowout fight that ended their toxic 18-month marriage + +heard has given evidence in multiple legal cases saying depp hurled a phone at her face and trashed their penthouse kitchen during the may 2016 dust-up + +four different lapd officers visited the stylish, loft-style apartment in downtown los angeles within the space of two hours  + +the first two cops have given new depositions reiterating that they swept the $1.5million property but didn't see any injuries, vandalism or evidence of a crime + +the other cops don't appear to spot anything suspicious in the footage and there are no obvious signs of damage, disarray or staining to the floors or carpets + +'amber and her friends described a chaotic, messy crime scene but the newly released lapd bodycam unambiguously show that the penthouse was utterly undamaged and that their testimony was one more grandiose lie,' depp's lawyer tells dailymail.com",1357.0,81190.0,,,,,,79434.0,18.0,0.0,381.0,body cam footage proving amber heard lied about johnny depp!,,,,,,,,,, +560,https://www.youtube.com/watch?v=NgLNExHh3Rg,0,0,"{""Mr. Zod's Fandom Zone""}",1,youtube,video,original video,"amber heard rumored to have been fired from aquaman 2 for contract breach +https://wegotthiscovered.com/movies/amber-heard-rumored-fired-aquaman-2-breach-contract/amp/ + +#ginacarano we talk about the interview and the importance of not just canceling people just to cancel them 😒 + +inside joss whedon’s ‘cutting’ and ‘toxic’ world of ‘buffy’ and ‘angel’ (exclusive) +https://variety.com/2021/tv/features/joss-whedon-buffy-angel-charisma-carpenter-toxic-workplace-1234915549/amp/?__twitter_impression=true + +kate winslet says she shouldn't have worked with woody +https://www.irishtimes.com/culture/film/kate-winslet-i-shouldn-t-have-worked-with-woody-i-ll-always-grapple-with-that-regret-1.4491654?mode=amp + +check out popculturepb channel +https://youtube.com/c/popculturepb + +check out cybernetichusky channel +https://youtube.com/c/cybernetichusky + +check out my website +http://www.zodsfandomzone.com/ + +check out my teespring +https://teespring.com/stores/zod-fandom-zone-store + +fellow us on twitter as well",67.0,340.0,,,,,,260.0,0.0,0.0,13.0,late night talks weekend #amberheard rumored to have been fired from #aquaman2 for contract breach,,,,,,,,,, +561,https://www.youtube.com/watch?v=iAZxUOC2p04,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +☆other platforms☆ + + +•backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + +☆support the channel☆ + +•become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +•if you want to support my channel, please check out my patreon and subscribe star below: + +•patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp",545.0,6071.0,,,,,,5217.0,16.0,0.0,293.0,rant - stop equating johnny depp to marilyn manson | amber heard uses situation to play victim,,,,,,,,,, +562,https://www.youtube.com/watch?v=5zQktzKJlhQ,0,0,{'Film Streak'},1,youtube,video,original video,"there has been a lot of drama between amber heard and johnny depp. initially everyone believed amber heards accusations against johnny, but as the court hearings have proceeded and more information has gone public people have starten taking the side of johnny! +now, even amber heard own lawyer has started to expose her for trying to ruin depp and his career through several lies and exaggerations. + +if you liked this content make sure to leave a like and subscribe to our channel for the latest movie and actor news! + +we have compiled some of our previous videos on the johnny depp and amber heard case here: +johnny depp officially rehired | back in a new pirates of the caribbean 6 movie? https://www.youtube.com/watch?v=utozmdfngvk +""i lied"" amber heard apologies to johnny depp (ig live video): https://www.youtube.com/watch?v=plyxm0ztstg +emilia clarke reaction before replacing amber heard in aquaman 2! https://www.youtube.com/watch?v=pyxp9wxhuww + +#amberheardlawyer #amberheardandjohnnydeppcase #ahanddeppdrama #filmstreak",74.0,2338.0,,,,,,2247.0,5.0,0.0,12.0,amber heard’s lawyer exposes her for ruining johnny depp!,,,,,,,,,, +563,https://www.youtube.com/watch?v=DkRFRQA2nk8,0,0,{'Viral Vision'},1,youtube,video,original video,"johnny depp speaks on amber heard ruining her own career +there are many tales in hollywood about certain stars going and “ruining their own career”. mainly because they go and do acts that ruin themselves by exposing their “true selves”. like with kevin spacey and the nastiness that he partook in. in the case of amber heard though, her destruction has been much more of a “slow burn”, mainly because she’s tried to convince people she’s one thing, but got caught and revealed that she’s actually something else entirely. allow us to break it all down. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, a look at amber heard and all the things that she’s done to johnny depp, to fans, and more that have painted her in a more monstrous light that’ll no doubt end her career. how much longer do you think it’ll take for hollywood to realize who amber heard truly is? do you think that the upcoming aquaman movie will be her last major film? or do you think hollywood will continue to try and protect her? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",3352.0,101973.0,,,,,,97615.0,183.0,0.0,823.0,johnny depp speaks on amber heard ruining her own career,,,,,,,,,, +564,https://www.youtube.com/watch?v=2libFy224FI,0,0,{'InformOverload'},1,youtube,video,original video,"tiktok star admits lied about kanye west, jeffree star cheating scandal +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +i don't know about you guys, but when i’m bored and all jacked up on adderall, i tend to start rumors about celebrities by getting on tiktok and making viral videos. as niche and specific of an activity as this may be, it seems i’m not alone, as everyone’s favorite influencer, ava louise, who’s also known as the girl who tried to start the coronavirus challenge, did the exact same thing. and now that her rumor blew way out of proportion and things are spiraling out of control, well she admitted that all of it was fake. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#jeffreestar #kanyewest #kimkardashian #avalouise #tiktok #viral #lying #caughtlying #cheating #rumors #celebritygossip #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 #admission #lying #liar #lied #lies #tellinglies + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +jarred bronstein: http://instagram.com/bronst7 + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +dylan lamovsek: https://twitter.com/uptownduck00 + +📱instagram: https://www.instagram.com/informoverload +📱twitter: https://twitter.com/informoverload +📱reddit: https://www.reddit.com/user/informoverloadreddit +✉️email | contact: informoverload@gmail.com",1517.0,31904.0,,,,,,30178.0,32.0,0.0,177.0,"tiktok star admits she lied about kanye west, jeffree star cheating scandal",,,,,,,,,, +565,https://www.youtube.com/watch?v=LaaiuIPxe0E,0,0,{'Christian Dion'},1,youtube,video,original video,"https://psychicgossip.blogspot.com/2020/03/a-whole-new-meaning-to-courting.html + +https://psychicgossip.blogspot.com/?m=1",79.0,1046.0,,,,,,931.0,3.0,0.0,33.0,readings i stand by ep1 johnny depp & amber heard.,,,,,,,,,, +566,https://www.youtube.com/watch?v=TzqAslwfhig,0,0,{'Crazed Culture'},1,youtube,video,original video,"more celebrities who defended johnny depp against amber heard!!! +2020 has not been an easy year for anyone especially not for johnny depp. from his loss against the high-profile libel case involving the sun and his ex-wife amber heard, one can say that depp has really been in an intense battle throughout the year. however one thing that is looking good for depp is the support that he has been receiving from millions, even including the support of some big name celebrities. for quite some time people were slowly starting to believe amber heard but that was only until an audio was leaked that quickly made people say she was the guilty one in this situation. there are so many scandals in the celebrity world but this is one that is causing quite the uproar as people are striving to bring justice to johnny depp. allow us to break down the details of the scandal, but also provide you with a list of those celebrities who are supporting depp during this time. + +could it actually be true that johnny depp is the one who is innocent in this entire situation? why would amber heard spread and display such false allegations about him? if johnny depp truly is innocent then, will amber heard be at risk of losing her status? is there any way for her to defend herself after the audios that have been leaked? let us know what you think in the comments down below! +#johnnydepp #amberheard #justiceforjohnnydepp",2002.0,60427.0,,,,,,58092.0,39.0,0.0,294.0,more celebrities who defended johnny depp against amber heard!!!,,,,,,,,,, +567,https://www.youtube.com/watch?v=bGMXolMUXs8,0,0,{'Movie Burner Entertainment'},1,youtube,video,original video,"join john walsh on movie news live. on today's show we discuss - + +#amberheard not fired from #aquaman2 – but many of her scenes are being cut + +follow john: @j_walsh1989 + +visit movie burner entertainment: https://movieburnerentertainment.org",9.0,157.0,,,,,,143.0,0.0,0.0,5.0,amber heard not fired from aquaman 2 – but many of her scenes are being cut,,,,,,,,,, +568,https://www.youtube.com/watch?v=7F1pNVRMIEI,0,0,{'YellowFlash 2'},1,youtube,video,original video,"i'm not sure who is making the decisions over at at&t warner, but they appear to be doubling down on ah! looks like not only is she still in aquaman 2, but she’s getting her own mera series on hbo max! + +►check out my store: https://teespring.com/stores/yellowflash-merch + +►check out my patreon: https://www.patreon.com/yellowflashcomics + +►check out my twitch: https://www.twitch.tv/yellowflashtwo + +►follow me on twitter: @yellowflashguy + +►follow me on parler: https://parler.com/profile/yellowflash +#aquaman2 #hbomax #amberheard",3045.0,44632.0,,,,,,40255.0,164.0,0.0,1168.0,hbo max says everyone loves amber heard?! hater “bots” can’t stop mera spin-off series?!,,,,,,,,,, +569,https://www.youtube.com/watch?v=E6UdCB9htTw,0,0,{'Martin DeCoder'},1,youtube,video,original video,"statement & conversation analysis of amber heard’s words in a 2016 deposition. this analysis focuses on heard’s statements about her and depp’s relationship. want to help support this channel? 1) thumbs up & subscribe. 2) patreon: https://www.patreon.com/martindecoder + +your support on patreon is much appreciated for the time-consuming task it is to make these analyses. thank you for supporting for whatever amount of time you’re able to. + +i’m a danish linguist, educated in statement analysis (sa) & conversation analysis (ca). in these methods, it’s understood that people subconsciously want to tell the truth, which is why the truth is revealed in their language use. + +literature that i use in my job as external lecturer and that i recommend, if you want to know more about conversation analysis and narrative analysis: + +hutchby, ian (2006): ‘media talk – conversation analysis and the study of broadcasting’. maidenhead: open university press. (basic principles + conversation analysis of news interviews) + +rowland, robert (2009). “the narrative perspective”. kuypers, jim a. (ed.): ‘rhetorical criticism – perspectives in action’. plymouth, ma: lexington books, p. 117-141. (the basics of narrative analysis) + +this video is made according to the terms of ‘fair use’. + +#johnnydepp #amberheard",576.0,7850.0,,,,,,6951.0,8.0,0.0,315.0,linguist analyzes amber heard’s unreliable statements about johnny depp,,,,,,,,,, +570,https://www.youtube.com/watch?v=RsHkJ4uDnrE,0,0,{'Steven And Jason'},1,youtube,video,original video,"in this episode we discuss the recent rumors that emilia clark will be replacing amber heard in aqua man 2. we would love to hear your thoughts on this idea or if you have any other suggestions as to who should get the part. + +please subscribe, like & share! + +petition to have amber heard removed from aquaman 2: https://bit.ly/3dckiyp + +add us on instagram: +https://www.instagram.com/stevenrcrowley +https://www.instagram.com/stevenandjason + +add us on tiktok: +https://www.tiktok.com/@stevencrowley + +the equipment used: https://www.amazon.com/shop/stevencrowley",646.0,8915.0,,,,,,7972.0,20.0,0.0,277.0,amber heard should be fired. emilia clark should be mera in aquaman 2! sign the petition!,,,,,,,,,, +571,https://www.youtube.com/watch?v=Kcj-BVZoqFE,0,0,{'HD-Official Channel'},1,youtube,video,original video,"hd-official channel + + +facebook page : +https://www.facebook.com/pinoypunch-tv-109350031228378/ + + +please subscribes to my youtube channel. +for youtube channel : +https://youtube.com/channel/uc06zzlwlvot5ateuadciuew +__________________________________________ + +licence is under creative commons attributes 3.0 +https//creativecommons.org/licenses/ + + + +__________________________________________ + +disclaimer: + all music, videos, images and graphics used in the video belong to their respective owners and the channels does not claim any right over them. + + + +copyright disclaimer under section 107 of the copyright act of 1976, allowances is made for ""fair use"" for purposes such as criticism, comments, news reporting, teaching, scholarship, education and research. no copyright infringement intended. + +don't forget to subscribe, please share and click notifications bell for more vedios. + +thanks for watching. +#acquaman2 +#officialtrailer2021 +#hd-officialchannel",3.0,126.0,,,,,,123.0,0.0,0.0,0.0,"trailer acquaman 2 (2021) treaser trailer - jason mamoa, amber heard, hd-official channel",,,,,,,,,, +572,https://www.youtube.com/watch?v=Fzv3TBS02jE,0,0,{'Christian Dion'},1,youtube,video,original video,https://www.patreon.com/psychicgossip?fan_landing=true psychic gossip,108.0,2310.0,,,,,,2179.0,1.0,0.0,22.0,"another closer & closer amber heard, alexndra grant, lauren sanchez, meghan markle",,,,,,,,,, +573,https://www.youtube.com/watch?v=6jhtgKqCRZI,0,0,{'The Amber Heard Playlist!!'},1,youtube,video,original video,https://scholarship.law.upenn.edu/cgi/viewcontent.cgi?article=9601&context=penn_law_review,,,,,,,,151.0,,0.0,,unqualified youtube body language experts are lying to you!! (amber heard playlist!!),,,,,,,,,, +574,https://www.youtube.com/watch?v=1j5-5sxDyLo,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"join this channel to get access to perks: +https://www.youtube.com/channel/ucg2qylhnyyxksvv6ve11ijw/join",139.0,1378.0,,,,,,1221.0,3.0,0.0,15.0,🔴 live zach snyder protects amber heard ! johnny’s appeal & movie. much more !,,,,,,,,,, +575,https://www.youtube.com/watch?v=GNsFwFTIXCg,0,0,{'Fire Amber Heard'},1,youtube,video,original video,it's been a month but i really don't care 🙄 but we made progress,6.0,21.0,,,,,,11.0,0.0,0.0,4.0,solving a rubik's cube everyday until amber heard gets fired - day 30,,,,,,,,,, +576,https://www.youtube.com/watch?v=2XfOCHCxJbU,0,0,{'DarthN3ws'},1,youtube,video,original video,"📬📦 feel free to sends me stuffs: + po box 301. dexter, mi. 48130 + +*my channel is not monetized* + +please consider supporting my work- + +💻 https://darthnews.com/ (merch store) +🙏 https://www.patreon.com/darthnews (helps feed my dog & keeps the lights on) +💸 cashapp: $darthnews +🐦 twatter: @darth_news +🎶 dikdok: darth_news +📸 insta: @darthnews / second acct: @darth_news +📧 thedailydarth@gmail.com + +#amberheard #johnnydepp #rumors #reeeeee #gossipcock #triggered #j4j #aquaman2 #insufferable #barnwitch #ditchthewitch #amberturd #rant #mera #defamation #sociopath #hollywood #domesticviolence #metoo #abuse #lawsuit #cancelculture #update #fakewoke #hollywood #cringe #darthnews #subscribe + + +#yeahiusealotofhashtagsfuckoff",327.0,3287.0,,,,,,2837.0,6.0,0.0,117.0,let's address some of these ridiculous amber heard & johnny depp rumors..,,,,,,,,,, +577,https://www.youtube.com/watch?v=ilRT3XtX0Yc,0,0,{'Viral Flash'},1,youtube,video,original video,"amber heard finally fired from aquaman 2! +______________________________________________ +for more videos subscribe : https://bit.ly/2zopgqj +______________________________________________ +it seems as though emilia clarke might have signed in to replace amber heard in aquaman 2, which comes from a recent article in forbes. game of thrones star emilia clarke suits up as mera to replace amber heard in a stunning new concept design for aquaman 2. + +in this video we will be discussing the replacement of amber heard in aquaman 2 by emilia clarke. + +johnny depp was forced to step away from his role as the main villain of the fantastic beasts series after losing his libel case related to the abuse allegations made by his ex-wife amber heard. since depp alleged that heard was also physically and emotionally abusive towards him in their relationship, many fans would like the aquaman star to leave her role as the comic book icon mera in the dc extended universe movies. while it would probably be easier for aquaman 2 to just jettison the character entirely, some suggested emilia clarke to take over the role of mera as a way for the sequel to move forward without any story-related issues. + +digital artist bosslogic took the idea and ran with it. in his latest concept, bosslogic reveals what emilia clarke could look like as mera for aquaman 2. it’s hard to deny that the former game of thrones star looks the part, as the new outfit the artist puts her in immediately gives her a regal look. clarke’s acting talents would definitely be a big step up for the dceu and game of thrones fans would be wholly excited to see the british star reunite with jason momoa. + +from what we’ve gathered in the last several months, amber heard is returning to make aquaman 2 and warner bros. is not inclined to get rid of her. she is a domestic abuse survivor in their eyes and worthy of a spinoff film, especially when dc films doesn’t have as many leading female action heroes as marvel. a petition calling for heard to be fired and replaced with emilia clarke keeps gaining signatures but heard and the studio aren’t taking it seriously. + +but according to forbes, it now seems that warner bros. has also fired amber heard from the dc extended universe to replace her with the mother of dragons. while no official confirmation has been released from warner bros. regarding clarke’s casting, the decision can work wonders as it will once again reunite clarke with jason momoa. in game of thrones, the pair shared the screen as a couple which led to the earlier speculations of clarke replacing heard as mera in the dceu. + +from some recent rumors that amber heard has been fired from aquaman 2, this now doesn’t appear to be the case. according to insider daniel richtman, talk that emilia clarke, who’s been linked to the role of mera before, is set to replace heard, has no basis in truth. and although this news may not be taken as positively by some people as it will be by others, it seems that heard’s immediate career prospects and personal life are going to be shadowed by these sorts of stories for a while yet. + +of course, in recent weeks, richtman has also reported that the actress is angry at warner bros. for bringing in another female lead, reducing her screen time in the aquaman sequel. however, she’s apparently set to get a pay rise for her part in the movie, too, so it’s hard to really know what’s going on behind the scenes on the film. + +heard-depp controversy isn’t going away anytime soon, it’s hard not to see aquaman 2 receiving a lot of scrutiny as it gradually heads into production. the studio has continued to back the actress in the last year, though, and it seems that she’s still very much in contention for other major roles in hollywood, despite negative online campaigns. + +and that's all for today's video. tell us your thoughts on the replacement of amber heard in aquaman 2. don't forget to like this video and if you have not subscribe to my channel yet please do so. see you within the next video. + +______________________________________________ +about my channel : +welcome to the viral flash! in this channel we upload videos related to celebrity gossip, entertainment news, top 10 list videos, updates on royal family etc. as far as possible, we upload 4 videos each week. thanks for watching! +__________________________________________________ +for more videos subscribe : https://bit.ly/2zopgqj",15.0,526.0,,,,,,490.0,1.0,0.0,20.0,amber heard finally fired from aquaman 2!,,,,,,,,,, +578,https://www.youtube.com/watch?v=G57VFTnxWnc,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"is elon musk obsessed with amber heard ? in this video, i talk about their relationship so we can find out. + +tammy tips and tricks : https://instagram.com/tammy.tipsandtrips?igshid=sk5olemcpdhp + +rob’s rebellion star wars channel : + +https://youtube.com/channel/ucneeomqldbqxhdpdmxaq1pg + +twitter : @wars_everything + +email : estarwars1977@gmail.com + +#justiceforjohnnydepp +#justicefordepp",312.0,5304.0,,,,,,4860.0,6.0,0.0,126.0,is elon musk obsessed with amber heard ?,,,,,,,,,, +579,https://www.youtube.com/watch?v=5DZtmOgfNCU,0,0,{'Theresa L. Dowling'},1,youtube,video,original video,,1.0,21.0,,,,,,19.0,1.0,0.0,0.0,trippy_llama maybe you need to stop (amber heard playlist!!),,,,,,,,,, +580,https://www.youtube.com/watch?v=ZK9U4rcv8I8,0,0,{'Stevie J Raw'},1,youtube,video,original video,"in a new fairfax subpoena whitney has been asked to show all payments from amber heard above $10,000! looks like she paid her sister to lie! + +who else did amber heard pay?!!! remember whitney is amber's sister and jennifer howell was the employer of whitney so very interesting. + +chla donation page - https://www.justgiving.com/fundraising/justiceforjohnnydepp + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join +art of elysium donation page - https://www.pledge.to/the-art-of-elysium + +justice for johnny depp t-shirts (proceeds go to charity): +design 1 - https://t.co/uycndh9ebj?amp=1 +design 2 - https://t.co/hdmq0wicke?amp=1 +design 3 - https://t.co/lqmeoidmje?amp=1 +design 4 - https://t.co/lkteqqdxhg?amp=1 + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#justiceforjohnnydepp #amberheard #steviejraw",347.0,2978.0,,,,,,2563.0,0.0,0.0,68.0,"amber heard paid whitney $10,000 for perjury!!",,,,,,,,,, +581,https://www.youtube.com/watch?v=bkDAMnXfSNA,0,0,"{""Mr. Zod's Fandom Zone""}",1,youtube,video,original video,"elon musk thinks johnny depp and amber heard should “bury the hatchet” + +https://www.vanityfair.com/style/2020/06/elon-musk-johnny-depp-amber-heard + +why #cbs #thestand2020 miniseries has such mixed reviews + +latest ‘mandalorian’ artwork excludes #ginacarano character + +https://screenrant.com/cbs-stand-series-2020-reviews-explained/amp/?__twitter_impression=true + +check out popculturepb channel +https://youtube.com/c/popculturepb + +check out cybernetichusky channel +https://youtube.com/c/cybernetichusky + +also check out the teespring +https://teespring.com/stores/zod-fandom-zone-store",74.0,854.0,,,,,,764.0,0.0,0.0,16.0,late night talks weekend's (elon musk thinks johnny depp and amber heard should “bury the hatchet”),,,,,,,,,, +582,https://www.youtube.com/watch?v=UwDwLmhgPV4,0,0,{'eHacker'},1,youtube,video,original video,amber heard involved with racheal wood and marilyn manson! | a theory by jeann larson,745.0,11186.0,,,,,,9895.0,22.0,0.0,524.0,amber heard involved in racheal wood and marilyn manson abuse accusations!? | theory by jeann larson,,,,,,,,,, +583,https://www.youtube.com/watch?v=6MaJ3FAUsxw,0,0,{'Gotta Love Them Movies'},1,youtube,video,original video,"amber heard fired from 'aquaman 2'? • black superman coming from jj abrams • jennifer lawrence is sue storm??? • wandavision ep 8 spoiler talk + +gotta love them movies is an online film-fan community where we discuss all things movies, movie news, & entertainment! drop a question below, and i'll answer it during the live show! can't watch it live? no problem! email me your questions regarding your favorite movies, and i'll make it a main topic! gottalovethemmovies@gmail.com don't forget to subscribe to our youtube channel! doing so will help me actually earn money through ad revenue so i can make this my full-time job! +https://www.youtube.com/channel/uc66etbj8yq37b03fhhk2iua?view_as=subscriber +oh! and please like and share this video to help spread the word! let's grow our film fan community! + +opening title sequence edited by george chrysiliou +@pegleg_pegasus + +graphics by josh hollifield +https://twitter.com/captgarfield + +marketing consultant +mike frankel +@mikefrankel + +microphone - rode nt1-a condenser mic +https://www.bhphotovideo.com/c/product/1527859-reg/rode_nt1_a_large_diaphragm_studio_vocal.html + +microphone arm stand - tonor adjustable suspension boom +https://www.amazon.com/gp/product/b082w4b7sx/ref=ppx_yo_dt_b_asin_title_o02_s00?ie=utf8&psc=1 + +webcam - logitech brio ultra hd pro webcam +https://www.bhphotovideo.com/c/search?ntt=logitech%20brio&n=0&initialsearch=yes&c3api=4680%2c%2clogitech%20brio%2ce&msclkid=e5982561b69b13d156f67a8ecb0c55d0 + +audio interface - audient evo 4 desktop 2x2 +https://www.bhphotovideo.com/c/product/1548377-reg/audient_evo_4_evo4_2_in_2.html + +streaming software - obs studio 26.0.2 +https://obsproject.com/ + +computer - apple macbook pro 2020",14.0,988.0,,,,,,969.0,0.0,0.0,5.0,is emilia clarke *really* taking over for amber heard? gltm #shorts,,,,,,,,,, +584,https://www.youtube.com/watch?v=VuhTyr8xc_o,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"after geeks and gamers helped raise over $75k for suicidal awareness, zach snyder, who has protected amber heard, slammed geeks and gamers.",134.0,1400.0,,,,,,1144.0,13.0,0.0,109.0,zach snyder protects abuser amber heard and slams geeks and gamers !!,,,,,,,,,, +585,https://www.youtube.com/watch?v=dLdmoryaZck,0,0,{'girlgetglamorous - Molly'},1,youtube,video,original video,"all info + links here, click ""show more"" and on girlgetglamorous.com. today's video is all about my favorite rose gold, mauve, and plum satin and shimmer finish eye shadows. these are some of the prettiest and most flattering eyeshadows shades on so many different eye colors! + +these are eyeshadows i reach for over and over again because i know they'll deliver a perfect rosy color and finish. i wanted to share swatches and also talk a little about why i love + chose each formula over the hundreds (maybe thousands!?) of other eyeshadow i have tried. + +there is a mix of individual shadows and eyeshadow palettes, as well as a mix of cream and powder formulas. + +blog post | girlgetglamorous.com/the-best-rose-gold-mauve-eyeshadow-shades + +if you found this video helpful, i'd love if you could take a second to give it a thumbs up. thank you! that really helps the video out. + +also, if you are a subscriber and want to get notified on new videos, make sure to turn on notifications not only on youtube (the bell next to subscribe), but also in your phone. go to ""settings"" then scroll down to ""youtube"" then ""notifications"" and toggle it to ""on."" + +thank you for watching! which shades would you wear? + +- molly + +ig | www.instagram.com/girlgetglamorous +pinterest | www.pinterest.com/mollygardner1 +blog | girlgetglamorous.com + +timestamps + +side-by-side swatches | 0:55 +urban decay burnout | 1:48 +nars virgin gorda | 2:30 +loreal amber rush | 3:53 +colourpop coco crush | 4:18 +colourpop amaze | 5:15 +tom ford golden peach | 6:26 +chanel new moon | 7:48 +lorac stardust | 8:39 +urban decay buzz | 9:07 +viseart paris | 9:24 +mac sable | 10:51 +urban decay liar | 11:19 +colourpop snake eyes | 12:01 +additional swatches | 12:49 + +product links + +urban decay 3 palette (burnout, buzz, + liar) +ulta | https://rstyle.me/+uiyzqz7myh_6b0p8116bxa +sephora | https://rstyle.me/+xp6obnaime7hjhd9rez5ha + +nars virgin gorda +nars official | https://rstyle.me/+ehjt6a10xuugvglaip25_q +nordstrom | https://rstyle.me/+5n_enkisbzu3yzyql3m7mw + +loreal amber rush | https://amzn.to/30loxf9 + +colourpop coco crush +colourpop | https://rstyle.me/+qovidsomavod8etlxmgmaw + +colourpop amaze +ulta | https://rstyle.me/+opxtnoob3cevtisbxks8gg +colourpop | https://rstyle.me/+2ndgvxsfxvcmmbpliza_8g + +tom ford golden peach +net-a-porter | https://rstyle.me/+dd1r2z3rf6rkmcxouxd45w +sephora | https://rstyle.me/+sw3bqdqt-zthhebcndyzua +beautylish | https://rstyle.me/+lhhx31ix_tpx1b1m4a3gsa + +chanel new moon +saks | https://rstyle.me/+oo_qlagvbivzuem-0caeig +chanel official | https://rstyle.me/+jrptc3u5tcq05n1kp6epfa + +lorac stardust +ulta | https://rstyle.me/+ibscsf5wzneunnoqsx43na + +viseart paris | https://rstyle.me/+rl1qaq_hervkfvos4zsmkq + +mac sable +mac official | https://rstyle.me/+dzqcqvax8pzswmmgqkrz4w +nordstrom | https://rstyle.me/+iispzlq8js6fzepg944t1w +ulta | https://rstyle.me/+huh7m_f75pvpeim3oidqpw + +colourpop snake eyes +colourpop | https://rstyle.me/+m4ar2oitpzvxlouep7ztdq +ulta | https://rstyle.me/+jxdr1ln_eyqifzfnjuwska + +makeup details +makeup + earrings from intro: + +foundation (shade 240) | https://rstyle.me/+-l5_9upqqrar6dokradjlw +foundation brush | https://rstyle.me/+r8wcbhdi9cacqsdgfhjyrg +setting powder | https://rstyle.me/+pg0qarorscnekc97kobpgg +concealer (shade 1w) | https://rstyle.me/+o4neo9sgi2kblwdygxpqua + +nails (shade mia) | https://rstyle.me/+jtpoxe2tqbphphh9qh2hua +rose gold eyeshadow (shade virgin gorda) | https://rstyle.me/+ehjt6a10xuugvglaip25_q + +taupe crease eyeshadow (shade almond) +burberry (free shipping) | https://rstyle.me/+gpioeq9p2xdlzudzfkdsra +ebay | https://rstyle.me/+qqewjdnyjvfmstyjcqxnhq + +lip liner (shade whirl) | https://rstyle.me/+biqdp8z6ib4ewm2rafbgkq +lipstick | https://rstyle.me/+hfryz_5wihnn6cgvimflnq +lip gloss (shade clear) | https://rstyle.me/+58v3u1wznxpvev_rzvxyvq + +earrings | https://shrsl.com/2v0vr +lashes (style: double tapped) | https://www.girlgetglamoroushair.com/collections/lashes/products/double-tapped + +these are my affiliate links, which means i make a small commission if you make a purchase, at no additional cost to you whatsoever. i really appreciate when you use these links, as they help fund future videos like this one. thank you! + + +more videos + +the best eyebrow tutorial you'll ever watch | https://youtu.be/dnqvhzzrf04 + +my a.m. skincare routine | https://youtu.be/zwnw2bztcse + +ziip beauty review: is it worth the splurge? | https://www.youtube.com/watch?v=2l8pcxo71yi + +how i grew my eyebrows back + longer eye lashes | https://www.youtube.com/watch?v=gxpdffjfm6u + +concealer over 35 | https://youtu.be/fg_3y1ykifu + +creaseless foundation routine | girlgetglamorous.com/foundation-tutorial-35-mature-skin + +ftc disclosure | video is not sponsored. #rosegold #eyeshadow #eye #shadows #swatches #favorites #besteyeshadows #mauve #plum",433.0,9209.0,,,,,,8732.0,6.0,0.0,38.0,"the best rose gold, mauve, and plum individual eye shadow shades + palettes | swatches + try on",,,,,,,,,, +586,https://www.youtube.com/watch?v=WpEg-UGJ-rM,0,0,{'Flixet'},1,youtube,video,original video,"in today’s video, we gonna tell you about amber heard’s response to johnny depp's claim of not donating $7 million. + +subscribe for more : http://bit.ly/32rc7vi +____________________________________________ + +amber heard's attorney released a statement in response to johnny depp's legal team's claim that the actress didn't donate the $7 million she received as part of their divorce settlement. + +music in this video : + +track: odessa — liqwyd & scandinavianz +music provided by audio library plus +watch: https://youtu.be/jny-dp3lgcg",292.0,8248.0,,,,,,7825.0,23.0,0.0,108.0,amber heard responds to johnny depp's $7 million claim | flixet,,,,,,,,,, +587,https://www.youtube.com/watch?v=tmldxsN9-qQ,0,0,{'HNN24x7'},1,youtube,video,original video,"aquaman 2: amber heard fired from aquaman 2 rumors debunked. + +the rumors suggesting amber heard has been fired from aquaman 2 have been debunked. heard plays xebellian princess mera in the dceu, ever since her first appearance in 2017's justice league. she went on to have a prominent role in 2018's aquaman and will reprise the part next month for zack snyder's justice league. + +additionally, heard is expected to return for aquaman 2, which will once again star jason momoa as the titular hero and is slated for release in december 2022. + +#amberheard #aquaman2rumors #amberheardfiredrumors + + subscribe now for daily updates. + -------------------------------------- +enjoy and stay connected with us!! + ☛ follow us on twitter: https://twitter.com/hnn24x7 + ☛ like us on facebook: https://www.facebook.com/hnn24x7 + ☛ visit our official website: https://hnn24x7.com/ + ☛follow us on instagram: https://www.instagram.com/hnn24x7",0.0,18.0,,,,,,18.0,0.0,0.0,0.0,aquaman 2: amber heard fired from aquaman 2 rumors debunked.,,,,,,,,,, +588,https://www.youtube.com/watch?v=J--nC12W-YI,0,0,{'RedFlaim'},1,youtube,video,original video,"i explain why i think amber's kit feels bad to play with, not why she is ""bad."" i discuss why the problem goes beyond just her numbers, and has more to with how her gameplay is designed. + +intro: 0:00 +incohesiveness: 0:51 +poor sub dps/support: 1:51 +constellations: 3:18 +comparison to ganyu: 5:10 +possible fixes: 6:52 +closing thoughts: 7:29 +outro: 8:17 +#amber #genshin #genshinimpact + +referenced videos: +zy0x - https://www.youtube.com/watch?v=z9hfgopafcm +blossoms - https://www.youtube.com/watch?v=wazclt4lxw4 +tectone - https://www.youtube.com/watch?v=1igwvdn2_vi https://www.youtube.com/watch?v=tybvpri72k0",26256.0,587545.0,,,,,,557973.0,371.0,0.0,2945.0,why amber feels so bad to play (gameplay design analysis),,,,,,,,,, +589,https://www.youtube.com/watch?v=Fex4XYwaWsQ,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"rumor says warner brothers and hbo max is giving amber heard an aquaman 2 spin off show for her character of mera! let me know what you think! + +💕 don't forget to like & subscribe! 💕 + + + +backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + + +become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +if you want to support my channel, please check out my patreon and subscribe star below: + +patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp #aquaman #aquaman2 #mera #warnerbrothers #hbomax",400.0,4284.0,,,,,,3615.0,10.0,0.0,259.0,amber heard to star in hbo max spin-off for aquaman 2 | how stupid can they be?!?,,,,,,,,,, +590,https://www.youtube.com/watch?v=bw1utvnlU3A,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"amber heard fired ?? all we know, the latest on this rumor. + +hope you enjoyed this video. if you did please consider to become a member of the channel and join our community. + +don’t forget to like, subscribe, share and hit the notification bell. + +thank you for your support, it means more then you could imagine. + +please check out : + +tammy tips and tricks : https://instagram.com/tammy.tipsandtrips?igshid=sk5olemcpdhp + +rob’s rebellion star wars channel : + +https://youtube.com/channel/ucneeomqldbqxhdpdmxaq1pg + +rob’s rules discord : + +https://discord.gg/b2r5aubj + +twitter : @wars_everything + +email : estarwars1977@gmail.com + +#justiceforjohnnydepp +#justicefordepp",112.0,581.0,,,,,,434.0,1.0,0.0,34.0,amber heard fired from aquaman 2 ?,,,,,,,,,, +591,https://www.youtube.com/watch?v=YCOLZvl-rIs,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"join this channel to get access to perks: +https://www.youtube.com/channel/ucg2qylhnyyxksvv6ve11ijw/join",242.0,2516.0,,,,,,2195.0,0.0,0.0,79.0,🔴 livestream all about the johnny depp and amber heard case with colonel kurtz,,,,,,,,,, +592,https://www.youtube.com/watch?v=PO2dZmUnSnc,0,0,{'The Spotlight'},1,youtube,video,original video,"amber heard lies about donating $7 million of divorce money to charity!! + +subscribe to the spotlight 👉 https://bit.ly/3txagy1 + +watch next: ▶️ + +https://www.youtube.com/watch?v=nk62q2ve1ck&t=120s + +https://www.youtube.com/watch?v=r74lqyljmr8 + +https://www.youtube.com/watch?v=weh7dwgl_xq&t=10s + +------------------------------------------------------------------------------------------------------------------------ + +related videos:👇 + +https://www.youtube.com/watch?v=btqgul0ndja + +https://www.youtube.com/watch?v=ix63sqkr8se + +https://www.youtube.com/watch?v=abghjlrv-0e + + +the famous filed by johnny depp for a whopping 50 million against amber along with the case, which johnny was losing tremendously, is constantly making headlines with its new developments making their way onto the news from time to time. in complete honesty, the storyline of these events between the pair could quite easily be converted into a telenovela show provided a great director is ready to take up this venture. + +yes, we are talking about the alleged charity donation that amber heard was going to make with the 7 million she scored from the divorce settlement. amber had stated that she wasn’t comfortable keeping the money of her domestic abuser with her and chose to give it towards a better cause. + +the trial of the highly destructive case was clearly not in favor of johnny according to both him as well as his barrister andrew caldecott qc. but with fresh evidence on the table, things may actually look brighter for johnny’s fate in the case. + +johnny’s team is currently trying to get back at amber using the information with regard to her not paying off money towards the charity which she claimed she would do. amber had publicly announced that she would be donating the 7 million towards organizations that actually needed help with funding. she claimed to have given out the money to two different social causes and organizations. the two organizations that she stated she allegedly donated to were american civil liberties union (aclu) and the children's hospital los angeles. she even stated that her donations to aclu were done keeping in mind the hardships she had to bear with regard to her being a victim of domestic violence and wanted similar victims to benefit from these funds. so according to our unbiased calculation, each organization should’ve received 3.5 million us dollars each. + +but did that actually happen? +knowing the recent truth about amber coming out, it is easy enough to guess that this was a lie too. evidence to back this claim up came when mr. caldecott from the children's hospital los angeles communicated with johnny’s business advisor in 2019 claiming that no payments were made by amber heard towards the hospital. + +at the when the evidence was brought out, it was found out that amber had paid just a mere 100,000 dollars towards the children's hospital los angeles and 450,000 dollars to aclu. she also stated that she made an anonymous donation of a grand total of 500,000 dollars to aclu, but that could pretty much be another lie too. + +now, what did johnny’s team have to state? +of course, they weren’t surprised. his team stated that this was all part of the manipulation bandwagon that she has been blinding everyone with for the past few years. even though amber has stated that she would be giving out the donations over a course of time, many do not believe this statement of hers either. depp’s team also spoke up about how she chose to pull off a facade in front of the public to gain sympathy from whoever she could. not only did she do this, but also was involved in putting johnny down and bringing her standard up in the eyes of the public. i think it is safe enough to say that the words of a gold digger are quite hard to believe, especially if they claim it is for charity, mr caldeco, guess it was just bad timing for johnny depp, especially with the famous me too movement blowing up during that time. + +they first had helped put her story out through their newspaper claiming johnny to be a ”wife beater”. now, mr. adam wolanski, a representative of the ngn, has stated that even though this bit of evidence can prove amber to be a gold digger, it does not necessarily support the fact that she wasn’t going to pay what she promised, as she probably planned to do it over a course of time and not at once for her own reasons. + +a certain incident was questioned by depp’s time, that spoke volumes about how the jury wasn’t looking into the evidence as much as they should. on a trip to australia, amber claimed to have a life threat against her due to the fact that she was being held hostage for three days all due to johnny depp. the truth behind this incident actually happening wasn’t looked into and was blindly believed by the jury, bruises. amber heard aquaman 2 jason momoa clevver news informoverload +amber heard elon musk +#amberheard #johnnydeppcase #justicefordepp #amberheardcase #amberheardaudio #justiceforjohnnydepp #thespotlight",57.0,1162.0,,,,,,1078.0,1.0,0.0,26.0,amber heard lies about donating $7 million of divorce money to charity!!,,,,,,,,,, +593,https://www.youtube.com/watch?v=SKbltUXlCZk,0,0,{'Fire Amber Heard'},1,youtube,video,original video,u should watch attack on titan.,3.0,9.0,,,,,,6.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 29,,,,,,,,,, +594,https://www.youtube.com/watch?v=_g-o_hkYfJQ,0,0,{'eHacker'},1,youtube,video,original video,"amber heard’s lies exposed at uk trial appeal! +check out channel membership if you are keen to support the channel! +new members get their names in the credits! + +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com +donate direct to support : coming soon! + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods",672.0,8264.0,,,,,,7372.0,2.0,0.0,218.0,amber heard’s lies exposed at uk trial appeal!,,,,,,,,,, +595,https://www.youtube.com/watch?v=uXlPQze9Ojo,0,0,{'World of Smoke'},1,youtube,video,original video,plz dont ask for special actresses or from which movie clips come from. thx!,401.0,22730.0,,,,,,22296.0,17.0,0.0,16.0,amber heard smoking cigarette compilation,,,,,,,,,, +596,https://www.youtube.com/watch?v=RNIjkHEtttY,0,0,{'Trend Craze'},1,youtube,video,original video,"#amberheard #destroyherowncareer #amber +did amber heard literally destroy her own career!? +subscribe to trend craze ➡ https://bit.ly/2ibhc0v + + +so we guess most of you guys know about the messy divorce case that took place between hollywood superstar johnny depp and the gorgeous amber heard. ever since the proceedings of the divorce began in 2016, when heard played the domestic victim card, depp’s name in the industry has been deteriorating. he lost major, long-time roles in popular franchises like pirates of the caribbean and fantastic beasts. + +amber heard on the other hand? well, her popularity soared, despite the fact that no one knew who amber heard was. many film stars from the industry have also claimed of not knowing her until her infamous divorce case was the talk of the town. + +do you guys want to know a certain bunch of deals she struck after her gruesome divorce? + + +watch next 👇 + +✅ video +cobra kai: season 4 entire plot/set up explained +https://youtu.be/ifctyjuvh6k + +✅ video +amber heard super exposed: people speak out in support of johnny depp | trend craze +https://youtu.be/dvih-z4u7ng + +trend craze - trend craze is the top place for trending pop culture, celeb drama, top 5, top 10, celeb news, and more! + +#amberheard #destroyherowncareer #amber #trendcraze",3.0,41.0,,,,,,35.0,1.0,0.0,2.0,did amber heard literally destroy her own career!?,,,,,,,,,, +597,https://www.youtube.com/watch?v=dR-xDT3Qduc,0,0,{'Come Geek Some'},1,youtube,video,original video,"join this channel to get access to perks: +https://www.youtube.com/channel/uc4ltvxoxgzobqqduv9ixowg/join + +current channel members +sunshine +ali bali +penguin 322 +jane durante +sabine möller +videnthecoldone +leah veneau +hanne lærke sommer +morning tea +juanita schutte +jennifer willis +lisa lambert +susan redden +cat meissner +broly the mighty +humble bee +sarah wells +christine b-r +zombqueeen +tammy lockley +michieee +stephanie davis +bonnieb +janette tammaro +wendy postma +maureen kinross +deborah melendy +roamer mgtow +madamebebo +claire jones +mary scott +adriana adams +sarah kat +patti_c +steve kass +john le +kimmhy depp +night train blues +harbenja +l c +gelth walker +laura uk +judith hodgson +lifeofsarcasm +clairmbear +moxxie moon +anne holyday +k. kae-linn allison +megan o'shea +sylvan + +hello and welcome to come geek some! for all things geek, like and subscribe to the channel! + +please ignore or flag spam, negative, or hateful comments. we're here to have a good time. thanks everyone, and enjoy :] + +if you would like to support the channel and help us grow! +donations: https://streamlabs.com/comegeeksome + +i'm an avid adobe premiere pro user and have been for quite some time! i would recommend the software to anyone (if they have the spare money a month) + +ps4 player with pc gameplay now and again. still not used to pc gaming! + +interact with us on twitter! https://twitter.com/comegeeksome1 +twitch: https://www.twitch.tv/geeksomegaming",455.0,5475.0,,,,,,4932.0,5.0,0.0,83.0,ngn respond to depp appeal! grace randolph wrong again?! msm taking ah side!,,,,,,,,,, +598,https://www.youtube.com/watch?v=1OqUbP9uDpI,0,0,{'3 Buck Theater'},1,youtube,video,original video,"tonight i talked about the following stories + +capitol building riot + +ray fisher vs walter hamada / wb (round 3) + +kevin feige taps michael waldron for his star wars film. the writer and executive producer behind marvel’s upcoming loki series, has nabbed the high-coveted gig. and robert downey jr possibly joining star wars + +amber heard accused of defrauding children's hospital in los angeles from charity donations she promised to give millions after the johnny depp divorce settlement. + +► subscribe: http://youtube.com/3bucktheater?sub_confirmation=1 +► twitch: http://twitch.tv/3bucktheater +► hollywood after dark archives: https://www.youtube.com/channel/ucdp_ziqwvtv4e3hmaae99cw +► facebook: http://facebook.com/groups/3bucktheater +► patreon - http://patreon.com/mattjarbo +► paypal: http://paypal.me/mundanematt +► amazon: https://www.amazon.com/shop/mundanematt +► bitcoin: 1fgxtiykzdskphrln1xewnr3aag2rykhgq +► discord: https://discord.gg/jdjy9zq",62.0,1086.0,,,,,,996.0,16.0,0.0,12.0,new star wars movie! ray fisher versus warner brothers round 3,,,,,,,,,, +599,https://www.youtube.com/watch?v=mJpQUk1kT_8,0,0,{'InformOverload'},1,youtube,video,original video,"meghan markle's family turn on her after oprah interview +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +following the shocking interview, in which oprah winfrey sat down with prince harry and meghan markle, it seems some of meghan’s family have since come forward with claims of their own. if you’ve yet to see or hear about oprah’s interview, the pair didn’t hold back, and spoke on a handful of factors leading to their decision to officially depart from the royal family. these factors included at least one member raising concerns about how dark the skin tone would be of the couple’s first born. there was also the immense pressure from the british media, on top of the pressure they felt just by being associated with the family. all in all, it seems they decided it wasn’t something they wanted their family to be a part of. however, it seems those closest to meghan, her family, had issues with the interview, and have since come forward with claims of their own, in a sense dismissing a lot of what meghan had to say. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#meghanmarkle #princeharry #oprahinterview #oprah #oprahwinfrey #princeharryandmeghan #markle #royalfamily #family #backfired #backlash #royaltea #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 #celebritygossip #influencergossip #celebritytea #influencertea + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +jarred bronstein: http://instagram.com/bronst7 + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +daniela suarez: https://www.instagram.com/danielasuarezphoto/ + + +📱instagram: https://www.instagram.com/informoverload +📱facebook: https://www.facebook.com/informoverload/ +📱twitter: https://twitter.com/informoverload +📱reddit: https://www.reddit.com/user/informoverloadreddit +✉️email | contact: informoverload@gmail.com",2156.0,60346.0,,,,,,57486.0,74.0,0.0,630.0,meghan markle's family turn on her after oprah interview,,,,,,,,,, +600,https://www.youtube.com/watch?v=dZlNKlktxY8,0,0,{'Celebrity Reporter'},1,youtube,video,original video,"amber heard lifestyle 2021 ★ husband, boyfriend, net worth, car & house +- +amber heard is an american actress from texas who has starred in various movies in different and unconventional roles. amber heard was born on april 22, 1986, in austin, texas, united states. she began her acting career with the sports drama ‘friday night lights’ and soon appeared in various small characters. her breakthrough arrived when she was recognized as a supporting actress in several box-office successes, including ‘the pineapple express’ and ‘never back down’. she gained recognition from these movies and soon began to star as the lead actress. +#amber_heard #amber_heard_lifestyle +- + +=disclaimer= +- +this channel may use some copyrighted materials without the specific authorization of the owner but the contents used here falls under the “fair use” copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational, or personal use tips the balance in favor of fair use. +- +thanks for watching. if you like the video. please subscribe to my channel",3.0,301.0,,,,,,296.0,1.0,0.0,1.0,"amber heard lifestyle 2021 ★ husband, boyfriend, net worth, car & house",,,,,,,,,, +601,https://www.youtube.com/watch?v=74WE_PbfAfE,0,0,{'Flixet'},1,youtube,video,original video,"in this video, we will discuss who will be a perfect fit for mera. + +subscribe for more : http://bit.ly/32rc7vi +_________________________________________________ + +amid the controversy surrounding johnny deep and heard's legal battle, the petition to remove the latter from the sequel to aquaman is on its way to reaching 500,000 signatures. what's more, some reports indicate that warner bros. has already fired the actress by buying out her contract, but until confirmation comes from the studio themselves. watch this video till the end as we will be discussing who will fit mera in aquaman 2 ? is it amber heard or emilia clarke? + + + +music in this video : + +track: odessa — liqwyd & scandinavianz +music provided by audio library plus +watch: https://youtu.be/jny-dp3lgcg",21.0,389.0,,,,,,357.0,2.0,0.0,9.0,amber heard vs emilia clarke | who will be fit as mera in aquaman 2,,,,,,,,,, +602,https://www.youtube.com/watch?v=B9axyiBZL2Y,0,0,{'Doctor Soup'},1,youtube,video,original video,#amberheard #justiceforjohnnydepp #shelbysoup,524.0,6732.0,,,,,,6093.0,10.0,0.0,105.0,bad news for amber! heard owned by depp's lawyer!,,,,,,,,,, +603,https://www.youtube.com/watch?v=5cVT57MsfBg,0,0,{'Stevie J Raw'},1,youtube,video,original video,"full statement where io tillett wright lies for amber heard and simply states what amber heard old io to say about johnny depp in the uk trial of johnny depp vs ngn ( amber heard ) + +amber heard is a liar!! + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join + +tubebuddy - https://www.tubebuddy.com/steviejreviews + +art of elysium donation page - https://www.pledge.to/the-art-of-elysium + +justice for johnny depp t-shirts (proceeds go to charity): +design 1 - https://t.co/uycndh9ebj?amp=1 +design 2 - https://t.co/hdmq0wicke?amp=1 +design 3 - https://t.co/lqmeoidmje?amp=1 +design 4 - https://t.co/lkteqqdxhg?amp=1 + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#justiceforjohnnydepp #iotillettwright #amberheardisaliar",373.0,4556.0,,,,,,3967.0,7.0,0.0,209.0,io tillett wright lies for amber heard!,,,,,,,,,, +604,https://www.youtube.com/watch?v=L-3o0KBp4ow,0,0,{'Current News'},1,youtube,video,original video,"actress amber heard trended on twitter on sunday, feb. 28, amid reports she’s been fired from aquaman 2, a forthcoming superhero film in the dc extended universe. many of those sketchy reports also claimed that game of thrones alum emilia clarke would replace amber as mera in the sequel. but take those trending stories with a grain of salt — or a drop of saltwater, as the case may be. article continues below advertisementwas amber heard fired from 'aquaman 2'? rumors claim she broke a fitness clause. a sausage roll report claims amber is being let go because of fitness concerns and not because of her legal drama with johnny depp — the same drama that forced johnny, amber’s ex, out of the next fantastic beasts installment. source: getty imagesarticle continues below advertisement“there is a clause in her contract which says she is required to be in good form ahead of shooting, and she violated that,” a source told the site. on twitter, user @raidersmera reacted to that chatter, writing, “so amber heard got fired because she gained weight? gtf out of here.”emilia clarke is rumored to be replacing amber heard as mera in 'aquaman 2.'alongside the rumors of amber’s ouster from aquaman 2 are reports that emilia is succeeding her in the role as mera. a forbes contributor who reported on the game of thrones star’s venice, calif., real estate listing in december 2020 mentioned that the actress had “signed on to replace amber heard as mera in aquaman 2.”article continues below advertisementsource: instagramsome fans of the franchise gave that prospect their seal of approval. “if emilia clarke doesn’t replace amber heard in aquaman 2, then i will be extremely disappointed,” one wrote on twitter. another fan tweeted, “i really hope the news [that] amber heard [is] out of aquaman 2 and emilia clarke is in is true. but i’m not holding my breath.”article continues below advertisementsome sources are casting doubt on rumors that amber heard was fired from 'aquaman 2.'ryan parker, a senior staff writer for the hollywood reporter, tweeted on sunday that he’s been “told by a reliable source that reports of amber heard being fired off aquaman 2 are inaccurate.”we got this covered, meanwhile, says that amber’s rumored firing “doesn’t appear to be the case” and that the reports of emilia taking over the role have “no basis in truth.”amber heard said she was “excited” to film 'aquaman 2.'source: giphydespite mixed reviews, 2018’s aquaman netted $335 million in the united states and $1.1 billion worldwide, making it not just the dc extended universe’s top-grossing film but the top-earning dc film of all time, according to deadline. and in february 2019, warner bros. selected dec. 16, 2022, as the release date for aquaman 2. in a november 2020 interview with entertainment weekly, amber said she would return for the sequel. + + +all data is taken from the source: http://distractify.com +article link: https://www.distractify.com/p/amber-heard-fired-from-aquaman-2 + + +#amberheard #newsradio #newstodaylocal #newstodayabc #newsworldabc #newstodayusa #",0.0,22.0,,,,,,22.0,0.0,0.0,0.0,rumor has it amber heard was fired from ‘aquaman 2’ — but is it true,,,,,,,,,, +605,https://www.youtube.com/watch?v=c05Q5H0qjiw,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard's worst fear is here as everything falls apart! + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",4439.0,76257.0,,,,,,71287.0,24.0,0.0,507.0,amber heard's worst fear is here as her everything falls apart!,,,,,,,,,, +606,https://www.youtube.com/watch?v=HKGS72aXQec,0,0,{'Come Geek Some'},1,youtube,video,original video,"wgtc say more lies if it helps them or heard! + +wgtc is a movie ""news"" website, which mostly spits out false lies/rumours. over the last few months, we have seen them rally with heard and go against anything positive that may include johnny depp. + +now, this video is about the harry potter franchise (which depp was once involved with) and this shows the things they write are only for them to gain from. + +they have a large number of ""journalists"" who support heard, which is their choice to do so. however, when they start spinning false news and narratives, it can be harmful. + +join this channel to get access to perks: +https://www.youtube.com/channel/uc4ltvxoxgzobqqduv9ixowg/join + +current channel members +jodie galloway +lizz gordon +ghetto tv +scandi on a mission +agnes maccallum +flying without fear +ann-christin mortensen +caroline +tammytalksabout +aleksandra jarosz +lena stensgaard +tina flowers +dawn curry +truebliu nineleven +haley angie +loralie dee +ann brown +horae of peace +jasmine t. redfeather +amanda grout +emma p +nicole turner +enceladuswaters +dísa maria helgudóttir +georgina campbell +marianne erni +irene maiden +zara zohl +laura uk +mary scott +megan o'shea +johnny's girl +claire flavin-jones +lynn bain +jane ruddell +donald dolan +mary turpel +ahyoka ama +sally pascoe +shelley tennant +sunshine +ali bali +penguin 322 +jane durante +sabine möller +videnthecoldone +leah veneau +hanne lærke sommer +morning tea +juanita schutte +jennifer willis +lisa lambert +susan redden +cat meissner +broly the mighty +humble bee +sarah wells +christine b-r +zombqueeen +tammy lockley +michieee +stephanie davis +bonnieb +janette tammaro +wendy postma +maureen kinross +deborah melendy +roamer mgtow +madamebebo +claire jones +mary scott +adriana adams +sarah kat +patti_c +steve kass +john le +kimmhy depp +night train blues +harbenja +l c +gelth walker +laura uk +judith hodgson +lifeofsarcasm +clairmbear +moxxie moon +anne holyday +k. kae-linn allison +megan o'shea +sylvan + +hello and welcome to come geek some! for all things geek, like and subscribe to the channel! + +please ignore or flag spam, negative, or hateful comments. we're here to have a good time. thanks everyone, and enjoy :] + +if you would like to support the channel and help us grow! +donations: https://streamlabs.com/comegeeksome + +i'm an avid adobe premiere pro user and have been for quite some time! i would recommend the software to anyone (if they have the spare money a month) + +ps4 player with pc gameplay now and again. still not used to pc gaming! + +interact with us on twitter! https://twitter.com/comegeeksome1 +twitch: https://www.twitch.tv/geeksomegaming + +#harrypotter #fantasticbeasts #amberheard",365.0,3428.0,,,,,,3019.0,1.0,0.0,43.0,wgtc say more lies if it helps them or heard!,,,,,,,,,, +607,https://www.youtube.com/watch?v=8y4h4LLUS2k,0,0,{'FAMOZOS'},1,youtube,video,original video,"warner eliminará a amber heard de aquaman 2 (la verdad) + +►síguenos en facebook: https://www.facebook.com/famozos-110214627574526 + +►para más noticias: https://www.youtube.com/channel/ucw2txsxmhj4ye1my8dir3zw",353.0,7841.0,,,,,,7386.0,22.0,0.0,80.0,warner eliminará a amber heard de aquaman 2 (la verdad),,,,,,,,,, +608,https://www.youtube.com/watch?v=GXDjwVlB1ZY,0,0,{'Caught On Camera'},1,youtube,video,original video,"amber heard faces 10 years in prison for false accusations against johnny depp! + +amber heard and johnny depp have been in some ongoing drama as these two have not had a great time together. apparently this relationship between amber heard and johnny depp deeper than most breakups. its safe to say that one of the two are lying about the others actions, but the fans of amber heard and johnny depp dont know what to believe. + +what the channel is about : +caught on camera features some of the most popular celebrities whether they are from tv shows, movies, or just famous internet celebrities. the celebrities that are most frequently posted on this channel are mrbeast, ellen, charli d'amelio, billie eilish, jojo siwa, and many more! if you want to hear about all of the things happening in the celebrity world make sure to like and subscribe!",171.0,6476.0,,,,,,6246.0,19.0,0.0,40.0,amber heard faces 10 years in prison for accusations against johnny depp!,,,,,,,,,, +609,https://www.youtube.com/watch?v=fDW-sqNiCQQ,0,0,{'TUBE RADIO'},1,youtube,video,original video,"#enteratecontuberadio #tuberadio #noticias +https://www.youtube.com/channel/ucmrh... +twitter: https://twitter.com/tuberadio985 +instagram: https://www.instagram.com/tuberadio/ +¡no olvides compartir esta publicación en tu muro de facebook y con tus seguidores de twitter",4733.0,80515.0,,,,,,75319.0,89.0,0.0,374.0,"nuevo green arrow, andrew garfield en spiderman, amber heard aquaman 2, godzilla vs kong reacciones",,,,,,,,,, +610,https://www.youtube.com/watch?v=YXzdaV099VM,0,0,{'OMG Blast'},1,youtube,video,original video,"celebrities react to johnny depp and amber heard +if you’re looking for events that can very much dominate 2021 in terms of celebrity stories, the continued battle between johnny depp and amber heard is a perfect place to start. because the defamation and libel lawsuits that have been cast are growing in their strength and their insanity in various ways. the celebrity world as a whole is trying to make things make sense with these two and thus there have been many reactions to what has and hasn’t happened. we’ll show you some of the reactions. be sure to like the video and subscribe to the channel! + +like this video and subscribe or for 7 years good luck + +i do not take any ownership of the music displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes only. + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter and instagram under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: https://support.google.com/youtube/an...",59.0,2219.0,,,,,,2139.0,3.0,0.0,18.0,celebrities react to johnny depp and amber heard,,,,,,,,,, +611,https://www.youtube.com/watch?v=NYussfTGQzo,0,0,{'Costume CO'},1,youtube,video,original video,"the stand is an american dark fantasy streaming television miniseries, based on the 1978 novel of the same name by stephen king. in this episode, i interview series costume designer angelina kekich. warning, some *spoilers* for episodes 1-5. + +chapters: +0:00 skip into to +0:35 angelina's costume background +6:51 the stand costumes inspiration +13:12 boulder vs vegas costumes +24:28 dressing mother abigail / whoopi goldberg +33:41 randall flagg / alexandar skarsgard +42:33 julie lawry / katherine mcnamara +45:51 nick and tom cullen +51:21 rat woman + +⚬the stand is now streaming on cbs all access. +⚬all artist boards courtesy of angelina kekich. +⚬all other artwork and photos courtesy of cbs. most still photos by robert falconer/cbs ©2020 cbs interactive, inc. +⚬angelina kekich's website: https://www.angelinakekich.com/ +follow her on instagram: https://www.instagram.com/angelinakekich/ + +learn more about angelina: +costume designer angelina kekich has contributed her skills to a variety of television series and feature films over the last two decades. her most recent work can be seen in the upcoming limited series the stand, premiering december 17 on cbs all access. a tv adaptation of stephen king’s 1978 novel, the series stars james marsden, whoopi goldberg, alexander skarsgard, amber heard, greg kinnear and ezra miller. + +kekich also costume designed the pilot of syfy’s resident alien, premiering jan. 27, 2021. starring alan tudyk and executive produced by amblin tv, the dramedy series is based on the dark horse comic of the same name. + +prior to the stand, kekich had the honor of working on stevens spielberg’s sci-fi series falling skies for four years. kekich brought spielberg’s vision to life through post-apocalyptic costumes, alien costumes and futuristic sci-fi fantasy wardrobe for the show’s stars: noah wyle, will patton and moon bloodgood. + +kekich also designed fox’s human target; lifetime’s blood ties; cbs tv studio’s zoo and warner premiere’s lost boys: the tribe. her film credits further include sony picture’s 30 days of night: dark days and center stage: turn it up. kekich has also created designs for various productions for the cw and dreamworks. + +kekich was born on vancouver island british columbia where she was raised in a first-generation croatian family. she is an alumni of the renowned ryerson university where she earned a bachelors in fashion communication and design. she also earned a masters in fine arts with a specialization in costume design for theatre and film from the university of british columbia. + +thank you to stephanie pfingsten and regan simonson, lumos pr. + +technical producer: jack loney + +affiliate links: +shop merch at my amazon costume shop: https://www.amazon.com/shop/costumeco + +non-affiliate links: +⚬ shop costume co merch: teespring.com/stores/costume-co-merch-4 +⚬ join our game of thrones analysis facebook group: https://www.facebook.com/groups/28446... +⚬ send me your artwork or cosplay: heidi(at)heidiloney(dot)com + +find me on social media: +⚬twitter: https://twitter.com/costumecinemato +⚬facebook: https://www.facebook.com/costumecoyoutube + +all music by epidemic sound.",26.0,757.0,,,,,,722.0,0.0,0.0,9.0,stephen king’s the stand: costume designer interview,,,,,,,,,, +612,https://www.youtube.com/watch?v=NYjNLktP3lI,0,0,{'SEC'},1,youtube,video,original video,"https://www.dailymail.co.uk/news/article-9474979/johnny-depp-says-police-bodycam-footage-proves-amber-heard-lying.html + +join this channel to get access to perks: +https://www.youtube.com/channel/ucseatdlh3kfgl17dnarfw2g/join + +tip jar ~ tips and donations are not expected but greatly appreciated. +https://paypal.me/lesleepowers + + +➤twitter + https://twitter.com/spirituallyemp1 + +➤for one on one coaching with me + https://bookwithspirituallyempoweredcoaching.as.me/ + +➤email me +support@empowerandthrive.ca + +➤ instagram +www.instagram.com/spiritually_empowered/ + +#justiceforjohnnydepp",1216.0,21059.0,,,,,,19425.0,10.0,0.0,408.0,bodycam footage proves amber lied!!,,,,,,,,,, +613,https://www.youtube.com/watch?v=Xng-q_sVV4U,0,0,{'Zack Peter'},1,youtube,video,original video,"plausible or total fan fiction? + +listen to the #nofilter podcast: https://apple.co/35rqh6u +listen to the #adulting podcast: https://apple.co/36ulc8y + +keep up (like a kardashian): http://justplainzack.com +instagram: http://instagram.com/justplainzack +twitter: http://twitter.com/justplainzack",159.0,5295.0,,,,,,4935.0,36.0,0.0,165.0,is amber heard involved in plot against marilyn manson?,,,,,,,,,, +614,https://www.youtube.com/watch?v=s6jkZ1Bh0Yw,0,0,{'FOX8 WGHP'},1,youtube,video,original video,baby found after amber alert,18.0,1337.0,,,,,,1318.0,0.0,0.0,1.0,baby found after amber alert,,,,,,,,,, +615,https://www.youtube.com/watch?v=toLmIt71chI,0,0,{'Flash News'},1,youtube,video,original video,"when you subscribe we will use the information you provide to send you these newsletters. sometimes they’ll include recommendations for other related newsletters or services we offer. ourprivacy noticeexplains more about how we use your data, and your rights. you can unsubscribe at any time. invalid emailsomething went wrong, please try again later. amber heard has been hit with rumours she's been fired from aquaman 2 and replaced by another famous actress. the rum diaries star, 34, ""did not pass her physical examination"" for the role and therefore ""violated"" her contract, according to australian website sausage roll and youtube channel popcorned planet. it comes as a change.org petition to have amber fired from the film has now been signed by 1.8 million people. she is tipped to be replaced by game of thrones actress emilia clarke. a source told sausage roll: ""amber heard did not pass her physical examination.""they added: ""there is a clause in her contract which says she is required to be in good form ahead of shooting and she violated that.""amber heard in aquaman(image: sunday mirror)the rumours claim amber will be replaced by emilia clarke(image: dave benett/getty images)amber played mera, wife of the dc comics superhero aquaman, in the first film. back in december, forbes claimed amber had been dropped from the sequel, with emilia being lined-up to replace her. warner bros. is yet to comment on the speculation publicly. but warner bros. insider daniel richtman told we got this covered that the replacement rumour has ""no basis in truth"". the mirror has contacted reps for amber heard and emilia clarke, as well as warner bros. for comment. amber and her ex-husband johnny depp(image: getty images)amber has been the subject of online abuse after her ex-husband johnny depp, 57, lost his libel case over an article in the sun calling him a ""wife beater"". depp has denied he was abusive toward amber and accused his ex-wife of being violent during their relationship, which amber also denies. the libel trial saw johnny and amber shed light on their relationship at london's high court amid the backdrop of the ongoing pandemic. emilia in game of thrones as daenerys targaryen with kit harington as jon snow(image: 2019 home box office)mr justice nicol ruled that depp assaulted amber on a dozen occasions and put her in ""fear for her life"" three times. the judge said the sun calling the pirates of the caribbean actor a ""wife beater"" was ""substantially true"" according to the civil standard. after the trial concluded, johnny was asked to resign from his role in the third fantastic beasts film. depp is now challenging that ruling and his application for permission to appeal against it will be heard in march. johnny depp outside court in july(image: getty images)the actor claims he ""did not receive a fair trial"" after the judge ruled against him. + + +all data is taken from the source: http://mirror.co.uk +article link: https://www.mirror.co.uk/3am/celebrity-news/amber-heard-hit-rumours-shes-23581743 + + +#amberheard #news24 #usnewsworldreport#newstodayworld #usanewstoday #bbcworldnewstoday #",0.0,14.0,,,,,,14.0,0.0,0.0,0.0,amber heard hit by rumours she's been 'fired from aquaman 2',,,,,,,,,, +616,https://www.youtube.com/watch?v=guA6QMGKZU8,0,0,{'Colonel Kurtz'},1,youtube,video,original video,"i explain the johnny depp / amber heard controversy and allegations, starting at the beginning of it all from their initial meeting years ago to the upcoming trial. amber heard has been in the news recently because she didn't donate any money to charity (aclu and children's hospital) even though she promised to donate her $7 million divorce settlement that she received from johnny depp. + +this video is like cliff's notes and there's lots i had to leave out to keep this under twenty minutes (such as the dog smuggling, allegations/evidence of amber cheating on johnny, the staged cell phone incident with rocky and io, amber's mysterious disappearing bruises that many claim she faked, and of course her failure to pay the money she said she donated to charity). + +there's so much more to discuss, so i've uploaded a second video with additional analysis at https://www.youtube.com/watch?v=tp_xhpk6okc + +i forgot to add the picture of amber doing her walk of shame outside court, so here it is. as i said, this ""bruise"" mysteriously disappeared in other photos around the same time, damaging her credibility: https://www.eonline.com/news/768562/amber-heard-leaves-court-visibly-bruised-after-judge-grants-johnny-depp-restraining-order + +please click like and subscribe. i plan to start putting out videos on depp vs. heard and other interesting topics. my other videos have photos and interview clips. + +for more details on the controversy, see the videos of incredibly average (brian mcpherson) here: https://www.youtube.com/channel/ucg0c-n_mpyyoxyf4t3jmxnq + +i'm not monetized yet on youtube, but here's my patreon if you want to tip. not required or expected :) https://www.patreon.com/colonelkurtz​",420.0,6156.0,,,,,,5630.0,4.0,0.0,102.0,johnny depp amber heard controversy explained in twenty minutes,,,,,,,,,, +617,https://www.youtube.com/watch?v=gHRnMg5utYU,0,0,{'The Amber Heard Playlist!!'},1,youtube,video,original video,https://www.youtube.com/watch?v=3ftrumt-ka8&t=5s,,,,,,,,57.0,,0.0,,mandatory!! the johnny depp creed!! dedicated to drawitoutlady (the amber heard playlist!!),,,,,,,,,, +618,https://www.youtube.com/watch?v=BKPZcUAhKhs,0,0,{'Film Streak'},1,youtube,video,original video,"""i went too far"" amber heard apologises to johnny depp (ig live video)! +so, amber heard might finally have realised how far she has gone. she went as far as to target johnnys kids and emotionally blackmail them! however, after doing this amber heard might very well have realised just how far over the line she has gone and how many other people she have undermined trying to get what she wanted. and it is not only other people who have been affected but her own career. so, has amber finally started realising the mess that she is in? well, an apology video might very answer that question for us! so stick to the end of the video to see exactly what amber heard said and did! lets get started! + +here on film streak we are all about the latest spill in hollywood! you can rest assure that we will bring you all the latest celebrity drama and gossip especially concerning you favorite actors! we´ll also make sure to keep you updated on the newest movie updates and releases – so if you are interested in anything that happens in hollywood, you should make sure to stay tuned! + +and there you have it guys! we hope you enjoyed the video! if you did please consider leaving a like and telling us what you though in the comments! + +here are some links to some of our other videos that you might find interesting as well: +""forgive me"" justin bieber apologies to haily bieber (ig live video): https://www.youtube.com/watch?v=u-m_q7fs91i +emilia clarke reaction before replacing amber heard in aquaman 2! https://www.youtube.com/watch?v=pyxp9wxhuww +johnny depp officially rehired | back in a new pirates of the caribbean 6 movie? https://www.youtube.com/watch?v=utozmdfngvk +elon musk speaks against amber heard & defends johnny depp! +https://www.youtube.com/watch?v=woo2bftrrl4 + +so, if you are interested in anything related to hollywood, make sure to smash that subscribe button to see more of our content in the future! 🎬 https://bit.ly/3kzplqd + +#amberheardapology #justiceforjohnny #johnnydepp #filmstreak",2459.0,267734.0,,,,,,263441.0,1014.0,0.0,820.0,"""i went too far"" amber heard apologises to johnny depp (ig live video)",,,,,,,,,, +619,https://www.youtube.com/watch?v=DZRpGRll4c4,0,0,{'Doctor Soup'},1,youtube,video,original video,"#justiceforjohnnydepp + +amber heard and johnny depp continue to go at it. we all know the true perpetrator, depp is innocent, heard not. learn more in this video. + + + +twitter: iamdrsoup +other awesome channels: +sec +stevie j raw +come geek some +lost beyond pluto",308.0,3033.0,,,,,,2686.0,5.0,0.0,34.0,amber heard is losing in court?!; johnny depp's lawyer is amazing!,,,,,,,,,, +620,https://www.youtube.com/watch?v=ynFtsyqlYD0,0,0,{'Mr H Reviews'},1,youtube,video,original video,"amber heard mera replaced by emilia clarke revealed by forbes + + + + +so forbes wrote an article on emilia clarke selling her home and within that article, they also stated that she has replaced amber heard in aquaman 2.... they have not retracted the article, they have not corrected the article, are they revealing something we dont know? + + + +my website - https://www.productionhfilms.com/ + +production h films socials - +https://twitter.com/hstudiofilm +https://www.instagram.com/productionhfilms/ + +#aquaman #dceu #amberheard + +teespring - https://teespring.com/en-gb/stores/mr-h-reviews + +amazon affiliate link - https://amzn.to/2hljfzh + +those wanting to become a patron - https://www.patreon.com/mrhreviews + +follow me on twitter to interact with me and suggest future videos - https://twitter.com/mrhreviews + +for business and general inquiries - mrhreviews@gmail.com",1455.0,16435.0,,,,,,14580.0,26.0,0.0,374.0,amber heard mera replaced by emilia clarke revealed by forbes,,,,,,,,,, +621,https://www.youtube.com/watch?v=VbNCYZmqr00,0,0,{'Incredibly Incredible'},1,youtube,video,original video,"this video is a clip which was excluded from the cut-up, edited and leaked recording by johnny depp’s team in january. the full version was recorded by johnny depp and amber heard during their marriage (september 2015). the full recording is being used as evidence in the johnny depp v the sun uk libel case. depp decided to sue the sun for publishing an article where they brand him a ‘wife-beater’, for abusing his then wife, amber heard. + +when the cut-up/edited 46 minute version leaked in january by depp’s team, it was made to portray a certain narrative and was used as propaganda. it was leaked 6 months before the trial began and used to lead people and potential jurors to believe that it was somehow an official piece of evidence, which it was not. it was incomplete. + +if you’d like to read the official case documents, they can be found here: https://www.nickwallis.com/depp-trial + +this recording was obtained through courttv and can be found here: https://www.courttv.com/news/amber-heard-witness-statements-depp-blamed-the-monster-for-physical-verbal-abuse/ + +you can listen to the full recording here: https://youtu.be/k9pbrbmhi58 + +comments are disabled to combat abuse.",,,,,,,,1566.0,,0.0,,johnny depp praises amber heard for being so caring / audio,,,,,,,,,, +622,https://www.youtube.com/watch?v=wOo2BFTRrL4,0,0,{'Film Streak'},1,youtube,video,original video,"more and more celebrities seem to get caught up in the johnny depp and amber heard drama. the latest celebs to get caught up in the ex couples drama is elon musk and cara delevingne who supposedly both had an affair with amber heard (some rumors even said that they have a threesome). however, not much actual proof has been presented in this case and it seems like elon musk might be defending johnny depp even thought he previously might have had an affair with amber heard! + +if you liked this video and want to stay updated on the latest news and drama from hollywood, then you should make sure to leave a like on the video and smash that subscribe button! + +are you all caught up with the johnny depp and amber heard case? with all of this new information, you might not be! if that is the case, you should check out these videos: +johnny depp officially rehired | back in a new pirates of the caribbean 6 movie? https://www.youtube.com/watch?v=utozmdfngvk +""i lied"" amber heard apologies to johnny depp (ig live video): https://www.youtube.com/watch?v=plyxm0ztstg +emilia clarke reaction before replacing amber heard in aquaman 2! https://www.youtube.com/watch?v=pyxp9wxhuww + +#amberheardandelonmusk #justiceforjohnny #caradelevingne #filmstreak",128.0,9220.0,,,,,,9032.0,41.0,0.0,19.0,elon musk speaks against amber heard & defends johnny depp!,,,,,,,,,, +623,https://www.youtube.com/watch?v=k8aBj-9YZlI,0,0,{'Celeb Junkie'},1,youtube,video,original video,"johnny depp vs amber heard: celebrities who defended against her + +everywhere you go, from grocery store checkout lanes to your home with the news on, it won't take long to come across an article or news about the never-ending legal battles between johnny depp and amber heard. and over the year, people became confused about who was telling the truth between them about their case. in today's video, join us as we show you these 10 celebrities who defended johnny depp against amber heard. + +in the previous years, people turned against johnny depp as it was rumored that he was the abusive one in their relationship. but in reality, it's the other way around. in fact, there are a lot of shocking receipts that prove johnny depp is innocent and amber heard is lying. be sure to watch the whole video and see which celebrities defended the actor! in addition, do us a favor and like the video and subscribe and turn on the notification bell. we’ll see you in the next video! + +#amberheard +#johnnydepp +#abuse + +related videos: + +donald trump jr.'s tweet about chris cuomo is turning heads +https://www.youtube.com/watch?v=giq64zmc0jk + +strange things everyone just ignores about meghan markle +https://www.youtube.com/watch?v=-0-gjedrkbo + +the real ellen - the bitter truth behind the daytime icon +https://www.youtube.com/watch?v=_dvag5i55yc + +i do not take any ownership of the music displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes only.",118.0,2987.0,,,,,,2852.0,2.0,0.0,15.0,johnny depp vs amber heard: celebrities who defended against her,,,,,,,,,, +624,https://www.youtube.com/watch?v=um5sD8SVgnY,0,0,{'TheQuartering'},1,youtube,video,original video,"amber heard just made a huge mistake in her lawsuit with johnny depp + +the #1 way to support this channel is backing me on subscribestar +https://www.subscribestar.com/thequartering + +become a youtube member! it's the #2 best way to support! +https://www.youtube.com/channel/ucfwe_odi1ytbdjkzusi1nag/join + +follow me +parler-https://parler.com/profile/thequartering/ +twitter-https://twitter.com/thequartering +discord-https://discord.gg/d3tnuwdvzm +subreddit-http://reddit.com/r/thequartering +politics channel -https://www.youtube.com/channel/uc577sigte1cjpdosladwndw +odysee- https://odysee.com/@thequartering:1 +bitchute- https://www.bitchute.com/channel/1t4g52b7i3ox/",7966.0,93142.0,,,,,,84531.0,67.0,0.0,578.0,amber heard has massive birthday blunder & has epic lawsuit fail!,,,,,,,,,, +625,https://www.youtube.com/watch?v=amngehTilWI,0,0,{'The Amber Ruffin Show'},1,youtube,video,original video,"the amber ruffin show. streaming on peacock https://pck.tv/3poiao8 +reserve your spot in the live studio audience for the amber ruffin show at https://1iota.com/show/1210/the-amber-ruffin-show + +during a recent interview with oprah, duchess meghan markle revealed that she and prince harry were secretly married in their backyard three days before the royal wedding. president biden's $1.9 trillion stimulus bill arrived this week in the house of representatives. plus, tarik got the vaccine! + +show synopsis: amber showcases her signature smart-and-silly take on the news of the week, responding to it all with a charming, late-night mix of seriousness, nonsense, and evening gowns. + +#peacocktv #theamberruffinshow #vaccine",6461.0,132860.0,,,,,,125943.0,87.0,0.0,369.0,"harry & meghan, biden's stimulus, and vaccine superpowers: week in review | the amber ruffin show",,,,,,,,,, +626,https://www.youtube.com/watch?v=7pNmUjY7pjE,0,0,{'Film Streak'},1,youtube,video,original video,"celebrities who spoke up about amber heard's lies! +the case against johnny depp is going on as he tries to go and reclaim his name by fighting against his ex-wife, amber heard, + johnny depp recently lost his libel case against a british newspaper that labeled him a wife-be*ter. the judge in the case ruled that the allegation was substantially true. + it has been a long struggle for him, but he has had various people defending him and talking about him in a positive light. + i will break down the entire list of celebrities who went ahead to show their support for johnny depp and believe in his innocence. +but before that, please make sure you subscribe to this channel and hit the notification bell so that you will always be the first to know when we post a new video. + +here on film streak we are all about the latest spill in hollywood! you can rest assure that we will bring you all the latest celebrity drama and gossip especially concerning you favorite actors! we´ll also make sure to keep you updated on the newest movie updates and releases – so if you are interested in anything that happens in hollywood, you should make sure to stay tuned! + +and there you have it guys! we hope you enjoyed the video! if you did please consider leaving a like and telling us what you though in the comments! + +here are some links to some of our other videos that you might find interesting as well: +""forgive me"" justin bieber apologies to haily bieber (ig live video): https://www.youtube.com/watch?v=u-m_q7fs91i +emilia clarke reaction before replacing amber heard in aquaman 2! https://www.youtube.com/watch?v=pyxp9wxhuww +johnny depp officially rehired | back in a new pirates of the caribbean 6 movie? https://www.youtube.com/watch?v=utozmdfngvk +elon musk speaks against amber heard & defends johnny depp! +https://www.youtube.com/watch?v=woo2bftrrl4 + +so, if you are interested in anything related to hollywood, make sure to smash that subscribe button to see more of our content in the future! 🎬 https://bit.ly/3kzplqd + +#celebritiesonamberheard #amberheardlying #justiceforjohnny #filmstreak",3357.0,129606.0,,,,,,125813.0,61.0,0.0,375.0,celebrities who spoke up about amber heard's lies!,,,,,,,,,, +627,https://www.youtube.com/watch?v=hkOgsftrxBs,0,0,{'Hemi Flix'},1,youtube,video,original video,"amber heard top 10 movies +amber heard + +disclaimer- some contents are used for educational purposes under fair use. copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use. + + +music credit ncs + +track: halcyon & valentina franco - runaway (heuse remix) [ncs release] +music provided by nocopyrightsounds. +watch: https://youtu.be/5bj44xi2oww +free download / stream: http://ncs.io/runawayheuseremix",4.0,808.0,,,,,,798.0,5.0,0.0,1.0,top 10 amber heard movies |top 10 best ever movies |amber heard,,,,,,,,,, +628,https://www.youtube.com/watch?v=KQZeZgIKOXc,0,0,{'Movie Kisses'},1,youtube,video,original video,"amber heard kissing alexander skarsgård from the stand + +amber heard latest kiss +amber heard kiss +amber heard smooch +amber heard love making +amber heard hot",169.0,49907.0,,,,,,49718.0,18.0,0.0,2.0,amber heard kissing scene from the stand | amber heard kiss,,,,,,,,,, +629,https://www.youtube.com/watch?v=oTzuekgCvso,0,0,{'Celebrity Insider'},1,youtube,video,original video,"after already facing ten years in prison for lying under oath in australia, it seems that amber heard is now additionally facing ten years in prison for not donating, but pocketing $7 million dollars which she received from johnny depp and vowed to donate. +it looks like it's a never ending divorce. let's see where this leads us. + +subscribe to our instagram to stay up to date on the run: +instagram: https://www.instagram.com/celebrity23insider/ + +subscribe to celebrity insider on youtube to get the newst stories about the famous and for the funniest, most exciting and bizarre facts about their past.",1412.0,62428.0,,,,,,60634.0,42.0,0.0,340.0,unbelievable: amber heard faces 10 years in prison for pocketing charity donations from johnny depp,,,,,,,,,, +630,https://www.youtube.com/watch?v=4_OjN0Zr_bM,0,0,{'Crazed Culture'},1,youtube,video,original video,"amber heard's assistant kate james officially exposes her for lying... +did amber really stoop so low that she stole another woman's survivor story and used it as her own. amber heard went from being called a hero of the feminists movement to currently one of the most hated women in hollywood. after she wrongfully decided to accuse her former husband johnny depp, very few people doubted her accusations. both fans and celebrities were racing to offer support for amber while at the same time calling for johnny depp to be canceled forever. but over the past few years evidence of amber has piled up and amber has completely lost the support from fans and celebrities she once loved and enjoyed. + +click here to enter the giveaway! +https://www.youtube.com/crazedculture?sub_confirmation=1 + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e + +#johnnydepp #amberheard katejames",1034.0,33408.0,,,,,,32062.0,16.0,0.0,296.0,amber heard's assistant kate james officially exposes her for lying...,,,,,,,,,, +631,https://www.youtube.com/watch?v=W6lcr72P4Ys,0,0,{'Cindy Briden'},1,youtube,video,original video,"there are rumors circulating around various social media outlets that johnny depp is pissed off because his ex-wife, amber heard's. career is taking off while his is failing miserably. also there are rumors saying that heard has been fired from aquaman 2. + +are these stories true or just click bait? please join me as i separate fact from fiction.",0.0,19.0,,,,,,19.0,0.0,0.0,0.0,why is johnny depp so pissed!? is amber heard really fired from aquaman 2?,,,,,,,,,, +632,https://www.youtube.com/watch?v=EpqVMFp-Zh4,0,0,{'999 Tv'},1,youtube,video,original video,"for the past year or so, pirates of the caribbean captain jack sparrow actor, johnny depp, and his ex-wife, amber heard, have gotten more than their fair share of negative press. +following a report that he had allegedly abused heard on multiple occasions, depp filed a lawsuit against u.k. news group newspaper publication, the sun, purporting that he was never the instigator of any domestic violence. he lost the lawsuit in november 2020, but an appeal is expected. +it is worth noting that two of depp’s former parters, winona ryder and vanessa paradis, both supported the actor throughout the libel case. + +depp’s lawyer and the actor himself continue to claim there was never any spousal abuse, while heard and her camp allege that she was held “hostage” in australia during the filming of a pirates of the caribbean movie, among other things. + +depp — whose finger was cut off during an argument at one point in the tumultuous relationship — has been blacklisted by many of the movie studios who previously worked with him. + +walt disney studios has reportedly replaced him with margot robbie in the upcoming pirates of the caribbean 6 project. meanwhile, warner bros.’ harry potter fantastic beasts franchise recast gellert grindelwald with mads mikkelsen (rogue one: a star wars story) after the libel trial ended. + +many of johnny depp’s fans believe that heard should face the same industry backlash. a petition for her to be fired from warner bros.’ film adaptations of dc comics’ aquaman franchise has garnered wide support, with nearly two million signatures. + +now, as yahoo! news shared, heard has reportedly been let go from her role as mera — but not for the reasons you probably think: +at this time, warner bros. has not confirmed heard’s exit from the aquaman 2 movie. per imdb, heard also played mera in zack snyder’s justice league, which recently finished filming. + +for depp’s part, the actor’s best hope for a career revival is likely to be longtime friend and professional partner, tim burton. the director has cast depp in numerous projects over the years. burton is currently working on beetlejuice 2 and an addams family tv adaptation — depp’s name has been connected to both projects.",0.0,20.0,,,,,,20.0,0.0,0.0,0.0,amber heard reportedly fired from ‘aquaman’ for reasons unrelated to depp,,,,,,,,,, +633,https://www.youtube.com/watch?v=YVPyBraRags,0,0,{'The Spotlight'},1,youtube,video,original video,"jason momoa tells the truth on why amber heard was fired from aquaman 2!! + +subscribe to the spotlight 👉 https://bit.ly/3txagy1 + +please support this video by commenting #justicefordepp as well as subscribing and giving the video a like to improve the algorithm on youtube and spread awareness for depp! 🏆 + +watch next: ▶️ + +https://www.youtube.com/watch?v=scxq90o0tqk&t=84s + +https://www.youtube.com/watch?v=gxmh-kctzga + +https://www.youtube.com/watch?v=kj_tymvqcto&t=24s + + +------------------------------------------------------------------------------------------------------- + + +related videos:👇 + +https://www.youtube.com/watch?v=shobyc9vqxm&t=6s + +https://www.youtube.com/watch?v=k-qjirgb3f4 + +https://www.youtube.com/watch?v=pzr2_v4upgi + + +jason momoa is a name that is buzzing and has been buzzing in the world of showbiz for quite some time. in fact, when aquaman was released earlier in the year 2018, he was the only talk of hollywood! + +due to aquaman’s major success, soon after its release, the second sequel to the movie was announced to be premiered in the year 2022. unfortunately, with the me too movement targeting so many a-listers, one of the cast members was accused of being a part of this bandwagon. any guesses on who fell off the wagon and joined in amongst the list of abusers? yes, it was amber heard! + +amber heard has been making headlines regularly for almost 2 years now, especially after her divorce from johnny depp. initially, people assumed her to be the poor victim in the chaotic scenario she had going on with johnny depp. at one point, we were pretty convinced that she was the victim after she posted her pictures of the scars that she had obtained due to being a victim of domestic violence. + +what were amber’s claims? + +amber heard proved to be the biggest victim of the year, with her constant rants on social media as well as her claiming johnny depp to be an evil man with anger issues. she kept throwing out lies until one day depp was forced to sue her, hence causing the famous chaotic court case to make repeated headlines. + +how did ambers claims backfire? + +johnny depp was proven innocent to his ex-wife’s claims after a leaked conversation between the two was released, proving that in fact, it was johnny depp who was being victimized. this surely didn’t save the mess he was in but made the likes of big platforms such as disney apologize to him for believing the allegations. + +how did this news worsen? + +the me too movement was trending and each day a new celeb was being called out for inappropriate behaviour of misconduct with the co-workers, especially the female ones. due to this being embedded in the minds of all, depp was the most likely candidate to get abuser-bashed for his immoral actions. + +due to her alleged accusations, johnny depp’s career was quite miserable. in fact, the production teams that loved working with his massive talent started to reject his role in the movies. and all this was due to the fault of amber and her bunch of lies. imagine not having jack sparrow in the next pirates of the caribbean sequel! + +what’s the big question now? + +what’s racing across everyone’s mind is what does amber heard’s co-star, jason momoa, have to say about this? + +as you may be aware, warner bros just like all other entertainment entities, have the contents of the contract that they sign with the actors, strictly specifying them to follow privacy protocols, leaving the actors with little to nothing left to say about what goes on with the production of their movie as well as any other activities that take place under the roof of the warner bros. + +jason momoa has been adhering to the protocol and has not stated anything about the scandal his co-star was involved in. it shows that he doesn’t care about this blow -up or change in the cast, or that he has been asked by warner bros. to keep this situation on the low. + +but, was momoa and heard compatible in real life as much as they seemed on screen? + +rumor has it that the momoa and heard were not as compatible as they seemed on the screen. with them being actors from two different worlds, it is sure to be quite a clash in the studios. but others state that they were actually good together since they were complete opposites and that opposites attract. even though they seem great together on the red carpet, always having fun, the truth behind this fact is still left unknown! + +would momoa’s word and stance on this scenario change the fate of who plays the role of mera? + +most probably, yes. without jason, there is no aquaman. in fact, the entire success behind aquaman was 90% due to jason momoa’s efforts in making the storyline as lively. without him, reaching this milestone would have been highly impossible. on a serious note, it’s highly possible that rather than risking their biggest asset, warner bros. would not sacrifice their king for the sake of amber! + +#amberheardfired #jasonmomoa #aquaman2 #justicefordepp #johnnydepp #deppandheard #depp",7098.0,347138.0,,,,,,337272.0,1795.0,0.0,973.0,jason momoa tells the truth on why amber heard was fired from aquaman 2!!,,,,,,,,,, +634,https://www.youtube.com/watch?v=ZyroEY-s1NU,0,0,{'The Spotlight'},1,youtube,video,original video,"johnny depp reveals police body cam footage proves amber heard was lying!! + +subscribe to the spotlight 👉 https://bit.ly/3txagy1 + +watch next: ▶️ + +https://www.youtube.com/watch?v=q32tzepkrj4&t=9s + +https://www.youtube.com/watch?v=nk62q2ve1ck&t=121s + +https://www.youtube.com/watch?v=weh7dwgl_xq&t=12s + +------------------------------------------------------------------------------------------------------------------------ + +related videos:👇 + +https://www.youtube.com/watch?v=fpy2urtgdbo + +https://www.youtube.com/watch?v=bkpzcuahkhs + +https://www.youtube.com/watch?v=b9zauwfdvg4&t=5s + + +johnny depp and amber heard were big names of the industry back when they met each other on the sets shooting for “the rum diary “ back in 2011. johnny depp, also lovingly known as the jack sparrow for his impeccable acting in pirates of the caribbean, was 47 and amber was 25 when they fell for each other. depp, being married to vanessa paradis, with whom he had two children, announced his separation from her in 2012. also heard was also known to split up with her partner tasya at the same time. rumors about a budding relationship between depp and amber were speculated around which were intensified after heard had posted an engagement ring on one of her social media accounts. + +in may 2016, amber heard filed for divorce from johnny depp. she alleged that depp used to physically abuse her during their relationship. she also quoted that during such an incident, depp had thrown his phone at her face, leaving severe bruises. he was also alleged to smash things all around the place in their apartment that night. there were negotiations and finally they reached a $7 million settlement as heard withdrew her domestic violence accusation. later, according to heard, she donated the money to charity as she wasn’t comfortable with it, holding the money of a domestic abuser. + +they simply said that throughout their relationships, depp has never been violent with them. depp claimed that heard was having an affair with elon musk also at the same time. depp has also alleged that heard hit him which she denied. heard, in response, said that she had received death warnings from depp several times. the trial continued in many hearings. depp was denied to appeal against the ruling two times in a row. during the evidence given at the application hearing, depp's team said that they had not received a fair trial and presented ""fresh evidence"" that alleged heard lied about donating her full $7 million divorce settlement to charity. depp's team andrew caldecott told the that heard's claim about the donation was a lie that ""tipped the scales against mr. depp from the very beginning,"" + +depp’s team claim that the false depictions of rampage which included red wine splashed over the place, a huge mess of broken glasses, and shabby walls of the penthouse are completely opposite to what the police quote. that night 4 lapd officers visited the couple’s royal penthouse when heard’s friends mistakenly dialed 911 twice within a span of two hours. the first officers who reported at the spot within 15 minutes of the assault were tyler hadden and melissa saenz. melissa saenz is a domestic violence expert. + +asked by depp's attorney, if she remembered spotting anything resembling the damage depicted in heard's photos during her inspection, melissa confidently replied: 'i did not.'hadden was of the same opinion as melissa regarding the incident. + +despite one of heard’s friends claiming to have cleaned the place between the two police visits but he was quite sure that there was a big stain of the wine in the hallway. depp’s team says that it is impossible that two sets of cops can miss the large red wine stains and abides by his saying that heard has been lying throughout. +with heard and her partners having multiple times referred to this incident and tipping the judgment of the in their favor, this simply seems to be manipulating the with lies and false witnesses after seeing the clip. + +this controversy has dented depp’s image in the industry, he has already lost his role in the movie ‘fantastic beasts 3”. he also has to pay a hefty price to the ones he is fighting against after the jury decided against him in . but surely this news is important in the context of the case. this can change the outcome of the case as heard can be easily accused of misleading the case and falsely accusing depp of abuse. this case is getting more and more intense with time. me too movement +clevver news johnny depp amber heard amber heard aquaman 2 theumbrellaguy jason momoa aquaman 2 thishappened viral vision johnny depp appeal yellowflash 2 informoverload information overload + +#amberheard #johnnydepp #amberheardfootage #johnnydeppfootage #justicefordepp #justiceforjohnnydepp #amberheardexposed #amberheardaudio #jasonmomoa #aquaman2 #thespotlight #depp #heard #johnnydeppappeal #johnnydeppcase #amberheardcase",134.0,3730.0,,,,,,3564.0,7.0,0.0,25.0,police body cam footage proves amber heard was lying!! (uncensored),,,,,,,,,, +635,https://www.youtube.com/watch?v=jWqHBv9IXI4,0,0,{'8 PM'},1,youtube,video,original video,"is amber heard going to sue us?!? | 8pm + + +when we arrived at our usual tesla charging spot, we thought it was just like any other day..boy were we wrong. in this 8 pm story time exclusive we give you the play by play of what went down when we saw amber herd! + +instagram: https://www.instagram.com/8pm.tube/",4028.0,80470.0,,,,,,75032.0,132.0,0.0,1278.0,is amber heard going to sue us?!? | 8pm,,,,,,,,,, +636,https://www.youtube.com/watch?v=umSGT0ITDhI,0,0,{'Larsavision Tv'},1,youtube,video,original video,"los rumores sobre la posible salida de amber heard de 'aquaman 2' continúan. tras publicarse que warner podría haberla despedido por incumplimiento de contrato debido no estar en buena forma física, sale a la luz que, supuestamente, warner presionó a la actriz para que abandonase la secuela del superhéroe marino protagonizada por jason momoa.",1.0,24.0,,,,,,23.0,0.0,0.0,0.0,¿amber heard no era querida por warner por sus escándalos con johnny depp?,,,,,,,,,, +637,https://www.youtube.com/watch?v=hPihNkaO61g,0,0,{'Fsᴛʀ Bᴇᴀᴛ'},1,youtube,video,original video,"#amberheardstatus +#johnydepstatus +#norafatehi +#tseries + +#chhordenge + +copyright disclaimer under section 107 of the copyright act 1976, allowance is made for fair use for purposes such as entertainment, criticism, comment, news reporting, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favour of fair use. + + + + +##fstrbeat +#chhordenge​ +#chhor_denge_status​ +#chhor_denge_whatsapp_status​ +#chhor_denge_song_status​ +#chhor_denge_song_whatsapp_status​ +#chhor_denge_song​ +#chhor_denge_fullscreen_whatsapp_status​ +#chhor_denge_fullscreen_status​ +#chor_denge_fullscreen_status​ +#chod_denge_status​ +#chod_denge_song​ +#chor_denge_status​ +#paramparatandon​ +#parampara_tandon_song​ +#norafatehi​ +#nora_fatehi_song​ +#nora_fatehi_status​ +#fullscreenstatus​ +#fullscreenstatus​ +#attitudestatus​ +#girl_attitude_status​ +#blackscreenstatus​ +#sadstatus​ +#revenge​ +#sadsong",4.0,55.0,,,,,,50.0,0.0,0.0,1.0,chhor denge status 🤩|| mera from aquarium || amber heard american actress🤩🤩❤️❤️|| amber heard status,,,,,,,,,, +638,https://www.youtube.com/watch?v=KRL3B9d7J9U,0,0,{'TheQuartering'},1,youtube,video,original video,"looks like johnny depp has finally proven something really bad about amber heard! install raid for free ✅ mobile and pc: https://clik.cc/0lrol and get a special starter pack 💥 available only for the next 30 days! + + + +support the channel directly! (super helpful) +https://www.youtube.com/channel/ucfwe_odi1ytbdjkzusi1nag/join + +follow me +twitch-https://www.twitch.tv/thequartering +parler-https://parler.com/profile/thequartering/ +twitter-https://twitter.com/thequartering +discord-https://discord.gg/pqvtwa2vvm +subreddit-http://reddit.com/r/thequartering +politics channel -https://www.youtube.com/channel/uc577sigte1cjpdosladwndw",11925.0,111519.0,,,,,,98155.0,199.0,0.0,1240.0,holy moly! johnny depp proves amber heard never donated the money she promised!,,,,,,,,,, +639,https://www.youtube.com/watch?v=H0sk-spyiBM,0,0,{'eHacker'},1,youtube,video,original video,"piers morgan slammed johnny depp and amber heard back in 2020! +check out channel membership if you are keen to support the channel! +new members get their names in the credits! + +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods + +for those interested in why i dislike and criticise disney star wars (link below): + +https://disneystarwarsisdumb.wordpress.com/",211.0,1870.0,,,,,,1512.0,2.0,0.0,145.0,piers morgan slammed johnny depp and amber heard back in 2020!,,,,,,,,,, +640,https://www.youtube.com/watch?v=RAdSqusT0Os,0,0,{'YellowFlash 2'},1,youtube,video,original video,"looks like the johnny depp trial is about to heat up again! now, elon musk is set to be dragged into court thanks to his ties with amber heard! + +how to support +►check out my store: https://teespring.com/stores/yellowflash-merch +►check out my patreon: https://www.patreon.com/yellowflashcomics + +where to find me +►check out my twitch: https://www.twitch.tv/yellowflashtwo +►follow me on twitter: @yellowflashguy +►follow me on minds: https://www.minds.com/yellowflash/ +►follow me on odysee: https://odysee.com/@yellowflash:8?r=ebxc2ze5cbcuihj7wkc7kcageacisrvk +►follow me on bitchute: https://www.bitchute.com/channel/bwecegsvy8ab/ +►follow me on parler: https://parler.com/profile/yellowflash +#amberheard #johnnydepp #justiceforjohnnydepp",3607.0,105544.0,,,,,,101342.0,57.0,0.0,538.0,johnny depp strikes back! amber heard lands elon musk in the hot seat! snyder cut forgets her!,,,,,,,,,, +641,https://www.youtube.com/watch?v=nhxPpmuABnY,0,0,{'RVW T'},1,youtube,video,original video,#amberheard #whatsappstatus #aquaman #status #mera,121.0,4653.0,,,,,,4511.0,19.0,0.0,2.0,mera ( amber heard ) whatsapp status,,,,,,,,,, +642,https://www.youtube.com/watch?v=wMcd1ywyiWI,0,0,{'Latest Trends'},1,youtube,video,original video,"#amberheard +#news",0.0,16.0,,,,,,16.0,0.0,0.0,0.0,amber heard latest,,,,,,,,,, +643,https://www.youtube.com/watch?v=UM75AvnffEQ,0,0,{'Viral Vision'},1,youtube,video,original video,"johnny depp speaks on amber heard trying to ruin him... +the case that involves amber heard and johnny depp is one that is causing all sorts of problems across many forms of media. but the longer it goes on, the more that it seems that amber heard is losing some serious ground in one form or another. not the least of which is that her credibility is going and getting put through the shredder as more pieces of evidence rise up to challenge her story in certain ways. and her lawyers might actually be doing more harm than good. but how is that possible? we’ll break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + + +the case that involves amber heard and johnny depp is one that is causing all sorts of problems across many forms of media. but the longer it goes on, the more that it seems that amber heard is losing some serious ground in one form or another. not the least of which is that her credibility is going and getting put through the shredder as more pieces of evidence rise up to challenge her story in certain ways. and her lawyers might actually be doing more harm than good. but how is that possible? we’ll break it down for you. be sure to like the video and subscribe to the channel! + + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",2600.0,76345.0,,,,,,72772.0,124.0,0.0,849.0,johnny depp speaks on amber heard trying to ruin him...,,,,,,,,,, +644,https://www.youtube.com/watch?v=aYq5O36RMAw,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard admits to stealing from kids after depp bombshell! she's done! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #johnnydepp #amberheard",5096.0,90066.0,,,,,,84150.0,19.0,0.0,801.0,amber heard admits to stealing from kids after depp bombshell! she's done!,,,,,,,,,, +645,https://www.youtube.com/watch?v=9Zj5WU6uxao,0,0,{'UnBoxPHD'},1,youtube,video,original video,"no surprises here. first it was johnny's legal team. now it's twitters turn. + +#johnnydepp #amberheard #twitter",189.0,5725.0,,,,,,5479.0,1.0,0.0,56.0,amber heard annoys twitter's legal team,,,,,,,,,, +646,https://www.youtube.com/watch?v=bCk2xMs6j8M,0,0,{'Film Streak'},1,youtube,video,original video,"the johnny depp and amber heard court case is still raging on and more information is reaching the news daily! this has also dragged a lot of other celebrities into the case and most of them are taking sides. the vast majority are taking the side of johnny depp against amber heard. some of the biggest celebrities who have publicly defended johnny depp are jason momoa, elon musk, sia and alice cooper! + +here on film streak we are all about the latest spill in hollywood! you can rest assure that we will bring you all the latest celebrity drama and gossip especially concerning you favorite actors! we´ll also make sure to keep you updated on the newest movie updates and releases – so if you are interested in anything that happens in hollywood, you should make sure to stay tuned! + +and there you have it guys! we hope you enjoyed the video! if you did please consider leaving a like and telling us what you though in the comments! + +here are some links to some of our other videos that you might find interesting as well: +johnny depp officially rehired | back in a new pirates of the caribbean 6 movie? https://www.youtube.com/watch?v=utozmdfngvk +elon musk speaks against amber heard & defends johnny depp! +https://www.youtube.com/watch?v=woo2bftrrl4 +""i lied"" amber heard apologies to johnny depp (ig live video): https://www.youtube.com/watch?v=plyxm0ztstg +emilia clarke reaction before replacing amber heard in aquaman 2! https://www.youtube.com/watch?v=pyxp9wxhuww + +so, if you are interested in anything related to hollywood, make sure to smash that subscribe button to see more of our content in the future! 🎬 https://bit.ly/3kzplqd + +#celebritiesdefendingjohnnydepp #johnnydepp #amberheard #filmstreak",25809.0,1265002.0,,,,,,1234085.0,2810.0,0.0,2298.0,"celebrities defending johnny depp against amber heard (elon musk, jason momoa, sia, alice cooper)",,,,,,,,,, +647,https://www.youtube.com/watch?v=LFq6mWnRZTs,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"amber heard takes on the johnny depp fandom... let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +☆other platforms☆ + +•backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + +☆support the channel☆ + +•become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +•if you want to support my channel, please check out my patreon and subscribe star below: + +•patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp",708.0,8752.0,,,,,,7678.0,4.0,0.0,362.0,amber heard aims to take down the johnny depp fandom while attacking fans!,,,,,,,,,, +648,https://www.youtube.com/watch?v=VRp8GKYOoT4,0,0,{'Brief Take'},1,youtube,video,original video,"*spoilers ahead for heartland season 14 episode 1* + +@amber marshall chatted with brief take's leora heilbronn about that huge shocking death in the season 14 opener of @heartland, saying goodbye to graham wardle, her favourite ty & amy scenes, upcoming harley and spartan scenes, being directed by michelle morgan (lou) in episode 9, and much more! + + +#heartland #ambermarshall #iloveheartland",1022.0,56308.0,,,,,,55101.0,20.0,0.0,165.0,amber marshall on heartland season 14 i interview,,,,,,,,,, +649,https://www.youtube.com/watch?v=yhQdEmQHz4Q,0,0,{'Actu Star 9'},1,youtube,video,original video,"actu star 9: merci beaucoup d'avoir regardé! +si vous souhaitez plus de nouvelles, abonnez-vous à la chaîne! +cliquez ici pour inscrire: https://goo.gl/qfdm1x + +guerre contre amber heard : pourquoi johnny depp assigne elon musk en justice",0.0,5.0,,,,,,5.0,0.0,0.0,0.0,guerre contre amber heard : pourquoi johnny depp assigne elon musk en justice,,,,,,,,,, +650,https://www.youtube.com/watch?v=FCJEo-3nxBQ,0,0,{'Scottilicious McFabulous'},1,youtube,video,original video,"major rumour about amber heard being fired from the cast of aquaman 2... lets discuss. + +amber heard saga playlist! all you need to know! https://youtube.com/playlist?list=plwh7zsa4b9be8pdsyj_ezozyaif3dxnfl + +join the notification club on discord for more reliable notifications and updates for when i upload! https://discord.gg/yrfkxrpzyt + +instagram link : https://www.instagram.com/mister_mcfab/ + +outro song credits adam joseph : https://youtu.be/4tyval51ml4 + +#aquaman2 #amberheard #johnnydepp",10.0,68.0,,,,,,50.0,1.0,0.0,7.0,amber heard fired from aquaman 2? + mocking on twitter!,,,,,,,,,, +651,https://www.youtube.com/watch?v=NaDs70Q0Le8,0,0,{'The nerd Corner'},1,youtube,video,original video,,0.0,3.0,,,,,,3.0,0.0,0.0,0.0,firing of amber heard and superman and lois (spoilers),,,,,,,,,, +652,https://www.youtube.com/watch?v=ZtfL4TC9jM8,0,0,{'InformOverload'},1,youtube,video,original video,"amber heard aquaman 2 drama! mr. potato head cancelled, britney spears father reacts & more news +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +amber heard aquaman 2 drama, mr. potato head gets cancelled, and britney spears father reacts to the recent public outcry regarding the framing britney spears documentary. also if you would like to support jim “mattress mack” mcingvale, check out his gofundme 👉 http://bit.ly/38fmwtq + +00:00 - intro +00:11 - britney spears father reacts +01:21 - cephalopod passes cognitive test +03:32 - mr. potato head cancelled +04:56 - texas storm hero +06:10 - amber heard aquaman 2 drama +08:07 - reading comments +09:14 - bloopers + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#amberheard #aquaman2 #britneyspears #mrpotatohead #cancelled #canceled #cancelculture #tiktok #tiktoks #texas #texaswinterstorm #texasstorm #mattressmack #freebritney #framingbritneyspears #jamiespears #reacts #reaction #morenews #weeklyroundup #weeklynews #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 #celebritygossip #influencergossip #celebritytea #influencertea + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +johnny rogers: https://www.instagram.com/thejohnnyrogers/ +jarred bronstein: http://instagram.com/bronst7 +mackenzie smith: http://instagram.com/mackenziesmitth\ +brie roome: https://www.instagram.com/_brieroome + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +daniela suarez: https://www.instagram.com/danielasuarezphoto/ + + +📱instagram: https://www.instagram.com/informoverload +📱facebook: https://www.facebook.com/informoverload/ +📱twitter: https://twitter.com/informoverload +📱reddit: https://www.reddit.com/user/informoverloadreddit +✉️email | contact: informoverload@gmail.com",2159.0,45192.0,,,,,,42617.0,65.0,0.0,351.0,"amber heard aquaman 2 drama! mr. potato head cancelled, britney spears father reacts & more news",,,,,,,,,, +653,https://www.youtube.com/watch?v=LjokWuzO7Go,0,0,{'antphrodite'},1,youtube,video,original video,"johnny depp and amber heard have one of the nastiest divorces ever. will it ever end? are there legal battles incoming? will johnny depp work again? + +if you'd like to send any tips or donations to support me you can do so here, thank you: https://bit.ly/3arm4wn [paypal email: antphrodite@gmail.com] + +☆★ live antphrodite psychic tarot readings + +☆★ book a private tarot reading from me +https://bit.ly/2f2zm6a + +☆★ personalized video shoutouts +https://bit.ly/2scrjih + +☆★ view all my celebrity predictions: +https://bit.ly/2mxiclv + +☆★ weekly horoscopes: +https://bit.ly/34xwf3l + +☆★ follow me on socials: +twitter: https://bit.ly/2eumpec +instagram: https://bit.ly/39jwkh9 +tiktok: https://bit.ly/2fac4or +website: https://bit.ly/2zvnie8 + +these are for entertainment purposes only + +#johnnydepp #amberheard #tarot",3708.0,70273.0,,,,,,65542.0,67.0,0.0,956.0,johnny depp vs amber heard psychic reading,,,,,,,,,, +654,https://www.youtube.com/watch?v=zcOKBJsJE4o,0,0,{'Trender'},1,youtube,video,original video,"in 2015, johnny depp and amber heard got married. the two had met on the set of 2011’s the rum diary. a little more than a year after their marriage, amber filed for divorce and began claiming that johnny had been physically and verbally abusive to her during their short time together. before much could come of it in court, amber formally withdrew her claims. her and johnny came to a divorce settlement that saw johnny paying out $7 million. many following the situation saw this settlement as admittance of guilt on johnny’s part. such parties included uk publication the sun. + +initially, there weren’t many consequences that came as a result of amber’s allegations against her ex-husband. johnny went forward with filming 2018’s fantastic beasts: the crimes of grindelwald franchise-runner jk rowling personally defended johnny whenever the press brought up the preceding divorce. however, a 2018 article published by the sun reignited interest in amber’s prior allegations against johnny just a few months before the film was set to hit theaters. although the film was still a success, johnny’s future in hollywood seemed tenuous. + +in 2018, johnny depp appeared in five films. in 2019, he appeared in only one. now johnny is suing amber for libel and defamation as a result of the damage that her allegations have done on his career. join trender as we explore why amber heard is now facing jail time.",117.0,3063.0,,,,,,2910.0,8.0,0.0,28.0,amber heard is now facing jail time,,,,,,,,,, +655,https://www.youtube.com/watch?v=7qRjJtLIZXQ,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"amber heard wants the entire lawsuit from johnny depp dropped! + +let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +☆other platforms☆ + + +•backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + +☆support the channel☆ + +•become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +•if you want to support my channel, please check out my patreon and subscribe star below: + +•patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp #thesun #ngn",703.0,8326.0,,,,,,7369.0,7.0,0.0,247.0,amber heard begs judge to drop johnny depp's lawsuit!,,,,,,,,,, +656,https://www.youtube.com/watch?v=pxWf6YMWcg0,0,0,{'MEET BEATS'},1,youtube,video,original video,"┈━═☆ telegram ☆═━┈ +https://t.me/meetsinhedits + +┈━═☆ instagram ☆═━┈ + +1) meet edits :- https://instagram.com/meet_edits?igshid=kb8ql3v42m4x + +2) personal id :- https://instagram.com/meetsinh.mj?igshid=1mz7n48zznwry +----------------------------------------------- +┈━═☆ notice ☆═━┈ +🔶 this video is uploaded for entertainment purpose only! + +🔶 if you as a copyright holder wish to remove this, +please contact me and i will remove it directly from my channel. + +e-mail id :- rmeet921@gmail.com +----------------------------------------------- +never forget to + +like 👍 +share ➡️ +----------------------------------------------- +#amberheard +#meetedits #mera #aquaman",84666.0,1492512.0,,,,,,1405585.0,1739.0,0.0,522.0,amber heard 4k hd full screen whatsapp status | mera | aquaman whatsapp status | super girl status,,,,,,,,,, +657,https://www.youtube.com/watch?v=4ThDqUtRazo,0,0,{'a Friend or Foe'},1,youtube,video,original video,"here's another justiceforjohnny. i am not paid and i make videos as a hobby and to show my support for justiceforjohnny. i give my opinion. take what i say with a grain of salt and do your own research. video created on 2/28/2021 + +normally, i go off of the legal documents but today i'm discussing my opinion on amber heard being fired rumor. +#justiceforjohnny",5.0,31.0,,,,,,22.0,0.0,0.0,4.0,rumor! amber heard fired from aq2? // a friend or foe opinion,,,,,,,,,, +658,https://www.youtube.com/watch?v=rOgbxoIfOc4,0,0,{'Mr. Alford'},1,youtube,video,original video,,0.0,4.0,,,,,,4.0,0.0,0.0,0.0,amber heard 'yet to fullfil' charity pledge of $7 million from depp divorce deal,,,,,,,,,, +659,https://www.youtube.com/watch?v=LfbFY9OZUfQ,0,0,{'AV Atmos'},1,youtube,video,original video,"is #amberheard too fat to play #mera in aquaman 2? reasons for her being fired from #aquaman2, amber heard may have been quietly booted from reprising her role of mera in the upcoming sequel to #aquaman with #jasonmomoa, game of thrones"" star #emiliaclarke who had been a fan-requested favorite to replace her + + + +my favorite dacs, amps & iem earphones + +xduoo xd05 bal dual es9038 chip hd bluetooth protable hifi balanced dac headphone amplifier 1000mw output  +https://s.click.aliexpress.com/e/_9iwvzu + +fiio fd5 beryllium coated dynamic in-ear monitors earphone with 2.5/3.5/4.4mm interchangeable sound tubes and mmcx audio jack +https://s.click.aliexpress.com/e/_aqjupf +https://s.click.aliexpress.com/e/_acicca + +jadeaudio(fiio) ea1 earbuds hi-res hifi earphone with beryllium-plated dynamic driver +https://s.click.aliexpress.com/e/_a3mf9q + +senfer mt300 est+ba+dd hybrid driver cnc hifi in ear earphone +https://s.click.aliexpress.com/e/_azqyjc + +kz edx 1dd hifi in ear earphone monitor headphones in ear earbuds +https://s.click.aliexpress.com/e/_a68szk + +kbear believe 9mm pure beryllium diaphragm 1dd in ear earphone  +https://s.click.aliexpress.com/e/_arudxj + +kbear limpid pro 8 core pure silver cable +https://s.click.aliexpress.com/e/_a1xygr + +kbear s1 bluetooth 5.0 upgraded earphone cable wireless 2pin/tfz/mmcx earbuds cable +https://s.click.aliexpress.com/e/_alxzmp + +kbear 10 silicone upgraded wide bore eartips  +https://s.click.aliexpress.com/e/_9i32ks + +fosi audio n2 mini hifi stereo headphone amplifier  +https://s.click.aliexpress.com/e/_ava6ce + +topping nx1s hi-res digital hifi portable headphone amplifier +https://s.click.aliexpress.com/e/_dtjjxkx + +my filming rig for this channel + +puluz 4 in 1 vlogging live broadcast smartphone video rig +4.6 inch led selfie ring light & microphone +tripod mount+tripod head +https://s.click.aliexpress.com/e/_akt0yw + +deity v.lav professional microphone flat frequency response omni-directional condenser microphone +https://s.click.aliexpress.com/e/_alvt8a + +lg v60 thinq v600am 5000mah us version 6.8-inch 8gb ram 128gb rom snapdragon 865  +https://s.click.aliexpress.com/e/_9gb9b0 + +send me cash token via bitcoin +19aaquzrd8aeh9dyn1yhnz6nqn712hhrca + +you can send us products for review +avatmos.com@gmail.com +avatmosall@gmail.com + +support us on patreon +https://www.patreon.com/avatmos + +our website +https://avatmos.com/ + +our shopping store +https://www.jumia.com.ng/atmos-all/ +https://www.jumia.com.ng/av-atmos-store/ + +social media handles +https://avatmos.com/ +https://www.youtube.com/c/avatmos +https://www.instagram.com/avatmos +https://m.facebook.com/avatmos + +follow me on +https://m.facebook.com/immaculate.mbaezue +https://www.instagram.com/immaculatembaezue/ +https://mobile.twitter.com/imbaezue + +dolby atmos dts:x imax enhanced auro-3d home cinema 7.1.4 setup",,,,,,,,97.0,,0.0,1.0,is amber heard too fat to play mera in aquaman 2? reasons for her being fired from aquaman 2 movie,,,,,,,,,, +660,https://www.youtube.com/watch?v=geHwTq5FGAY,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"amber heard is too far to be mera in aquaman 2? let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +☆other platforms☆ + +•backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + +☆support the channel☆ + +•become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +•if you want to support my channel, please check out my patreon and subscribe star below: + +•patreon: +https://www.patreon.com/user?u=21542407 + +#shorts #justiceforjohnnydepp #amberheard #johnnydepp #aquaman #aquaman2",196.0,3922.0,,,,,,3617.0,9.0,0.0,100.0,amber heard's too fat to be mera in aquaman? | #shorts,,,,,,,,,, +661,https://www.youtube.com/watch?v=LYLH4eel2fg,0,0,{'Flixet'},1,youtube,video,original video,"in this video, we are going to share amber heard's latest announcement which broke johnny depp fans hearts. + +subscribe for more: http://bit.ly/32rc7vi +_________________________________________________ + +amber heard's latest announcement leaves johnny depp fans disappointed, and her confirmation came as a shock to some johnny depp fans who hoped she wouldn't return to the role. amber heard has confirmed that she will star in the next ""aquaman"" movie. + +music in this video : + +track: odessa — liqwyd & scandinavianz +music provided by audio library plus +watch: https://youtu.be/jny-dp3lgcg",53.0,1623.0,,,,,,1492.0,14.0,0.0,64.0,johnny depp fans disappointed after amber heard's announcement | flixet,,,,,,,,,, +662,https://www.youtube.com/watch?v=RDkS5Uy2bRM,0,0,{'Doctor Soup'},1,youtube,video,original video,"#justiceforjohnnydepp #shelbysoup +heard claims she donated $7 million to charities, many of us believe amber heard is not telling the truth. depp knows it, we know it and so does adam waldman. + +links: + +sources:",400.0,2593.0,,,,,,2107.0,5.0,0.0,81.0,amber heard wrecked by depp’s lawyer! huge news!,,,,,,,,,, +663,https://www.youtube.com/watch?v=Hbsi4lX4qJo,0,0,{'delloliod'},1,youtube,video,original video,"the other night (sorry i filmed this thursday hoping it would be out that day but like life!) amber heard literally started attacking depp supporters, who, for the most part are survivors of domestic abuse. to me, i think these tweets are an embarrassment to the #metoo movement inserting herself yet again into a situation she is not involved with at all. if she wished to show her support of her friend, there is much more productive and graceful ways to do so, and for wood's sake, i wish she would've been more tactful and not made her friend's story with abuse about her own case. a case i think her lawyers were probably pissed about her tweeting about the next day. anyways, resources below if you want to know more! + + +also my brother who had to work this weekend edited this! make sure to thank him by giving him a follow on his channel where you can watch us theme park and swim with manatees! https://www.youtube.com/channel/uch24xjkjw7yxjgwdz-htgaw + + +uk court documents - https://www.nickwallis.com/depp-trial + + +incredibly average - https://www.youtube.com/channel/ucg0c-n_mpyyoxyf4t3jmxnq + + +twitter accounts (not bots) featured at the end; + + +brittney - https://twitter.com/brittannia_a?s=11 +gahar (sp) - https://twitter.com/alghasiial?s=11 +ayesha - https://twitter.com/deppsay?s=11 + + + +ps to my deppheads!!!! --- who made that marvelous timeline i featured? i want to credit them but couldn't find it as i've had this all saved on my phone for a while now! let me know so i can credit their work! much love to all of you! please give me constructive criticism, my brother and i are long distance working on these so it does take several days of passing the videos back and forth to work on them! i know a couple photos are a little out of place near the end but by the fourth time we'd passed it back and forth we were pretty sick of watching me talk! hahaha! but let me know! and thank you for watching! and reading this if you made it this far lol!",917.0,24100.0,,,,,,22863.0,32.0,0.0,288.0,let's rant about amber heard's drunk twitter rampage,,,,,,,,,, +664,https://www.youtube.com/watch?v=VeuE-745nT8,0,0,{'UnBoxPHD'},1,youtube,video,original video,"how much did amber donate to charity: https://youtu.be/-zytdxq7ehu + +samsung s21 unboxing: https://youtu.be/jhknyxvi9gw + +johnny depp thank you so much: https://youtu.be/qduon023j-e + +dji osmo mobile 3 vs 4: https://youtu.be/p3k7ooudjjy + +fans react to gift given by johnny depp: https://youtu.be/ebqvyqkbex0 + +iphone wallet real vs fake: https://youtu.be/m0r2ruv2sjy + +johnny depp taps on window: https://youtu.be/smonlejcwhu + +i organise flowers to be thrown on johnny depp's car: https://youtu.be/cdoqpukvegm + +iphone 12 mini review: https://youtu.be/0-2fnmtn5fc + +that james corden interview: https://youtu.be/_qenucmzbui + +elon musk anonymous: https://youtu.be/suv8lrmlolc + +piano he's a pirate: https://youtu.be/elbqw6rnojm + +#johnnydepp",153.0,1952.0,,,,,,1770.0,0.0,0.0,29.0,how much did amber heard really donate to aclu??,,,,,,,,,, +665,https://www.youtube.com/watch?v=XovI9L5eL3Q,0,0,{'Bluff Central'},1,youtube,video,original video,"while some celebrities prefer living a quiet life away from the public, others just have many scandals following them. in this video, we are going to talk about johnny depp and amber heard who have been on each other’s throats ever since they split up and are now taking their issues to court. make sure you watch this video to the end and in case it’s your first time here please hit the subscribe button for more related content. + +check these out!!!! +johnny depp and amber heard saga +👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇 +🔥 https://youtu.be/watch?v=xovi9l5el3q&list=pl0c_x0hcmuzfpxfnlmdcijb_wa45kt7ui + +top 10 celebrity videos +👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇 +🔥https://youtu.be/watch?v=6wxusexn4go&list=pl0c_x0hcmuzdjyose9quwlux3fwzdnfj5 + +popular uploads +👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇 +🔥https://youtu.be/watch?v=h9tv-cw5a8u&list=pl0c_x0hcmuzd6koq8fzw4znlowvbluf75 + +don't forget to follow us on instagram 👉 https://bit.ly/3vfxi3d + +#bluffcentral #amberheard #johnnydepp #hollywood #amberheardjailtime #heard #depp #justiceforjohnnydepp #metoo",23.0,1362.0,,,,,,1318.0,12.0,0.0,9.0,amber heard prison for 10 years due to accusations against johnny depp | bluff central,,,,,,,,,, +666,https://www.youtube.com/watch?v=kKz8trZleCI,0,0,{'Viral Vision'},1,youtube,video,original video,"amber heard officially replaced by margot robbie in aquaman 2!??? +when it comes to dc comics and marvel comics movies, one of the key things that they like to try and do is go and select people who they think can not just do a role justice, but in many cases, do those roles for multiple films. this goes especially for major hero characters. because if they do well, the fans will have a “connection” with them and thus won’t want them to be replaced should something happen. however, in the upcoming aquaman 2 movie, that might not be something they can afford to do given what’s going on with amber heard. allow us to break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, a look at aquaman 2, amber heard, and if she is replaced, who might replace her as mera. who do you like from the candidates listed that could be the next mera? or do you have your own candidate that you feel could own the role? do you think warner bros will make the plunge and get rid of amber heard? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",1595.0,35371.0,,,,,,33220.0,196.0,0.0,360.0,amber heard officially replaced by margot robbie in aquaman 2!???,,,,,,,,,, +667,https://www.youtube.com/watch?v=rMmbQDQTCcY,0,0,{'NerdFix'},1,youtube,video,original video,"nevyřešená situace mezi johnnym deppem a amber heard způsobila oběma stranám nemalé problémy v soukromí i kariéře. nejnovější zprávou je, že amber heard přišla o svou roli mery ve druhém díle aquamana. nic ale není takové, jaké by se na první pohled mohlo zdát. + +novinku připravil marek čabák + +další nerdfix videa: https://www.youtube.com/playlist?list=plqjirty3cjck_rr4m9dkir1k8-2ubjp_q + +🌍 spoj se s námi +============================= +odebírej náš kanál pro více skvělých videí! +náš web - https://www.nerdfix.cz +discord - https://www.discord.gg/indian +facebook - https://www.facebook.com/nerdfix.cz +instagram - https://www.instagram.com/nerdfix.cz +youtube - https://www.youtube.com/nerdfix + +🎥 nerdfix je doupě pro každého geeka! +============================= +nerdfix je komunitní portál a videoprodukce o filmech, seriálech, komiksech - to nejzajímavější z popkultury, recenze, preview, novinky a zajímavá témata každý den! + +🚀 media realms s.r.o. © 2021 - všechna práva vyhrazena +============================= +použitá hudba ve zvukové stopě může obsahovat součásti knihovny https://player.epidemicsound.com nebo je samostatně licencovaná. + +#nerdfix #aquaman #amberheard",887.0,11264.0,,,,,,10299.0,4.0,0.0,74.0,byla amber heard vyhozena z aquamana?,,,,,,,,,, +668,https://www.youtube.com/watch?v=C2X61mvTOH0,0,0,{'The Gossipy'},1,youtube,video,original video,"amber heard furious at johnny depp for releasing new evidence | the gossipy +welcome tothe gossipy. we make interesting videos about hollywood in english. we give you a closer look in the lives of celebrities like kanye west, ed sheeran, the rock, jay z, selena gomez, kylie jenner, kim kardashian, rihanna and 100s more. + +in hollywood, there are many stars that have ruined their own careers. these celebrities will do things that destroy their reputation and expose their true selves. + +in the case of amber heard, this situation is entirely different. her destruction has been more of a “slow burn."" because she’s tried so hard to convince people she’s a good girl and a victim, but is not getting exposed as actually something else entirely. + +all while, johnny depp rebuilds his reputation that amber heard tried to destroy. allow us to break it all down. be sure to like the video, hit the like button and notification bell, and subscribe to the channel! + +#amberheard​ #johnnydepp​ #johnnydeppamberheard +we tell you interesting things about these hollywood celebrities that you may have never heard before. +subscribe - https://www.youtube.com/channel/ucamaieynotgj-dmjp8dpepq?sub_confirmation=1 +''the channel goal is to get all the you tube play buttons"". so please do subscribe to our channel to be a part of the gossipy community, it is really important to grow together as a family and "" we promise you, we will not let you down"". + +cheers!",12.0,281.0,,,,,,264.0,0.0,0.0,5.0,amber heard furious at johnny depp for releasing new evidence | the gossipy,,,,,,,,,, +669,https://www.youtube.com/watch?v=0Az4oCswAN4,0,0,{'Fire Amber Heard'},1,youtube,video,original video,do what u want to,1.0,9.0,,,,,,8.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 32,,,,,,,,,, +670,https://www.youtube.com/watch?v=h39rMawlcms,0,0,{'Richard Dawkins Foundation for Reason & Science'},1,youtube,video,original video,"world-renowned author and scientist richard dawkins, whose passion for the wonders of science and the vital importance of reason has inspired millions of admirers, took part in an unscripted conversation with distinguished guests, tackling a wide variety of compelling topics spanning science, religion, and more. + +actress, activist, and outspoken atheist amber heard, critically acclaimed star of films such as aquaman, justice league, her smell, and friday night lights, will join prof. dawkins at the ikeda theater. she has served as a human rights champion at the united nations human rights office and worked with organizations such as the american civil liberties union, the syrian american medical society, amnesty international, smile train, and planned parenthood. + +this talk took place on october 16th, 2019.",770.0,32972.0,,,,,,30837.0,546.0,0.0,819.0,richard dawkins and amber heard in conversation,,,,,,,,,, +671,https://www.youtube.com/watch?v=T0jOgW9kSgU,0,0,{'Celebrity Life'},1,youtube,video,original video,"#celebrities #celebrity #celebritylife #shorts +amber heard ruined johnny depp +video by: .dailydepphead +disclaimer: the video clips used on this channel are not owned by this channel. + +tags: +jimmy fallon,booming entertainment,billie eilish,justin bieber,ariana grande,selena gomez,taylor swift,robert pattinson,harry styles,miley cyrus,celebrity,ellen,celebrities surprise fans 2021,kylie jenner,john cena,shawn mendes,compilation,tom holland,saturday night live,the rock,updated version,demi lovato,chris hemsworth,michelle obama,will smith,jennifer lawrence,celeb,zac efron,celebloungechannel,fan,dwayne johnson,celebrities,adam levine,celebrity crush,bts surprise fans,the ellen show,celebrity prank,comedy space,channing tatum,dwayne johnson surprises fans,billie eilish surprising fans,ariana grande surprises fan,surprise,trendy lists,12 times when celebrities surprise fans,fans,10 times when celebrities surprise their fans,celebrities meeting their crush,justin bieber surprises fans,surprising fans,celebrity surprise fans,surprise fans,celebrity surprise,celebrities surprising fans 2020,shawn mendes surprises fan,surprise fan,celebrities surprising their fans,celebrities surprising,hollywood celebrities,celebrity surprise fans 2020,celeblounge,celebrities meeting their idols,10 celebrities surprise their fans,funny celebrities,ellen surprises fans,10 moments when celebrities surprise their fans,billie eilish surprises fans,stars surprise fans,best celebrities surprising fans 2019,moments when celebrities surprise their fans,celebs and fans,celeb surprises fans,celebrities surprise fans,jimmy fallon subway,celebrity surprises fans,celebs surprise fans,youtubers surprising fans,fan surprise,jennifer aniston surprising fans,celebrities surprises fans,miley cyrus surprises fans,10 celebrities surprises fans moments,justin bieber surprise,when celebrities surprising fans,celebrity surprised fans 2020,celebrity surprises,celeb surprise fan,celebrity surprising fans,best celebrities surprising fans,celebs surprising fans,surprising people with celebrities,celebrities surprise celebrities,ed sheeran surprise fan,celebrities surprising fans in hospital,surprising videos,celeb surprises,justin bieber surprises his fans,celebrities suprising fans,charli d'amelio surprising fans,jimmy fallon subway performance,celebrity surprised fans 2019,celebrities surprising fans 2021,celebrities surprise 2019,best celebrities surprising,celebrity surprising fans compilation,moments when celebrities surprise guests,moments when celebrities surprise fans,celeb reactions,10 celebrities surprises fans,ctcn,ariana grande surprise fan,celebrity surprise to fans,celebrities surprising people,celebrities surprising fans 2019,celebrities surprise fans 2019,ellen surprises guests with celebrities,ellen degeneres surprises fans,best celebrities surprising fans 2021,top 10 moments when celebrities surprise their fans,ellen surprises fans with celebrities,public reactions video,shocking surprising videos,top celebrity videos,crazy surprising videos,hollywood celebs surprised,celebs surpise fans,celebrity surprised fans 2021,celebrities surprise 2021,celebrities surprise celebrities on the ellen show,michael b. jordan.,kim kardashian surprises reuben,celebrities surprising fans + +celebrities surprising fans,celebrities surprise fans,celebrity surprising fans,celebrities suprising fans,celebrities surprising fans 2019,celebrities surprising fans 2020,best celebrities surprising fans 2019,celebrity surprise fans,best celebrities surprising,celebs surprise fans,celebrities surprise fans 2019,celebrities surprising their fans,celebrity surprises fans,celebrities,10 times when celebrities surprise their fans,celebrity surprise to fans,best celebrities surprising fans",200336.0,3358626.0,,,,,,3152286.0,3219.0,0.0,2785.0,amber heard ruined johnny depp #shorts,,,,,,,,,, +672,https://www.youtube.com/watch?v=CCe53LZie5c,0,0,{'InformOverload'},1,youtube,video,original video,"top 10 royal secrets exposed by meghan markle and prince harry +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +meghan and harry, the duke and duchess of sussex have faced scrutiny from the public and from the royal family for what seems like forever. after announcing in early 2020 that they would be stepping back from the royal family, there was more drama, rumour, scrutiny and gossip than ever before. now the young family is forging their own path, and sharing details from their life on this inside so to speak, as they sat down with oprah winfrey for an exclusive interview. there was a lot to learn from them, so let's go over the top 10 royal secrets exposed by meghan markle and prince harry. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#meganandharry #theroyalfamily #meganinterview #oprha #meganmarkleandprinceharry #meganmarkleoprha #meganmarkleinterview #princeharryinterview #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 #celebritygossip #influencergossip #celebritytea #influencertea + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +brie roome: https://www.instagram.com/_brieroome + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +matthew holmgren: https://www.instagram.com/matthew.holmgren/ + +📱instagram: https://www.instagram.com/informoverload +📱facebook: https://www.facebook.com/informoverload/ +📱twitter: https://twitter.com/informoverload +📱reddit: https://www.reddit.com/user/informoverloadreddit +✉️email | contact: informoverload@gmail.com",5385.0,97741.0,,,,,,91259.0,298.0,0.0,799.0,top 10 royal secrets exposed by meghan markle and prince harry,,,,,,,,,, +673,https://www.youtube.com/watch?v=wl5Z5xS_MrQ,0,0,{'Multiple Contents'},1,youtube,video,original video,"hey guyzzz, welcome to our channel please like and subscribe our channel. so we can make more intresting and beautiful videos for multiple content family :) + +................................................................................. + + +analysts say that the actress might face as much as three years in jail for faking her injuries to get a restraining order against her husband. johnny depp sued the mera-actress for defamation over domestic abuse allegations, claiming his wife as an abuser. it is claimed that heard may actually have faked her injuries to make it look like depp was involved in domestic violence to get a restraining order against him. + + +note : copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use. + + +#amberheardjailed +#aquamanstar +#prisontime",15.0,445.0,,,,,,425.0,2.0,0.0,3.0,amber heard 3 years jailed. #amberheardjailed #aquamanstar #prisontime,,,,,,,,,, +674,https://www.youtube.com/watch?v=o43rSrjcyH8,0,0,{'Shujin Kun'},1,youtube,video,original video,"http://www.instagram.com/shujin.kun +http://www.twitter.com/shujinkun + +article 1: https://themotherofallnerds.com/aquaman-2-amber-heard-firing-confirmed-and-her-replacement-is-emilia-clarke/ + +article 2: https://rojakdaily.com/entertainment/article/11686/amber-heard-fired-from-aquaman-2-following-divorce-controversy-here-s-the-full-story",0.0,11.0,,,,,,11.0,0.0,0.0,0.0,did warner bros finally fire amber heard? | thoughts and opinions #8,,,,,,,,,, +675,https://www.youtube.com/watch?v=K0G4VgBJlCo,0,0,{'Celebrity Insider'},1,youtube,video,original video,"it's difficult to follow what exactly has happened in the divorce of johnny depp and amber heard and what has elon musk got to do with it? +in this video we will explain what elon musk has to do with the defamation case against amber heard. + +we hope you enjoy the video, make sure to like and comment what you liked the best. + +subscribe to our instagram to stay up to date on the run: +instagram: https://www.instagram.com/celebrity23insider/ + +subscribe to celebrity insider on youtube to get the newst stories about the famous and for the funniest, most exciting and bizarre facts about their past.",42.0,1423.0,,,,,,1355.0,4.0,0.0,22.0,explained: what elon musk has to do with the defamation case against amber heard,,,,,,,,,, +676,https://www.youtube.com/watch?v=nf2AgE2eE8M,0,0,{'Popcorned Planet'},1,youtube,video,original video,"lots of news is reporting that amber heard is being replaced by jason momoa's game of thrones co-star emila clarke in james wan's aquaman 2. but what's true about this story? is warner brothers replacing amber heard? has she already been fired from aquaman 2? is there a mera tv series coming to hbo max starring amber turd? we'll discuss it all. + +s u p p o r t t h i s. c h a n n e l: +subscribe, donate & follow us here: https://linktr.ee/andysignore + +and join our community to become a popcorned planeteer, to really become a part of the team and get exclusives scoops & perks! +https://www.youtube.com/channel/uccdicbo4cle4s1wbxjjsusg/join + +popcorned planet offers nerd news on movies, tv, marvel, dc, star wars, disney, ufos, and pop culture outrage incluyding justice for johnny depp coverage. created and hosted by andy signore (creator of screenjunkies, honest trailers, moviefights, hugging the cactus, movie world, man at arms and more). popcornedp lanet is your one stop place for movie talk, movie scoops, and pop culture commentary. + +c o n t a c t / b u s i n e s s : popcornedplanet@gmail.com",1123.0,20479.0,,,,,,19047.0,38.0,0.0,271.0,amber heard replaced in aquaman 2 with emila clarke!? - reality or rumor?!,,,,,,,,,, +677,https://www.youtube.com/watch?v=xIFgRVZ_zG4,0,0,{'ROLLING STONE Deutschland'},1,youtube,video,original video,"„the stand“, eines der besten bücher stephen kings, erfährt zum zweiten mal nach 1994 eine umsetzung als mini-serie (bei uns auf starzplay zu sehen. josh boone und benjamin cavell zeichnen als showrunner verantwortlich, in den hauptrollen sind odessa young, alexander skarsgård , james marsden, whoopi goldberg und amber heard zu sehen. + +machen die beteiligten einen guten job? kann es gelingen, eine gigantische king-schwarte in serienform zu komprimieren? ffk schaltet sich ein.",0.0,37.0,,,,,,37.0,0.0,0.0,0.0,seuchen-check (2): stephen king – „the stand“ - freiwillige filmkontrolle,,,,,,,,,, +678,https://www.youtube.com/watch?v=d2pTzN0Agkw,0,0,{'The Gossipy'},1,youtube,video,original video,"amber heard suing warner bros. for aquaman 2 decision | the gossipy + +welcome tothe gossipy. we make interesting videos about hollywood in english. we give you a closer look in the lives of celebrities like kanye west, ed sheeran, the rock, jay z, selena gomez, kylie jenner, kim kardashian, rihanna and 100s more. + +the situation with amber heard in regards to her very public battle against ex-husband johnny depp has led many in the public eye to turn against her. mainly because in the beginning she was ‘very clearly’ via her statements. but then, things started to change when johnny depps started to provide evidence that she was the, repeatedly in fact. and as more information comes out people want heard to be punished, including her losing her role as mera in aquaman 2. but amber heard isn’t aiming to let go of that role in any way. we’ll break it down for you. be sure to like the video and subscribe to the channel! + +#amberheard​ #johnnydepp​ #justiceforjohnnydepp + +we tell you interesting things about these hollywood celebrities that you may have never heard before. +subscribe - https://www.youtube.com/channel/ucamaieynotgj-dmjp8dpepq?sub_confirmation=1 +''the channel goal is to get all the you tube play buttons"". so please do subscribe to our channel to be a part of the gossipy community, it is really important to grow together as a family and "" we promise you, we will not let you down"". + +cheers!",4.0,351.0,,,,,,342.0,0.0,0.0,5.0,amber heard suing warner bros. for aquaman 2 decision | the gossipy,,,,,,,,,, +679,https://www.youtube.com/watch?v=RiNuB0HG78w,0,0,{'Binge Watch'},1,youtube,video,original video,"amber heard’s assistant exposes her for lying + +subscribe to binge watch - http://tiny.cc/bingewatch + +watch next 👇 + +how amber heard destroyed her own career + +https://youtu.be/gefwubrffr8 + +related videos: + +amber heard's assisstant finally exposes her for lying + +https://youtu.be/ix63sqkr8se + +amber heard's assistant tells her side of the story + +https://youtu.be/ip3obqueglk + +body language analyst reacts to amber heard's cringe deposition | faces episode 15 + +https://youtu.be/hqffm_x2lps + +that’s crazy, as the tables have turned and now amber heard is the one who’s criticized by +so many people. but why is she the subject of such a toxic response? johnny and amber +have both accused each other of abuse. first, people thought that johnny was the ‘bad guy’ +but now, fans think that amber is the one who is doing it for attention, enjoying the drama, +manipulating the truth, exaggerating reality. +moreover, people were absolutely furious after amber heard’s former assistant kate james +exposed amber heard for stealing her sexual assault story. +for so many women struggling from abuse, it was difficult to hear but, that's true that amber +really lied about the fact that johnny abused her. and the whole world was shocked after +kate james, amber heard’s former personal assistant, alleged that heard had appropriated +her story of being a “sexual violence survivor,” giving evidence at london’s royal courts of +justice on the seventh day of johnny depp’s libel trial against the publisher of the sun +newspaper. +however, the fact that kate exposed amber is really good for johnny, as now he is suing +news group newspapers and journalist dan wootton for an article on the sun website that +described him as a “wife beater.” depp denies that he was violent toward heard, to whom he +was married from 2015 to 2017. +kate gave evidence in support of depp, and said she had told heard that she was raped at +machete-point in brazil about 25 years ago. she said she was shocked to learn that in a +witness statement, heard misrepresented and exploited the incident. +“she referred directly to a violent rape that occurred to me 26 years ago and she twisted it +into her own story and she used it for her own use,"" kate james said by video link from los +angeles. “i am a sexual violence survivor and that’s very, very serious to take that stance if +you are not one,"" she added. +when kate she read amber heard’s submissions, she said, “to my utter shock and dismay, i +discovered that ms heard had in fact stolen my sexual violence conversation with her and +twisted it into her own story to benefit herself. this of course caused me extreme distress +and outrage that she would dare to attempt to use the most harrowing experience of my life +as her own narrative.” +referring to amber heard’s drinking habits, james said in a witness statement: “amber +would drink vast quantities of red wine each night.” plus, in evidence given remotely from +los angeles, kate james also said she had regularly received a barrage of drunken, +abusive and incoherent text messages from heard between 2am and 4am. +in her declaration, james outlines how she spent large amounts of time with heard during +her employment - sometimes up to seven days a week, often in intimate settings. that is +significant, she says, because many of heard's allegations of physical abuse date to that +time period - and she never saw any evidence of it. instead, she claims to have seen ample +evidence of heard's own abusive behavior, which was often directed at her. + +“amber was regularly verbally and mentally abusive and would often scream at me... over +the smallest things,” she wrote. “she would fly into blind rages where no-one could reason +with her, and even if i was trying to offer an explanation, i didn’t think that she could hear me +as she was so angry.” +kate james claims the actress would often binge on wine and drugs - specifically magic +mushrooms and mdma - and text her abuse throughout the night. +“when i woke up in the morning, there would almost always be a barrage of incoherent +abuse sent to me from amber by text between around 2am and 4am. i discovered later that +she had gone ahead and deleted all evidence of abusive texts from that icloud account,” +she claimed. the abuse was so severe, that james said it left her emaciated from stress and +caused concern among her friends and family. +... + +and now i want to know what you think about amber heard. do you think she really enjoys +the drama and does it for clout? let me know your opinion in the comments section down +below. + +binge watch - binge watch is the best source of the latest celebrity news. want to see what's trending today in the hollywood life or hear about the newest celeb gossip? you're in the right place. + +consider subscribing to not miss out on what's trending today in the life of the world's biggest stars. + +#celebrity #news #bingewatch",772.0,46403.0,,,,,,45431.0,37.0,0.0,163.0,amber heard’s assistant exposes her for lying,,,,,,,,,, +680,https://www.youtube.com/watch?v=tkM3A_QzrrE,0,0,{'FredCarpet – Film ist Liebe'},1,youtube,video,original video,"the stand – das letzte gefecht (2020): masud akbarzadeh hat sich auf amazon prime video die neue, zehnteilige serienadaption der stephen king-erzählung über die von einer seuche heimgesuchte welt angeguckt. + +1994 oder 2020: welche ist für dich die bessere the stand-verfilmung? +filmkritik: + +0:00 intro & begrüßung +0:22 buch, serie schauspieler +3:06 story then vs. story now [eventuelle spoiler!] +10:12 zu den schauspielern... +12:20 masuds kritik/ meinung... +***************************************************************** +danke fürs anschauen! +falls euch unser content gefällt, lasst gerne einen like da oder drückt den abo-button, damit ihr nichts mehr von uns verpasst. + +kennt ihr schon unseren podcast? +https://open.spotify.com/show/5dee8zv7muctwlfayg2t55 + +schaut auch mal auf einem unserer anderen channel vorbei: +___________________________________________________ +magazin website: https://www.fredcarpet.com/ +facebook: https://www.facebook.com/fredcarpetblog/ +instagram: https://www.instagram.com/fredcarpet/ +twitter: https://twitter.com/fredcarpetmag +letterboxd: https://letterboxd.com/fredcarpet/ +youtube kanal abonnieren: http://bit.ly/1pq3psp + +amazon affiliate:https://amzn.to/2zprmua +***************************************************************** +serieninfo: + +the stand (2020) +originaltitel: the stand +genre: abenteuer, drama, horror, fantasy +darsteller: stu redman, odessa young, whoopi goldberg, amber heard, alexander skarsgård, greg kinnear +von: josh boone, benjamin cavell +streambar: prime video + + +#thestand2020 i #thestand i #stephenking + + + +trailer: promotional use only. | all rights reserved.",28.0,1399.0,,,,,,1346.0,3.0,0.0,22.0,the stand (2020): masud über stephen kings serienadaption,,,,,,,,,, +681,https://www.youtube.com/watch?v=C73RPQA3Trk,0,0,{'Cae Valentine'},1,youtube,video,original video,"the article: +https://www.dailymail.co.uk/news/article-9118921/johnny-depp-accuses-amber-heard-taking-7m-settlement-lying-giving-charity.html + +please consider donating to the channel. + +https://www.paypal.me/caeruleusv + +patreon: https://www.patreon.com/caev + +merch: https://www.teepublic.com/user/caeruluesvalentinius1 + + +avi by piper steed twitter here +https://twitter.com/fyzzgiggidy + +end card by vipersword100, sub here: +https://www.youtube.com/channel/ucr65ozmlubkvdbwt9_vroiq + +overlay by rurik: https://www.youtube.com/channel/ucvhxetxirwulkx_uczkbbzw + +discord server: +nonexistant + +streamlabs: +https://youtube.streamlabs.com/caeruleusvalentiniuscae + +patrons +fuq_wad +trevor collin +how to train your sturgeon +james u +cerulee +chat mort +stefan sims +michelle bender +the mental health resource hub +velfarre +michael tarr +hanro millard +charlotted + +james' channel: https://www.youtube.com/user/jamesu1990 +chatmort: https://www.youtube.com/user/fluffypurplekitty + +fair use notice +this video may contain copyrighted material; the use of which has not been specifically authorized by the copyright owner. we are making such material available for the purposes of criticism, comment, review and news reporting which constitute the 'fair use' of any such copyrighted material as provided for in section 107 of the us copyright law. not withstanding the provisions of sections 106 and 106a, the fair use of a copyrighted work for purposes such as criticism, comment, review and news reporting is not an infringement of copyright.",27.0,157.0,,,,,,130.0,0.0,0.0,0.0,amber heard lied about donating to charity,,,,,,,,,, +682,https://www.youtube.com/watch?v=CE4FVnzVDHI,0,0,{'Success Club'},1,youtube,video,original video,"elon musk motivational video + + +elon musk + +elon musk is a south african-born american entrepreneur and businessman who founded x.com in 1999 (which later became paypal), spacex in 2002 and tesla motors in 2003. musk became a multimillionaire in his late 20s when he sold his start-up company, zip2, to a division of compaq computers.  + + +elon musk net worth +elon musk son name +elon musk wife +elon musk tesla +elon musk twitter +elon musk age +elon musk companies +elon musk quotes +elon musk children +elon musk all companies +elon musk amber heard +elon musk and jeff bezos +elon musk autobiography +elon musk app +elon musk and grimes +elon musk solarcity +the elon musk story +the elon musk book +the elon musk song +the elon musk foundation +the elon musk satellites +the elon musk of china +the elon musk tweet +elon musk biography +elon musk book +elon musk biography book +elon musk business +elon musk baby name +elon musk biography in hindi +elon musk birthday +elon musk bitcoin +cardi b elon musk +planet b elon musk +elon musk b +jordan b peterson elon musk +elon musk b lasagna +john b goodenough elon musk +elon musk b storm +m.b.a elon musk +elon musk child name +elon musk company name +elon musk carbon capture +elon musk car +elon musk country +elon musk children names +elon musk spacex +elon musk c.v +elon musk c programming +elon musk c language +elon musk cpap +c'est qui elon musk +elon musk c qui +elon musk daughter name +elon musk dogecoin +elon musk dogecoin tweet +elon musk degree +elon musk daily income +elon musk daily routine +elon musk date of birth +elon musk documentary +did elon musk found paypal +did elon musk go to college +did elon musk found tesla +did elon musk go to space +did elon musk invest in dogecoin +did elon musk buy tesla +did elon musk go to mars +did elon musk surpass jeff bezos +elon musk education +elon musk education qualification +elon musk email id +elon musk earnings +elon musk earnings per second +elon musk email +elon musk earnings per day +elon musk electric car +elon musk family +elon musk father +elon musk forbes +elon musk first company +elon musk from which country +elon musk favourite books +elon musk family photo +elon musk future projects +elon musk young +lorena gonzalez f elon musk +elon musk f-150 +f-35 elon musk +elon musk f35 iha +elon musk f 35 açıklaması +elon musk f35 yorumu +elon musk girlfriend +elon musk gf +elon musk girlfriend name +elon musk girlfriend list +elon musk graduation +elon musk gamestop +elon musk gujarati +elon musk girlfriend age + + +#elonmusk +#elonmuskmotivation +#tesla +#spacex +#nevergiveup",3.0,52.0,,,,,,49.0,0.0,0.0,0.0,elon musk motivational video,,,,,,,,,, +683,https://www.youtube.com/watch?v=641Ap5N97xM,0,0,{'Viral Vision'},1,youtube,video,original video,"uncensored body cam footage proves amber heard lied about johnny depp +the case of johnny depp going up against his ex-wife in amber heard is one that has divided the nation in terms of who is right, who is wrong, who is being protected, and what this says about cases as a whole. mainly because at first it was made clear that johnny depp was an in the relationship, but then evidence started to pop up that it was amber heard who was the. and now, new never-before-seen evidence seems to further back up what johnny depp has been saying and as such, could further change the complexion of the case. allow us to break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone! a look at the newest allegations and evidence presented by johnny depp that seems to indicate how much of a lie amber heard's claims were against him. do you think that this new testimony and body cam footage will prove that depp was innocent the whole time? could this finally sway the court cases in his favor? or will amber continue to put up a fight? let us know in the comments below, be sure to subscribe and we'll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",2391.0,104461.0,,,,,,101347.0,53.0,0.0,670.0,uncensored body cam footage proves amber heard lied about johnny depp,,,,,,,,,, +684,https://www.youtube.com/watch?v=-Jol3XD81yA,0,0,{'Film Royalty'},1,youtube,video,original video,"johnny depp & amber heard controversy coming to an end +✅ subscribe to us → https://www.youtube.com/c/filmroyalty?sub_confirmation=1 +🔔 turn on notifications to never miss a new upload! +✅ follow us on instagram → https://www.instagram.com/filmroyalty + +about: +four years later the couple were back in court, but this time in london. however, this was not amber heard's case - she had not chosen to be here. this was a libel action depp had brought against a british newspaper, the sun. at the heart of the case was his assertion that the allegations of physical abuse were an ""elaborate hoax"". depp employed one of the best-known libel barristers in the country to try to prove the claims were untrue. +over the next three weeks, heard arrived at court each day and walked past her former husband's fans, who were convinced that it was their hero who was the victim and it was she who had assaulted him. in court her story, photos, memories and the accounts of her friends were all exposed to the world and said by depp's team and supporters to be part of a plot to falsely prove that he was, as the sun had claimed in april 2018, a ""wife beater"". + +it was not just the fans and media who were watching carefully. lawyers were already wondering, if he won, what impact this would have on women coming forward with claims of domestic violence. outside, johnny depp would arrive each day to cheers. but his behaviour and lifestyle were also under the microscope - and a judge has now ruled that the sun's allegations were ""substantially true"". + +""copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use."" + +about us: +film royalty is the #1 destination for all movie fans to catch the latest movie breakdowns, news, featurettes as well as exclusive movie secrets & more! always expect the latest content from your most anticipated movies! we work around the clock to bring you the hottest content including breakdowns, news & more the second it drops. + +hashtags: +#johnnydepp #amberheard #piratesofthecaribbean #2021 #aquaman #amberheardfired #johnnydepprehired #hollywood",715.0,24538.0,,,,,,23648.0,13.0,0.0,162.0,johnny depp & amber heard controversy coming to an end,,,,,,,,,, +685,https://www.youtube.com/watch?v=SDeo-TdpCCc,0,0,{'eHacker'},1,youtube,video,original video,"amber heard and elon musk met in mexico recently! rant! +check out rob here! https://www.youtube.com/watch?v=xmndgik3kyo&t=288s +check out channel membership if you are keen to support the channel! +new members get their names in the credits! + +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com + +want paid promo spots? send me a mail or dm on to the info. above! (starting as low as $5! note via: paypal) + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods + +for those interested in why i dislike and criticise disney star wars (link below): + +https://disneystarwarsisdumb.wordpress.com/",827.0,11275.0,,,,,,10048.0,18.0,0.0,382.0,amber heard and elon musk met in mexico recently! rant!,,,,,,,,,, +686,https://www.youtube.com/watch?v=RAbwipKD9cE,0,0,{'TheQuartering'},1,youtube,video,original video,"the #1 way to support this channel is backing me on subscribestar +https://www.subscribestar.com/thequartering + +become a youtube member! it's the #2 best way to support! +https://www.youtube.com/channel/ucfwe_odi1ytbdjkzusi1nag/join + +follow me +parler-https://parler.com/profile/thequartering/ +twitter-https://twitter.com/thequartering +discord-https://discord.gg/d3tnuwdvzm +subreddit-http://reddit.com/r/thequartering +politics channel -https://www.youtube.com/channel/uc577sigte1cjpdosladwndw +odysee- https://odysee.com/@thequartering:1 +bitchute- https://www.bitchute.com/channel/1t4g52b7i3ox/",11878.0,194273.0,,,,,,180789.0,173.0,0.0,1433.0,amber heard has lost her mind!,,,,,,,,,, +687,https://www.youtube.com/watch?v=_vY2tA6lqaA,0,0,{'Omni'},1,youtube,video,original video,"that vegan teacher officially got banned from tiktok, zoe laverne gets pregnant but apparently she kissed some kid a few months ago so this is super weird, allegations that amber heard may have been fired from aquaman 2, baymax and the rest of big hero 6 cast might be in future marvel movies, jared leto has a new look for joker but tbh idc, updates on the worst youtuber of all time and his youtube channel getting banned, and more. +my twitter ➧ https://www.twitter.com/infernoomni +my twitch ➧ https://www.twitch.tv/infernoomni +my patreon ➧ https://www.patreon.com/infernoomni +my reddit ➧ https://www.reddit.com/r/infernoomni/ +my gaming channel ➧ https://bit.ly/2np3c1k + +timestamps +00:00 - tiktok was a mistake +00:42 - zoe laverne is pregnant & this is creepy +05:35 - that vegan teacher banned from tiktok +09:03 - the worst youtuber of all time banned +13:23 - amber heard aquaman 2 allegations +15:22 - the new joker is now jesus christ +18:23 - big hero 6 in marvel capcom universe +20:13 - promised neverland 2 is bad (no spoilers) +21:15 - tiktokers believe snow is fake",13551.0,173151.0,,,,,,157629.0,66.0,0.0,1905.0,"that vegan teacher got banned.. worst youtuber banned, zoe laverne pregnant, amber heard, big hero 6",,,,,,,,,, +688,https://www.youtube.com/watch?v=aRbRdqXT7Ew,0,0,{'Actu Star'},1,youtube,video,original video,"actu star: merci beaucoup d'avoir regardé! +si vous souhaitez plus de nouvelles, abonnez-vous à la chaîne! +cliquez ici pour inscrire: http://bit.ly/actustar + +guerre contre amber heard : pourquoi johnny depp assigne elon musk en justice",0.0,8.0,,,,,,8.0,0.0,0.0,0.0,guerre contre amber heard : pourquoi johnny depp assigne elon musk en justice,,,,,,,,,, +689,https://www.youtube.com/watch?v=cAI4Pp82Rko,0,0,{'Film Streak'},1,youtube,video,original video,"*rude* amber heard targets johnny depp fans on twitter! +johnny depp has lost his appeal on the libel case against the sun newspaper over an article they had published that labeled him as a wife-be*ter. amber heard, who won the uk lawsuit, has gained quite a bit of confidence and is now rudely replying to johnny depp's fans on twitter. watch this video to the very end to see what she said. +hello guys, welcome to our channel. in today's video, we are going to talk about how amber heard has been rudely replying to johnny depp fans on twitter. but before we get to that, make sure you subscribe to our channel. +amber heard started as a spokesperson for human rights but is now one of the most hated women in the world of hollywood. after coming out with allegations of physical abuse against her former husband, johnny depp, in 2016, she received numerous support from both fans and celebrities. however, in recent years, amber has lost all her credibility and supporters as people have started doubting her version of the story. as a result, thousands of people have signed various petitions to have amber removed from her projects. + +here on film streak we are all about the latest spill in hollywood! you can rest assure that we will bring you all the latest celebrity drama and gossip especially concerning you favorite actors! we´ll also make sure to keep you updated on the newest movie updates and releases – so if you are interested in anything that happens in hollywood, you should make sure to stay tuned! + +and there you have it guys! we hope you enjoyed the video! if you did please consider leaving a like and telling us what you though in the comments! + +here are some links to some of our other videos that you might find interesting as well: +""forgive me"" justin bieber apologies to hailey bieber (ig live video): https://www.youtube.com/watch?v=u-m_q7fs91i +emilia clarke reaction before replacing amber heard in aquaman 2! https://www.youtube.com/watch?v=pyxp9wxhuww +johnny depp officially rehired | back in a new pirates of the caribbean 6 movie? https://www.youtube.com/watch?v=utozmdfngvk +elon musk speaks against amber heard & defends johnny depp! +https://www.youtube.com/watch?v=woo2bftrrl4 + +so, if you are interested in anything related to hollywood, make sure to smash that subscribe button to see more of our content in the future! 🎬 https://bit.ly/3kzplqd + +#amberheardtwitter #amberheardtargetsfansontwitter #justiceforjohnny #filmstreak",61.0,749.0,,,,,,671.0,2.0,0.0,15.0,*rude* amber heard targets johnny depp fans on twitter!,,,,,,,,,, +690,https://www.youtube.com/watch?v=0y3ebAP-huM,0,0,{'JUICEfromtheBOX Shorts'},1,youtube,video,original video,"wwe would have had amber heard as the special guest referee for this match. #shorts + +reaction channel: +https://www.youtube.com/user/juiceeegames + +gaming channel: +https://www.youtube.com/watch?v=xreqdlsq9ty&ab_channel=juicefromthebox",0.0,5.0,,,,,,4.0,0.0,0.0,1.0,elon musk vs johnny depp #shorts,,,,,,,,,, +691,https://www.youtube.com/watch?v=NRRK_zavmeQ,0,0,{'Doctor Soup'},1,youtube,video,original video,"#justiceforjohnnydepp #amberheardjohnnydepp + +amber heard and johnny depp continue to go at it. we all know the true perpetrator, depp is innocent, heard not. learn more in this video. + + + +twitter: iamdrsoup +other awesome channels: +sec +stevie j raw +come geek some +lost beyond pluto",378.0,3427.0,,,,,,2966.0,0.0,0.0,83.0,amber heard blames her corruption on johnny depp; she has no accountability!,,,,,,,,,, +692,https://www.youtube.com/watch?v=48GGUHEzu-0,0,0,{'Viral Network'},1,youtube,video,original video,"hey you lovely people, welcome back to another video! let’s spice up your day with some breaking news! yes, we are talking about the allegations that shook hollywood - the johnny depp and amber heard case.former spouses, depp and heard are currently engaged in a heated defamation suit, that stemmed from an op-ed that the latter had written for the washington post. the article talked about how she was a survivor of abuse, and while it didn’t mention a name, it clearly referred to her relationship with johnny depp. + +click here to enter the giveaway! +https://youtube.com/user/zrul90 + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e + + +#amberheard #johnnydepp #viralnetwork",35.0,1426.0,,,,,,1349.0,23.0,0.0,19.0,amber heard and johnny depp's case officially cancelled due to this reason...,,,,,,,,,, +693,https://www.youtube.com/watch?v=RncTRoujIRs,0,0,{'Fact News'},1,youtube,video,original video,"amber heard and johnny depp have been the focus of some incredible issues ever since their divorce, with the two initiating a series of massive lawsuits. these accusations and lawsuits have since claimed much of johnny depp’s career, costing him his role of jack sparrow. while fans have petitioned to have amber heard similarly fired from aquaman 2, it seems they may have now gotten their wish. although for some rather unexpected reasons if the report is to be believed. as revealed via yahoo! finance, they have shared a rather interesting rumor. apparently amber heard allegedly wasn’t in physical enough shape to take on the role of mera again for aquaman 2. as a result of this, she was reportedly fired. the rumor then continues, suggesting that warner bros also apparently has a replacement in mind. as stated:“reports suggest that amber gained a little weight before the commencement of the shoot and the makers are not keen on continuing to work with her. not just that, it is being said that emilia clarke who i known popularly for her role as daenerys targaryen from game of thrones is all set to replace her.”furthermore, sausage roll similarly stated the following rumor about amber heard being fired from aquaman 2:“amber heard did not pass her physical examination. she’s put on some pounds and is in terrible shape. there is a clause in her contract which says she is required to be in good form ahead of shooting and she violated that.”although one reporter has stated that these reports are “inaccurate”:but for the time being, it looks like there’s a slight possibility all those who’ve petitioned against amber heard won’t have to see her in the new aquaman movie after all. of course, this should all be taken with a grain of salt for now. but stay tuned for any updates on the rumor as we have them. aquaman 2 is currently scheduled for a release date on december 16, 2022. + + +all data is taken from the source: http://screengeek.net +article link: https://www.screengeek.net/2021/02/28/amber-heard-fired-aquaman-2-report/ + + +#amberheard #newsoftoday #newsworldtoday #bbcnewstoday #newsworldwide #cnnnewstoday #",2.0,21.0,,,,,,19.0,0.0,0.0,0.0,amber heard reportedly fired from 'aquaman 2',,,,,,,,,, +694,https://www.youtube.com/watch?v=XMj3_w81Oso,0,0,{'Stevie J Raw'},1,youtube,video,original video,"new!! [real] lapd bodycam proves johnny depp is innocent! amber heard exposed! + +bodycam footage has been released by the daily mail revealing that johnny depp is innocent and that amber heard lied about everything! + +join me and let's talk! + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join +art of elysium donation page - https://www.pledge.to/the-art-of-elysium + +justice for johnny depp t-shirts (proceeds go to charity): +design 1 - https://t.co/uycndh9ebj?amp=1 +design 2 - https://t.co/hdmq0wicke?amp=1 +design 3 - https://t.co/lqmeoidmje?amp=1 +design 4 - https://t.co/lkteqqdxhg?amp=1 + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#justiceforjohnnydepp #johnnydepp #lapdbodycam #lapdjohnnydepp",278.0,2427.0,,,,,,2081.0,0.0,0.0,68.0,[real] lapd bodycam proves johnny depp is innocent! amber heard exposed!,,,,,,,,,, +695,https://www.youtube.com/watch?v=AriQDroIexc,0,0,{'Actu Star 5'},1,youtube,video,original video,"actu star 5: merci beaucoup d'avoir regardé! +si vous souhaitez plus de nouvelles, abonnez-vous à la chaîne! +cliquez ici pour inscrire: https://goo.gl/c9m5ju + +guerre contre amber heard : pourquoi johnny depp assigne elon musk en justice",0.0,4.0,,,,,,4.0,0.0,0.0,0.0,guerre contre amber heard : pourquoi johnny depp assigne elon musk en justice,,,,,,,,,, +696,https://www.youtube.com/watch?v=NZTd2x4h2us,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard ""apology"" backfires! even the media can't save it! + +remember: do not interact with these folks online, or off. +report on issues, don't be part of them. + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",3857.0,56527.0,,,,,,51931.0,33.0,0.0,706.0,"amber heard ""apology"" backfires! even the media can't save it!",,,,,,,,,, +697,https://www.youtube.com/watch?v=x653udljwgw,0,0,{'I Stand By Johnny Depp'},1,youtube,video,original video,"there have been numerous reports that jd's daughter has sided with ah. now anyone who has been following this case knows this is not true. so what is the real story, why are these media outlets spreading lies and how can you spot a fake news story? + +link to et interview +https://www.youtube.com/watch?v=ghwxjfqi3te",0.0,94.0,,,,,,91.0,0.0,0.0,3.0,"what!? johnny depp's daughter, lily-rose, siding with amber heard!!!!!!",,,,,,,,,, +698,https://www.youtube.com/watch?v=_nuDSdYrBe0,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard wrecked as the judge laughs off heard's proposal! this is depp winning! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",7881.0,183935.0,,,,,,174881.0,131.0,0.0,1042.0,amber heard wrecked as the judge laughs off heard's proposal! this is depp winning!,,,,,,,,,, +699,https://www.youtube.com/watch?v=7Zxxy9VYWoc,0,0,{'eHacker'},1,youtube,video,original video,"evan racheal wood defended amber heard! media claimed they were “good friends” + +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com + +want paid promo spots? send me a mail or dm on to the info. above! (starting as low as $5! note via: paypal) + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods + +for those interested in why i dislike and criticize disney star wars (link below): + +https://disneystarwarsisdumb.wordpress.com/",292.0,1996.0,,,,,,1537.0,0.0,0.0,167.0,evan racheal wood defended amber heard! media claimed they were “good friends”,,,,,,,,,, +700,https://www.youtube.com/watch?v=9qbhaWX9Yiw,0,0,{'TriCycle'},1,youtube,video,original video,"the further adventures of aquaman. + +release date: 16 december 2022 (india) +director: james wan +film series: aquaman +screenplay: jason momoa, david leslie johnson-mcgoldrick +producers: james wan, peter safran + +#aquaman + +subscribe to the channel and click to the bell icon 🔔 to stay up-to-date. + + +like 👍 +share +comment 💬",0.0,29.0,,,,,,27.0,0.0,0.0,2.0,aquaman 2 teaser trailer 2022 | amber heard | jason momoa | patrick wilson,,,,,,,,,, +701,https://www.youtube.com/watch?v=sXBb6KbmfCE,0,0,{'Caught On Camera'},1,youtube,video,original video,"johnny depp leaked video talking about his ex-wife amber heard + +johnny depp and his ex wife amber heard have been in the spotlight for quite some time now. johnny depp is one of hollywoods biggest actor therefore johnny depp has millions of fans. everything in johnny depps life is leaked to the public and sometimes this can cause problems. johnny depp and his ex wife went through some problems.",929.0,48221.0,,,,,,47051.0,93.0,0.0,148.0,johnny depp leaked video talking about amber heard...,,,,,,,,,, +702,https://www.youtube.com/watch?v=uZnInq4uq6A,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"amber heard met elon musk in mexico and this photo was taken of the two together, but what were they up to ?? + +#justiceforjohnnydepp +#justicefordepp + +tammy tips and tricks : https://instagram.com/tammy.tipsandtrips?igshid=sk5olemcpdhp + +rob’s rebellion star wars channel : + +https://youtube.com/channel/ucneeomqldbqxhdpdmxaq1pg + +twitter : @wars_everything + +email : estarwars1977@gmail.com",269.0,3830.0,,,,,,3388.0,6.0,0.0,167.0,new photo !! amber heard with elon musk after the uk libel case in mexico ??? why ??,,,,,,,,,, +703,https://www.youtube.com/watch?v=xseyLau3PMA,0,0,{'InformOverload'},1,youtube,video,original video,"new! amber heard updates you need to know now | marathon +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +we have covered a lot of news about amber heard and aside from the most recent updates today we have comprised a marathon to catch you up on some things you may have missed! + +00:00 - the shocking truth of amber heard vs johnny depp revealed +09:13 - aquaman 2 boycott demands amber heard removal +13:00 - major amber heard update you need to know now +16:56 - amber heard accused of lying about charity donation + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#amberheard #johnnydepp #needtoknow #jasonmomoa #aquaman #aquaman2 #directorjameswan #jameswan #ambervsjohnny #johnnydeppvsamberheard #aquamanmera #mera #amberheardboycott #aquaman2boycott #boycott #defends #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 #celebritygossip #influencergossip #celebritytea #influencertea #justiceforjohnnydepp #johnny #depp #2021 #thesunnewspaper #newsgroupnewspaper #danwootton #thesun #highcourt #libelcase #defamation + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +johnny rogers: https://www.instagram.com/thejohnnyrogers/ +jarred bronstein: http://instagram.com/bronst7 + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +daniela suarez: https://www.instagram.com/danielasuarezphoto/ + + +📱instagram: https://www.instagram.com/informoverload +📱facebook: https://www.facebook.com/informoverload/ +📱twitter: https://twitter.com/informoverload +📱reddit: https://www.reddit.com/user/informoverloadreddit +✉️email | contact: informoverload@gmail.com",1280.0,33054.0,,,,,,31442.0,70.0,0.0,262.0,new! amber heard updates you need to know now | marathon,,,,,,,,,, +704,https://www.youtube.com/watch?v=7OdlbkoEaoE,0,0,{'UnBoxPHD'},1,youtube,video,original video,"amber heard's friend raquel pennington did not see much regarding ms. heard's interaction with johnny depp. + +#johnnydepp #amberheard",108.0,2866.0,,,,,,2739.0,5.0,0.0,14.0,amber heard's friend lied,,,,,,,,,, +705,https://www.youtube.com/watch?v=Tw4xcEma1Ng,0,0,{'STATUS WILD'},1,youtube,video,original video,"aquaman mera whatsapp status in vertical | amber heard | + +iron man whatsapp status share chat iron man whatsapp status in hindi iron man attitude whatsapp status i am iron man whatsapp status i am iron man whatsapp status download iron man whatsapp status download in tamil iron man whatsapp status download iron man whatsapp status video download in hindi iron man whatsapp status free download iron man 3 whatsapp status download iron man new whatsapp status video download iron man mass whatsapp status tamil download iron man whatsapp status in hindi download iron man whatsapp status in tamil iron man whatsapp status video download iron man whatsapp status video download in tamil iron man whatsapp status video iron man mass whatsapp status tamil iron man mass whatsapp status iron man whatsapp status song download iron man satisfya whatsapp status iron man suit up whatsapp status robert downey jr whatsapp number robert downey jr whatsapp group link robert downey jr birthday whatsapp status robert downey jr stickers whatsapp stickers de robert downey jr para whatsapp robert downey jr whatsapp no iron man status in hindi iron man status download mirchi iron man status sharechat iron man status song iron man status videos iron man status mirchi iron man status quo ironman status osrs the iron man status iron man status download iron man status download in hindi iron man status download in tamil iron man whatsapp status download iron man status video download iron man best status download iron man sad status download iron man status in hindi download iron man status in tamil iron man whatsapp status in hindi download iron man whatsapp status in hindi iron man whatsapp status in tamil iron man of india status iron man whatsapp status download in tamil i am iron man status download i am iron man status i am iron man whatsapp status iron man statue life size iron man mass whatsapp status tamil iron man mass whatsapp status miss you iron man status iron man mass whatsapp status tamil download remove ironman status osrs iron man sad status iron man whatsapp status song download iron man full screen status iron man full screen status download iron man suit up status iron man statue uk iron man whatsapp status video download iron man whatsapp status video download in tamil iron man whatsapp status video download in hindi iron man whatsapp status video iron man new whatsapp status video download iron man statue 1/1 iron man 3 whatsapp status download",13.0,210.0,,,,,,195.0,2.0,0.0,0.0,aquaman mera whatsapp status in vertical | amber heard |,,,,,,,,,, +706,https://www.youtube.com/watch?v=YODR1b63l_I,0,0,{'Hugging The Cactus'},1,youtube,video,original video,"welcome to hugging the cactus' keep going podcast. this week we're discussing how to avoid toxic relationships & in turn: amber heard types and the #justiceforjohnnydepp movement. + +this week's guest les from spiritually empowered coaching joins me to discuss her past toxic relationships, how to get out of a toxic relationship, narcissists and how johnny depp got tricked by amber heard. + +support les via: https://empowerandthrive.ca/ +https://www.youtube.com/c/spirituallyempoweredcoaching +https://twitter.com/spirituallyemp1 + +#huggingthecactus #keepgoing + +to support this series, you can join our patreon: http://patreon.com/huggingthecactus +or donate to andy directly via paypal: https://t.co/uj9cyqbllq?amp=1",236.0,2230.0,,,,,,1950.0,3.0,0.0,41.0,how to avoid toxic relationships & amber heard types - keep going w/ les #justiceforjohnnydepp,,,,,,,,,, +707,https://www.youtube.com/watch?v=sQl5WXwzW-g,0,0,{'VGT TV - Giải Trí'},1,youtube,video,original video,"giữa nhiều lùm xùm với chồng cũ là johnny depp, nữ diễn viên amber heard mới đây vẫn chia sẻ lại ảnh đang tập luyện chăm chỉ cho vai diễn trong bộ phim bom tấn aquaman 2. tuy nhiên, điều này càng khiến khán giả việt tức giận, đòi công bằng cho johnny depp khi nam tài tử thì bị mất vai diễn bởi kiện tụng, ""phốt bạo hành"" với vợ cũ. +#amberheard #aquaman2 #johnnydepp #vgttv #saodrama #showbiz +--------------------------------------------------------------------------- + +một sản phẩm của vietgiaitri.com + +liên hệ: +email: contact@vietgiaitri.com.vn +website: https://www.vietgiaitri.com +fanpage: https://www.facebook.com/vgttv.channel +tiktok: https://www.tiktok.com/@vgttv +android: https://play.google.com/store/apps/details?id=com.vietgiaitri +ios: https://itunes.apple.com/vn/app/id1278850956",11.0,3519.0,,,,,,3504.0,1.0,0.0,3.0,amber heard tập luyện cho aquaman 2 giữa phốt bị johnny depp tố bạo hành khiến netizen tức giận,,,,,,,,,, +708,https://www.youtube.com/watch?v=lp4w1QoJYmg,0,0,{'Coffee boy art'},1,youtube,video,original video,"thank you so much friends. +please like comment and share , and please subscribe also +if you like my drawings and paintings, +follow me on this link https://youtu.be/q8_dwmg1rxc, + +my youtube link:https://www.youtube.com/channel/uc5ijrvwgfvqqgyivlgio5wa +,https://youtu.be/3nxpbcu5hvu, +https://youtu.be/lp4w1qojymg +my gmail id:kapil786garwa@gmail.com + +about: +amber laura heard is an american actress. in addition to acting, heard engages in activism for causes such as lgbtq rights and domestic and sexual violence awareness. heard first gained mainstream recognition for supporting roles in the action film never back down and the stoner comedy pineapple express. +born: 22 april 1986 (age 34 years), austin, texas, united states +height: 1.7 m +spouse: johnny depp (m. 2015–2017) +tv shows: the stand, criminal minds, the playboy club, more +upcoming movie: aquaman 2 +special description: +#how to draw celebrities step by step, +#how to draw celebrities for beginners, +#how to draw sketch, +#how to draw celebrities sketch, +#how to draw celebrities easy, +#how to draw celebrities with coulored pencil, + +#amber heard net worth +#amber heard movies and tv shows +#amber heard elon musk +#amber heardaquaman +#amber heard aquaman 2 +#amber heard instagram +#amber heard age",62.0,308.0,,,,,,239.0,2.0,0.0,5.0,how to draw celeb amber heard|how to draw amber heard portrait|amber heard art|amber heard hq pic.,,,,,,,,,, +709,https://www.youtube.com/watch?v=Cytxw6AdqWU,0,0,{'eHacker'},1,youtube,video,original video,amber heard's friend iotillet deletes social media like crazy! what's he hiding!?,1014.0,12761.0,,,,,,11398.0,4.0,0.0,345.0,amber heard's friend iotillet deletes social media like crazy! what's he hiding!?,,,,,,,,,, +710,https://www.youtube.com/watch?v=xL6fWiZ53lI,0,0,{'This Happened'},1,youtube,video,original video,"6 celebs who think johnny depp is the real victim + +a number of high-profile individuals have defended johnny and accused amber of lying. +besides johnny’s former partners, vanessa paradis and winona ryder, various other celebrities have come forward and expressed their concern for johnny, claiming he’s the real victim who needs protection from his ex-wife. + + +subscribe for celeb drama: http://youtube.com/channel/ucylyoo597nuffyjs_hwhubq?sub_confirmation=1 + +#thishappened amberheard #johnnydepp",771.0,24013.0,,,,,,23127.0,14.0,0.0,101.0,6 celebs who think johnny depp is the real victim,,,,,,,,,, +711,https://www.youtube.com/watch?v=rdvrxwkuhgA,0,0,{'Nouvelles Des Célébrités'},1,youtube,video,original video,"l'affaire qui oppose amber heard à johnny depp n'est pas terminée. il y a quelques semaines, les deux anciens époux se sont affrontés au tribunal lors d'un procès médiatique où leur vie privée a été étalée. le 2 novembre dernier, le comédien a perdu contre the sun, et la justice a donc jugé que le journal avait le droit de le décrire contre un ""batteur de femme"". sitôt le verdict émis, johnny depp a décidé de faire appel du jugement de son procès en diffamation contre le journal et devrait être fixé le mois prochain, au royaume-uni. avec ses avocats, il prépare donc une nouvelle confrontation... et a déposé plusieurs assignations, dont une pour elon musk. le milliardaire, patron de space x, est en effet cité à comparaître, selon les informations de deadline. +s'il a décidé de l'assigner, c'est pour prouver qu'il n'a jamais été violent avec amber heard et que la comédienne a entretenu une relation avec elon musk lors de leur mariage. ainsi, les avocats de johnny depp demandent que le jeune papa transmette ""toutes les communications entre lui et mme heard concernant m. depp"", ainsi que ""toute allégation de violence physique ou domestique commise par m. depp ou mme heard"". elon musk n'a pas encore réagi, mais a plusieurs fois contredit le comédien. ""je souhaite confirmer à nouveau qu'amber et moi n'avons commencé à sortir ensemble qu'un mois environ après sa demande de divorce. je ne pense pas l'avoir intéressée pendant leur mariage"", expliquait-il dans les colonnes de page six. +elon musk : ""si johnny veut un combat en cage, faites-le moi savoir"" +""concernant ce procès, je recommanderais à toutes les personnes impliquées d'enterrer la hache de guerre et de tourner la page. la vie est trop courte pour une telle négativité prolongée, ajoutait alors elon musk. personne ne dira, lorsque tout ceci sera terminé, qu'il aurait souhaité que cette bataille judiciaire dure plus longtemps."" comme lui, d'autres personnes sont citées à comparaître par les conseils de johnny depp. ses avocats cherchent aussi à obtenir l'autorisation du tribunal pour que des ""témoins non parties"" donnent ""un témoignage en direct au procès"". le patron de space x se tient en tout cas prêt pour un affrontement. auprès du new york time, il ironisait : ""si johnny veut un combat en cage, faites-le moi savoir"". +inscrivez-vous à la newsletter de closermag.fr pour recevoir gratuitement les dernières actualités",0.0,29.0,,,,,,29.0,0.0,0.0,0.0,guerre contre amber heard : pourquoi johnny depp assigne elon musk en justice,,,,,,,,,, +712,https://www.youtube.com/watch?v=qgnkeDWNzgc,0,0,{'Crazed Culture'},1,youtube,video,original video,"amber heard officially apologizes to johnny depp about her lies... +over the past couple of years the media has been flooding with news regarding the situation with johnny depp and amber heard. the issue between the two is that there were so many who were trying to figure out who was the victim in the relationship since there were different stories from each party in the relationship. as the case moves along further what many have noticed is that the finger is starting to solely point to amber heard as more and more evidence gets brought forward. people all over the world are starting to believe that johnny depp was wrongfully accused of several different acts, none of which he actually performed. many are aware that this led him to not only lose several of his important acting roles, but also put him in a very tough place with the media. + +click here to enter the giveaway! +https://www.youtube.com/crazedculture?sub_confirmation=1 + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e + +#amberheard #johnnydepp #deppheard",1926.0,80304.0,,,,,,77464.0,510.0,0.0,404.0,amber heard officially apologizes to johnny depp about her lies...,,,,,,,,,, +713,https://www.youtube.com/watch?v=NTazoElxY18,0,0,{'Taboo_poetry -'},1,youtube,video,original video,just a montage of her audacity and hypocrisy,8.0,96.0,,,,,,88.0,0.0,0.0,0.0,amber heard the constant contradictions and lies,,,,,,,,,, +714,https://www.youtube.com/watch?v=96HhJqhvR-M,0,0,{'The Amber Heard Playlist!!Johnny Depp es racista'},1,youtube,video,original video,,0.0,,,,,,,15.0,1.0,0.0,,you can learn to judge for yourself!! (amber heard playlist!!),,,,,,,,,, +715,https://www.youtube.com/watch?v=wucC-Jx9Vfc,0,0,{'AK NETWORK'},1,youtube,video,original video,"what happened with johnny depp |exposed hindi &urdu | ak network +▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ +jhonny depp +jhonny depp expose +amber heard +amber heard expose +rolling stone +rolling stone and jhonny depp +marilyn manson +marilyn manson expose +hunter s thomson +hunter s thomson expose + + +#jhonnydepp #amberheard #marilynmanson #rollingstone #huntersthomson #altamashshaikh #aknetwork + + +▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ + +►must subscribe my channel for more videos : +link:https://youtube.com/channel/ucg4rfwrjjzsilv1peelzt5q + +╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗ ║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣ ╠╗║╚╝║║╠╗║╚╣║║║║║═╣ ╚═╩══╩═╩═╩═╩╝╚╩═╩═╝ + +doraimon exposed: +link: https://youtu.be/q5lwynfmv5o + +zayn malik exposed: https://youtu.be/p-smw9fewpk + +reality of jhon wick movie: +https://youtu.be/vhud6gftoue +▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ +▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ + copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use. ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ + thanks for your love & for watching",30.0,687.0,,,,,,632.0,13.0,0.0,12.0,what happened with johnny depp |exposed hindi &urdu | ak network,,,,,,,,,, +716,https://www.youtube.com/watch?v=F7j38oQzMU0,0,0,{'Fire Amber Heard'},1,youtube,video,original video,i was traveling the whole day yesterday just got home today so new video tomorrow and no video yesterday sorry but no sorry,0.0,4.0,,,,,,4.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 38,,,,,,,,,, +717,https://www.youtube.com/watch?v=3lBStqzf0lA,0,0,"{""Amber Heard's Evidence""}",1,youtube,video,original video,"amber heard's supporting evidence and humanitarian, political work",0.0,22.0,,,,,,20.0,2.0,0.0,0.0,johnny depp victim blaming amber heard again audio,,,,,,,,,, +718,https://www.youtube.com/watch?v=HsAKok-O0E0,0,0,{'Doctor Soup'},1,youtube,video,original video,"#justiceforjohnnydepp +https://80b08171-ce73-4488-b369-fe3934b0504a.filesusr.com/ugd/5df505_c0be9b5abbe648fb91f943b0e81fb02b.pdf + +we will be discussing amber heard and johnny depp by a lovely professional guest i have here. + +amber heard and johnny depp continue to go at it. we all know the true perpetrator, depp is innocent, heard not. learn more in this video.",241.0,1400.0,,,,,,1091.0,0.0,0.0,68.0,amber heard is good at exposing her own lies!,,,,,,,,,, +719,https://www.youtube.com/watch?v=XmndgIK3kyo,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"i will read the quick posting from a mexican publication that caught amber heard and elon musk in mexico. i will translate it and show you the original posting. now you decide and tell me what you think of this. + +tammy tips and tricks : https://instagram.com/tammy.tipsandtrips?igshid=sk5olemcpdhp + +rob’s rebellion star wars channel : + +https://youtube.com/channel/ucneeomqldbqxhdpdmxaq1pg + +twitter : @wars_everything + +email : estarwars1977@gmail.com + +#justiceforjohnnydepp +#justicefordepp",438.0,7017.0,,,,,,6384.0,9.0,0.0,186.0,why were amber heard and elon musk in mexico ?,,,,,,,,,, +720,https://www.youtube.com/watch?v=6im7YIwVup4,0,0,{'Celeb Central'},1,youtube,video,original video,"amber heard faces years of prison for accusations against johnny depp + +the johnny depp and amber heard court drama made a major plot twist when johnny depp filed a defamation lawsuit against his ex-wife. he not only claimed that she lied in court, but also that she was wronged toward him. however, the actors will need to wait even longer to get an official court ruling. if the court rules in johnny depp’s favor, amber heard could be facing serious consequences. + +the possibility of amber heard going to jail already has fans asking who would replace her in aquaman 2. and even if she doesn’t get sentenced to jail time, based on the information that johnny depp has already released to the public, many fans have petitioned for amber heard to be replaced in aquaman 2 regardless. rumors have even started swirling that emilia clarke would be her replacement. be sure to watch the whole video and see what lies amber heard has been hiding all these years! in addition, do us a favor and like the video and subscribe and turn on the notification bell. we’ll see you in the next video! + +#hollywood +#amberheard +#johnnydepp + +related videos: + +amber heard faces 5 years in prison for bribing sister to lie in court!? +https://www.youtube.com/watch?v=6lxbivscmfe + +the real reason amber heard could end up behind bars +https://www.youtube.com/watch?v=6qegxqmswl8 + +top 10 celebrities who defended johnny depp +https://www.youtube.com/watch?v=uj9kutxlulw + +amber heard facing 10 years in prison for fake johnny depp accusations!? +https://www.youtube.com/watch?v=tybocw3gqzc + +amber heard officially fired from aquaman 2 role! (reactions) +https://www.youtube.com/watch?v=qbcexsvjbrm + + +i do not take any ownership of the music displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes only.",946.0,73459.0,,,,,,72314.0,56.0,0.0,143.0,amber heard faces years of prison for accusations against johnny depp,,,,,,,,,, +721,https://www.youtube.com/watch?v=Z3kgseINW_I,0,0,{'Shreya Mantha'},1,youtube,video,original video,,0.0,101.0,,,,,,85.0,16.0,0.0,0.0,shreya for l'oreal paris campaign with amber heard,,,,,,,,,, +722,https://www.youtube.com/watch?v=DJqES8BVD5w,0,0,{'Doctor Soup'},1,youtube,video,original video,"adam waldman continues to drop amazing bombshells on amber heard, on twitter. heard is desperate to gain her ""innocence"" through tweets, videos and more. johnny depp's amazing lawyer waldman, knows what he is doing. it's clear heard tries to hide the fact that depp may actually have a shot at winning virginia. + +amber heard is a domestic abuser, in my opinion.",263.0,4251.0,,,,,,3909.0,3.0,0.0,76.0,"new amber heard bombshells; heard is wrecked by depp's lawyer on twitter, again!",,,,,,,,,, +723,https://www.youtube.com/watch?v=JMl5wEKDW58,0,0,{'Why It Matters Podcast'},1,youtube,video,original video,"my opinion on the actress amber heard and her situation going on with johnny depp. and how i feel about aqua man 2 + +make sure to leave a like and subscribe!",461.0,7187.0,,,,,,6498.0,8.0,0.0,220.0,"she’s an evil lady! amber heard rant, and a discussion on aquaman 2",,,,,,,,,, +724,https://www.youtube.com/watch?v=PYXp9wXHUWw,0,0,{'Film Streak'},1,youtube,video,original video,"emilia clarke to replace amber heard in aquaman 2? | amber heard fired after johnny depp drama + +in the video emilia clarke speaks out about her possibly taking over for amber heard as a replacement in aquaman 2!!! +during 2020 a lot of great comic book movies were delayed because of the world situation, but that is all about to change for 2021! aquaman 2 is a potential movie that we might be getting to see in 2021 or at least in 2022, but after all of the drama between amber heard and johnny depp, then amber heard has been removed as mera in aquaman 2, and the game of thrones idol emilia clarke might be the one to replace her! + +if you enjoyed this video and would like to see more similar animated satirical content in the future make sure to like and subscribe! + +we have compiled some of our previous videos here: +the simpsons greatest real life predictions! +https://www.youtube.com/watch?v=judzqzfhq5g +the simpsons predictions for 2021 | the end of the world? +https://www.youtube.com/watch?v=jsix2vzd_0y +the worst mistakes in ""the simpons"" episodes! | they missed this!? +https://www.youtube.com/watch?v=_zjipd2kuga + +if you just couldn´t get enough, we have found some great videos from other creators: +amber heard’s lawyer exposes her for ruining johnny depp +https://www.youtube.com/watch?v=pzr2_v4upgi +10 celebrities who defended johnny depp against amber heard... +https://www.youtube.com/watch?v=74bdltt6khw +jason momoa speaks on amber being replaced from aquaman 2!? +https://www.youtube.com/watch?v=shobyc9vqxm + +#emiliaclarkeaquaman2 #amberheard #aquaman2 #amberhearddrama #filmstreak",971.0,46407.0,,,,,,45129.0,56.0,0.0,251.0,emilia clarke reaction before replacing amber heard in aquaman 2!,,,,,,,,,, +725,https://www.youtube.com/watch?v=NUF2JgX_J9Q,0,0,{'Fire Amber Heard'},1,youtube,video,original video,yes it happened again atleast i'm being honest,3.0,11.0,,,,,,7.0,1.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 36,,,,,,,,,, +726,https://www.youtube.com/watch?v=2SlFOAbOsa0,0,0,{'Colonel Kurtz'},1,youtube,video,original video,"i analyze amber heard's circle of friends to better understand their dynamic and their involvement in the johnny depp situation. this video contains discussions about io tillett wright, whitney heard, amanda decadenet, raquel pennington, etc. i not only provide lots of interesting information, details, and interview clips with them but also discuss the larger group and interpersonal dynamics of this circle and its relation to the johnny depp case. + +there are a few brief technical glitches, but keep watching and they resolve quickly. sorry, it's just my third video. + +subscribe to my channel and check out my other videos on johnny depp vs. amber heard. there will be many more to come. :) + +check out this guy for more forensic info: https://www.youtube.com/channel/ucg0c-n_mpyyoxyf4t3jmxnq?app=desktop + +here's my patreon and tip jar: + +tip jar: https://www.paypal.com/donate?hosted_button_id=z65d3ull278sw +patreon: https://www.patreon.com/colonelkurtz",1548.0,38920.0,,,,,,36705.0,40.0,0.0,627.0,amber heard's friends: an analysis of their interpersonal dynamics,,,,,,,,,, +727,https://www.youtube.com/watch?v=sSu_bvw9qKo,0,0,{'Lost Beyond Pluto'},1,youtube,video,original video,"opinion letter: https://www.fairfaxcounty.gov/circuit/sites/circuit/files/assets/documents/pdf/opinions/cl-2019-2911-depp-v-heard-01-24-21.pdf + + +related videos + + +bots! analysing amber's defense: https://youtu.be/wm3etbv8gqe + + +analysing amber's counterclaim: https://youtu.be/-90klpnpre0 + + +johnny's demurrer: https://youtu.be/jpqs8g8aayy + + +social media + +patreon: https://www.patreon.com/lostbeyondpluto + +instagram: https://www.instagram.com/lostbeyondpluto + +twitter: https://twitter.com/lostbeyondpluto + +tumblr: https://lostbeyondpluto.tumblr.com/ + +soundcloud: https://soundcloud.com/lost-beyond-pluto + +music videos: + +blue eyes: https://www.youtube.com/watch?v=wm2-kyp18ww + +once a liar: https://youtu.be/bgwc09ptuhm + + + +stars intro theme by eva grace",2404.0,30127.0,,,,,,27354.0,8.0,0.0,361.0,johnny depp v amber heard - analysing (whatever's left) of amber's counterclaim,,,,,,,,,, +728,https://www.youtube.com/watch?v=QfVYT_u0H00,0,0,{'ET Canada'},1,youtube,video,original video,"after amber heard admitted she hasn't donated her divorce settlement from johnny depp to charity, carlos bustamante and graeme o'neil react during ""et canada live"". + +subscribe to our channel: + +https://www.youtube.com/user/etcanadaofficial + +follow us here: + +http://www.etcanada.com + +facebook: https://www.facebook.com/etcanada + +twitter: http://www.twitter.com/etcanada + +instagram: http://www.instagram.com/etcanada + +#amberheard #johnnydepp",1040.0,112209.0,,,,,,109160.0,768.0,0.0,1241.0,amber heard hasn't donated divorce settlement,,,,,,,,,, +729,https://www.youtube.com/watch?v=FORiTf2GsZE,0,0,{'Mega Trailers'},1,youtube,video,original video,"ei! cique aqui:http://bit.ly/cliqueaquiepgueseulivrodigital você que tem diabetes, quer aprender o que comer e como driblar definitivamente a diabetes. +então clique no link abaixo na descrição deste vídeo e veja o que o dr rocha preparou para você. + +aquaman 2 trailer jason momoa, amber heard",0.0,20.0,,,,,,19.0,1.0,0.0,0.0,"aquaman 2 trailer jason momoa, amber heard",,,,,,,,,, +730,https://www.youtube.com/watch?v=_494-N8o3Bg,0,0,{'Vs editx'},1,youtube,video,original video,"mera | amber heard ❤️😍 +. +watch the video in hd quality +(1080q + earphones) +. +video edit by vs editx +. +#amberheard #vseditx #shorts #mera #lovestatus",98.0,2418.0,,,,,,2282.0,34.0,0.0,4.0,mera ❤️❤️ hd love status | hd whatsapp status #shorts amber heard,,,,,,,,,, +731,https://www.youtube.com/watch?v=NiLjGbHxNFQ,0,0,"{""Fonzi's Garage""}",1,youtube,video,original video,"everyone should hold themselves accountable +i got this one wrong +let's fix it + + + + + +subscribe and hit the like button! +https://www.youtube.com/channel/uc3sshvqsijn7bvuf8gaspjg + +support channel: +https://www.paypal.me/8fonzi8​​​​ + +this video is made for entertainment and reference.",2.0,56.0,,,,,,53.0,1.0,0.0,0.0,"amber heard not fired - a ""keeping it real"" segment (we got it wrong) correcting drama (debunked)",,,,,,,,,, +732,https://www.youtube.com/watch?v=WuGUMC2bYsU,0,0,{'WorldClassBullshitters'},1,youtube,video,original video,"it's kombat among fans, but we're more concerned with amber heard. she could really pollute the ocean! + +2 days left for stealing solo: https://www.indiegogo.com/projects/stealing-solo-fandom-menace-edition#/ + +#mortalkombat #aquaman2 #marvel",815.0,13806.0,,,,,,12929.0,15.0,0.0,47.0,mortal kombat backlash|amber heard is back for aquaman 2|a new marvel fail,,,,,,,,,, +733,https://www.youtube.com/watch?v=Lj5J_fYLr8k,0,0,{'YellowFlash 2'},1,youtube,video,original video,"it looks like the rumors that amber heard was removed from aquaman 2 are likely true. but, it might not have anything to do with johnny depp. + +how to support +►check out my store: https://teespring.com/stores/yellowflash-merch +►check out my patreon: https://www.patreon.com/yellowflashcomics + +where to find me +►check out my twitch: https://www.twitch.tv/yellowflashtwo +►follow me on twitter: @yellowflashguy +►follow me on minds: https://www.minds.com/yellowflash/ +►follow me on odysee: https://odysee.com/@yellowflash:8?r=ebxc2ze5cbcuihj7wkc7kcageacisrvk +►follow me on bitchute: https://www.bitchute.com/channel/bwecegsvy8ab/ +►follow me on parler: https://parler.com/profile/yellowflash +#amberheard #johnnydepp #justiceforjohnnydepp",4125.0,63525.0,,,,,,58531.0,38.0,0.0,831.0,amber heard fired over donuts?! aquaman 2 don’t want no plus size mera?!,,,,,,,,,, +734,https://www.youtube.com/watch?v=89Bg1GryUKw,0,0,{'The Silent Arrow 7'},1,youtube,video,original video,enjoy. 🤣,18.0,318.0,,,,,,296.0,0.0,0.0,4.0,"i support johnny depp because amber heard isn't the victim, and she lied about it.",,,,,,,,,, +735,https://www.youtube.com/watch?v=J7mSd87aQi0,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"what do you think, do you think amber heard actually donated the money? + +let me know what you think! + +💕 don't forget to like & subscribe! 💕 + + + +backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + + +become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +if you want to support my channel, please check out my patreon and subscribe star below: + +patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp #thesun #ngn #netflix",750.0,7617.0,,,,,,6534.0,5.0,0.0,328.0,proof amber heard never donated 7m to charity | update on netflix/johnny depp movies,,,,,,,,,, +736,https://www.youtube.com/watch?v=ba0P9P3r7c4,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"join this channel to get access to perks: +https://www.youtube.com/channel/ucg2qylhnyyxksvv6ve11ijw/join",191.0,2439.0,,,,,,2209.0,0.0,0.0,39.0,"🔴 livestream amber heard & elon musk embryos, amber heard subpoena denied, much more....",,,,,,,,,, +737,https://www.youtube.com/watch?v=0L_AkpaiTzs,0,0,{'TheQuartering'},1,youtube,video,original video,"some very spicy news for the aquaman 2 star, zack snyder & emilia clark + +the #1 way to support this channel is backing me on subscribestar +https://www.subscribestar.com/thequartering + +become a youtube member! it's the #2 best way to support! +https://www.youtube.com/channel/ucfwe_odi1ytbdjkzusi1nag/join + +follow me +twitch-https://www.twitch.tv/thequartering +parler-https://parler.com/profile/thequartering/ +twitter-https://twitter.com/thequartering +discord-https://discord.gg/d3tnuwdvzm +subreddit-http://reddit.com/r/thequartering +politics channel -https://www.youtube.com/channel/uc577sigte1cjpdosladwndw",7187.0,103605.0,,,,,,95055.0,206.0,0.0,1157.0,amber heard fired?!?! new clues from zack snyder & emila clark point to aquaman 2 removal,,,,,,,,,, +738,https://www.youtube.com/watch?v=VJdqT78gj1E,0,0,{'Keeley Talks'},1,youtube,video,original video,"amber heard claimed she donated her $7m divorce settlement to charity, she lied and this is an important piece of information regarding her credibility as a witness",45.0,251.0,,,,,,170.0,0.0,0.0,36.0,johnny depp application to appeal |why amber heard 'donation' to charities is so important,,,,,,,,,, +739,https://www.youtube.com/watch?v=JB_dI_awqQI,0,0,{'T ONLINE'},1,youtube,video,original video,amber laura heard is an american actress. heard first gained mainstream recognition for supporting roles in the action film never back down and the stoner comedy pineapple express.,,,,,,,,840.0,,0.0,0.0,"no, amber heard was not fired from aquaman 2 | t online",,,,,,,,,, +740,https://www.youtube.com/watch?v=3rGzb6UyPIo,0,0,{'WhatsApp ststus'},1,youtube,video,original video,"amber heard status || aquaman movies actress amber heard full hd 4k full screen whatsapp status || + + + + + + +important notice + +disclaimer - + +video is for educational purpose only.copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use. + +thankyou",657.0,13959.0,,,,,,13284.0,12.0,0.0,6.0,amber heard status || aquaman movies actress amber heard full hd 4k full screen whatsapp status ||,,,,,,,,,, +741,https://www.youtube.com/watch?v=4dudw71gkZM,0,0,{'ET Canada'},1,youtube,video,original video,"lil nas x reacts to nike lawsuit over his “satan shoes”. plus amber heard is responding to johnny depp fans and kelly clarkson is looking back at starring in that “american idol” movie. + +#lilnasx #johnnydepp #americanidol + +subscribe to our channel: + +https://www.youtube.com/user/etcanadaofficial + +follow us here: + +http://www.etcanada.com + +facebook: https://www.facebook.com/etcanada + +twitter: http://www.twitter.com/etcanada + +instagram: http://www.instagram.com/etcanada + +0:00 - 3:42 elamin abdelmahmoud talks 'pop chat' +3:43 - 14:48 lil nas x reacts to nike lawsuit +14:49 - 19:04 ariana grande joins 'the voice' +19:05 - 24:49 amber heard replies to johnny depp fans +24:50 - 33:17 jimmy fallon, addison rae tiktok dance controversy +33:18 - 39:19 kelly clarkson's possible early career killer +39:20 - 41:15 breland gets emotional on 'kelly clarkson'",174.0,13198.0,,,,,,12884.0,42.0,0.0,98.0,lil nas x addresses 'call me by your name' controversy,,,,,,,,,, +742,https://www.youtube.com/watch?v=D5CKa_zeepI,0,0,{'Truth Exposé With Bri'},1,youtube,video,original video,"this is a clip from the 2 hour audio recording of the conversation between johnny depp and amber heard, where she admits to chasing johnny through 7 bathrooms, (which she has denied doing) and claims that she is aggressive because he cannot let things go. johnny claims that he can’t let things go because what she does in fights is painful. + +i’m posting this only because i haven’t seen these particular parts of this 2 hour conversation, and i find them to be highly telling of amber’s abuse and gaslighting on johnny, in addition to contradict her testimony in court.",36.0,604.0,,,,,,562.0,0.0,0.0,6.0,amber heard + johnny depp further evidence of abuse & perjury,,,,,,,,,, +743,https://www.youtube.com/watch?v=D5mQ2CvvGt4,0,0,{'Doctor Soup'},1,youtube,video,original video,impromptu stream!,420.0,6992.0,,,,,,6485.0,15.0,0.0,72.0,amber heard goes nuts on twitter again!!!!,,,,,,,,,, +744,https://www.youtube.com/watch?v=Okjdmq8Ihtg,0,0,{'Film Streak'},1,youtube,video,original video,"""let amber keep her roles!"" gal gadot supports amber heard! +amber heard has put herself and johnny depp through a lot! even though most people believed her in the start, then the public and most other celebrities have sided with johnny depp as the case has progressed! however, some celebrities still believe in amber! +gal gadot has defended amber and stated that she wants to work with her in future dc movies! is gal gadot going to get backlash from saying this, or is she entitled to her opinion? what do you guys think? +anyways, we have a lot of new information about the amber heard and johnny depp situation so stay tuned! + +here on film streak we are all about the latest spill in hollywood! you can rest assure that we will bring you all the latest celebrity drama and gossip especially concerning you favorite actors! we´ll also make sure to keep you updated on the newest movie updates and releases – so if you are interested in anything that happens in hollywood, you should make sure to stay tuned! + +and there you have it guys! we hope you enjoyed the video! if you did please consider leaving a like and telling us what you though in the comments! + +here are some links to some of our other videos that you might find interesting as well: +""i lied"" amber heard apologies to johnny depp (ig live video): https://www.youtube.com/watch?v=plyxm0ztstg +emilia clarke reaction before replacing amber heard in aquaman 2! https://www.youtube.com/watch?v=pyxp9wxhuww +johnny depp officially rehired | back in a new pirates of the caribbean 6 movie? https://www.youtube.com/watch?v=utozmdfngvk +elon musk speaks against amber heard & defends johnny depp! +https://www.youtube.com/watch?v=woo2bftrrl4 + +so, if you are interested in anything related to hollywood, make sure to smash that subscribe button to see more of our content in the future! 🎬 https://bit.ly/3kzplqd + +#amberheard #galgadotonamberheard #johnnydepp #justiceforjohnny #filmstreak",21.0,1369.0,,,,,,1262.0,57.0,0.0,29.0,"""let amber keep her roles"" gal gadot supports amber heard!",,,,,,,,,, +745,https://www.youtube.com/watch?v=WIGmgYJ4JaU,0,0,{'Karoline • Magic Trailers'},1,youtube,video,original video,"• as imagens vistas anteriormente neste vídeo não são de minha propriedade. apenas sou responsável pela edição e criação do enredo do book trailer do livro. + +• este romance não me pertence, sou responsável somente pela edição do trailer do livro! todos os créditos da história vão para seu autor(a). +______________________________________________ + +assista em hd (720p) (1080p) + +s i n o p s e • + +lisa sue é a típica adolescente popular. +uma jovem loira de olhos claros invejada pelas garotas e desejada pelos rapazes. +mas os que poucos sabem, é que ela é uma jovem pobre que vive em um lar desestruturado. +para esconder sua verdadeira realidade, ela acaba praticando bullying com outras garotas da sua escola. + +uma dessas tenta suicídio e acaba ficando em coma. + +jack moore ao saber dos motivos da tentativa de suicídio da filha resolve se vingar. +após humilhar a garota na escola, ele a sequestra com a intenção de quebrá-la. + +ele a quebra de todas as formas possíveis. +reconhecendo seus erros ela procura redenção. +ele não acredita em seu arrependimento. +em meio a vingança os dois se apaixonam e vivem uma tórrida paixão. + +será que o algoz liberará sua presa? +será que um coração quebrado consegue perdoar e amar quem o feriu? + +depauperada + +m ú s i c a s u s a d a s • + +in the end - 2wei +(https://youtu.be/xtkckmwmqvu) + +immersion - freshmansound +(https://youtu.be/euaopz8jhvg) + +i g d a a u t o r a • + +@danielle.lidia (instagram) +@lidiadanielle (wattpad) + +e m b r e v e n a a m a z o n • +______________________________________________ + +• b o o k t r a i l e r • + +edição por karoline botinhão + +c o n t a t o • + +magi.ctrailers (instagram) +flowerosa (wattpad) +assessoriamagictrailers@gmail.com (e-mail)",42.0,787.0,,,,,,727.0,3.0,0.0,15.0,"depauperada official book trailer (2021) ben affleck, amber heard, chloë grace moretz | hd",,,,,,,,,, +746,https://www.youtube.com/watch?v=468fHSD-5Nw,0,0,{'Dodo Kids'},1,youtube,video,original video,"when scout the baby deer lost his mom in the forest, he went searching for help. luckily, he found amber — the nicest, most caring rescuer he could ever hope for! amber didn’t know the first thing about taking care of a baby deer, but that didn’t matter. she was determined to help scout have the best life. even if it meant feeding him milk from a glove! + +rescued! tells the stories of real-life animal rescues - some dangerous, some thrilling, but all with the happiest of endings. kids and toddlers who love animals will love these real-life stories about hero rescuers saving dogs, cats, pigs and more! + +watch more rescued!: https://www.youtube.com/watch?v=8zixqxsf4kq&list=pljahjhgj5rmir7xlv2f5qgjeeyid8qhrm + +#animalvideos #videosforkids #animalvideosforkids",19740.0,4743476.0,,,,,,4722412.0,1324.0,0.0,0.0,"lady finds a tiny, lost baby deer in the forest | rescued! | dodo kids",,,,,,,,,, +747,https://www.youtube.com/watch?v=MoPBPgxujp4,0,0,{'Small Screen'},1,youtube,video,original video,"it seems as though emilia clarke might have signed on to replace amber heard as mera in aquaman 2, which is really strange to me. this comes from a recent article in forbes, and i’m not sure about how reliable this is. + +here's the link to our article over on small screen: https://www.small-screen.co.uk/emilia-clarke-signed-on-to-replace-amber-heard-as-mera-in-aquaman-2/ + +intro by 42cutcom. subscribe to his channel over at https://www.youtube.com/channel/ucqsqc5w-yzgqsmdt004nnga + +artwork by dgalexkovalenko. follow him at: https://www.instagram.com/dgalexkovalenko/ + +► subscribe to my youtube channel... +https://www.youtube.com/c/smallscreenco + +►read the website... +http://www.small-screen.co.uk/ + +►follow small screen on... +twitter: https://twitter.com/smallscreenco +facebook: https://www.facebook.com/smallscreenco/ +instagram: instagram.com/smallscreenco/",24.0,374.0,,,,,,329.0,1.0,0.0,20.0,emilia clarke signed on to replace amber heard as mera in aquaman 2?,,,,,,,,,, +748,https://www.youtube.com/watch?v=TxDltzta5TQ,0,0,{'Shadeed Single'},1,youtube,video,original video,#amberheard #aquaman #shorts #shortvideo #mera #johnnydepp,32.0,693.0,,,,,,657.0,3.0,0.0,1.0,aquaman mera whatsapp status - amber heard whatsapp status short video,,,,,,,,,, +749,https://www.youtube.com/watch?v=7dI7BbdVvTc,0,0,{'Fire Amber Heard'},1,youtube,video,original video,so let the truth be known i'm out of town for a few days so i have to reupload sorry but no sorry,2.0,8.0,,,,,,6.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 37,,,,,,,,,, +750,https://www.youtube.com/watch?v=NCoSxp7htZY,0,0,{'Bollygrad Studioz'},1,youtube,video,original video,"this is our conceptual trailer officially created for entertainment purpose. + +aquaman is a 2018 american superhero film based on the dc comics character of the same name. distributed by warner bros. pictures, it is the sixth film in the dc extended universe (dceu). the film was directed by james wan, from a screenplay by david leslie johnson-mcgoldrick and will beall. it stars jason momoa as aquaman, who sets out to lead the underwater kingdom of atlantis and stop his half-brother, king orm from uniting the seven underwater kingdoms against the surface world. amber heard, willem dafoe, patrick wilson, dolph lundgren, yahya abdul-mateen ii, ludi lin, temuera morrison, and nicole kidman appear in supporting roles. + +development began in 2004 but did not gain traction until man of steel was released in 2013. in august 2014, beall and kurt johnstad were hired to write competing scripts. wan signed on as director in april 2015, and in july 2016, the film moved forward with beall's screenplay. the main cast was confirmed through 2016 and early 2017. principal photography began in australia in may 2017, taking place at village roadshow studios on the gold coast, queensland, with additional production teams in canada, italy and morocco. filming concluded the following october. several vendors provided visual effects, ranging from high-detail hair simulations to the creation of cgi animals and locations. + +aquaman premiered in london on november 26, 2018, and was released in the united states on december 21. it grossed about $1.148 billion worldwide, making it the highest-grossing dceu film, the highest-grossing film based on a dc comics character (surpassing 2012's the dark knight rises), the fifth highest-grossing film of 2018, and 20th highest of all-time at the time. the critical consensus on rotten tomatoes says the film ""delivers energetic action with an emphasis on good old-fashioned fun"".[9] the sequel, aquaman 2, is set for release in december 2022, and the spin-off, the trench, is in development, an animated television miniseries title aquaman: king of atlantis set during with the events of the film for hbo max. + +#bollygradstudioz #conceptualtrailer #bollygraditrailers #bollywood #cinemaworld +#cinematrailers + +editor - shubham priyadarshi +concept bgm composed by - akashdeep singh + +social media links- + +subscribe our youtube channels: +1.bollygrad i trailers: +https://youtube.com/channel/ucd0fokcnwmbe2fkijly8cbw + +2.bollygrad film and television institute +https://www.youtube.com/bollygradfilmtelevisioninstitute +follow our other social media handles- +facebook:(https://www.facebook.com/bollygrad.studioz/) + +twitter: (https://twitter.com/bollygrad) + +instagram: (https://www.instagram.com/bollygradstudioz/) + +website: (http://www.bollygradstudioz.com/) archives",75.0,11390.0,,,,,,11248.0,52.0,0.0,15.0,aquaman 2 i official concept trailer | jason momoa | dc comics | amber heard | fanmade,,,,,,,,,, +751,https://www.youtube.com/watch?v=yn5Ez0-kbOQ,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"johnny depp gets a wonderful win against the sun and amber heard! + +let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +☆other platforms☆ + + +•backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + +☆support the channel☆ + +•become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +•if you want to support my channel, please check out my patreon and subscribe star below: + +•patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp #thesun #ngn",1029.0,17217.0,,,,,,15895.0,16.0,0.0,277.0,johnny depp scores big in new ruling as amber heard & the sun take a huge l,,,,,,,,,, +752,https://www.youtube.com/watch?v=iByoIQoBVkM,0,0,{'Neroke5'},1,youtube,video,original video,"as we're all aware johnny depp lost his lawsuit to the sun. while this isn't the main lawsuit and this particular lawsuit would've been hard to win in the first place. the bottom line here is that the msm and hollywood have done everything they can to unperson johnny after this decision despite more than a little evidence to showing what kinda person amber heard was + +long and deep running repercussions for the manosphere justice wasn't served here and if you think that this fact went unnoticed by anybody in the manosphere you're deluding yourself + +https://www.patreon.com/redpillnation +https://www.subscribestar.com/neroke5 + +https://theredpillnation.wordpress.com/ +https://www.facebook.com/groups/948299015199478/ +https://www.youtube.com/channel/ucop0fvcifgnfciuinple8jw +https://www.minds.com/groups/profile/714013773626613760/ +https://www.minds.com/neroke +https://gab.ai/neroke5 +https://www.reddit.com/r/redpillnation/ +https://www.bitchute.com/channel/pgy8abd2bpmb/ +https://neroke1.tumblr.com/ +https://www.brighteon.com/channel/neroke05 +https://twitter.com/pill_nation +https://www.mgtow.tv/@nerokefive +https://parler.com/profile/neroke0five/posts +https://mewe.com/i/nerokefive",3.0,275.0,,,,,,269.0,1.0,0.0,2.0,johnny depp loses lawsuit to the sun newspaper,,,,,,,,,, +753,https://www.youtube.com/watch?v=JtejHlXbMGk,0,0,{'HOLLYWOOD CHATTER'},1,youtube,video,original video,"robert downey jr. proved he is really best friend of our legendary superstar johnny depp 🔥🔥🔥😎 +after so many long time fan favourite 🔥❤️ character jack sparrow and iron man works together + +#johnnydepp #robertdowneyjr. #amberheard #sherlockholmes3 + +follow our fan page + +https://m.facebook.com/hollywood-chatter-109531677503816/?ref=bookmarks + +please 🙏 subscribe our channel for new updates and information about hollywood movies and your favourite superstar +and hit the bell icon for new updates of our channel so you don't miss our latest videos + +copyright disclaimer under section 107 of the copyright act 1976, allowance is made for “fair use” for purposes such as criticism, comment, news reporting, teaching, scholarship, education and research. fair use is a use permitted by copyright statute that might otherwise be infringing.",1315.0,37995.0,,,,,,36485.0,99.0,0.0,96.0,robert downey jr. save his best friend johnny depp from amber heard,,,,,,,,,, +754,https://www.youtube.com/watch?v=nRiI2waOLag,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"amber heard dissed again... + +let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +☆other platforms☆ + + +•live channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + +☆support the channel☆ + +•become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +•if you want to support my channel, please check out my patreon and subscribe star below: + +•patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp",717.0,6937.0,,,,,,6010.0,7.0,0.0,203.0,amber heard dissed again! | even celebrities hate her!,,,,,,,,,, +755,https://www.youtube.com/watch?v=YFSUDD2uoz0,0,0,{'The Spotlight'},1,youtube,video,original video,"jason momoa defends amber heard against johnny depp!!! + +subscribe to the spotlight 👉 https://bit.ly/3txagy1 + +please support this video by commenting #justicefordepp as well as subscribing and giving the video a like to improve the algorithm on youtube and spread awareness for depp! 🏆 + +watch next: ▶️ + +https://www.youtube.com/watch?v=yvpybrarags&t=13s + +https://www.youtube.com/watch?v=lrgawogssbw&t=30s + +https://www.youtube.com/watch?v=h6ag6p31kbo&t=117s + +------------------------------------------------------------------------------------------------------------------------ + +related videos:👇 + +https://www.youtube.com/watch?v=shobyc9vqxm&t=94s + +https://www.youtube.com/watch?v=bck2xms6j8m + +https://www.youtube.com/watch?v=48gguhezu-0 + +why did the couple get a divorce? +with amber heard’s beauty and johnny’s amazing personality, talent, and success we were almost alluded to believe that this super couple may actually work. but if even the strongest couples like brangelina can break up, this is probably next to nothing in front of them. + +so as the cliche series of events of any regular hollywood love story goes, the couple were in love, dated for a while, and boom! married in a few years. but the year following came with quite a quick divorce leaving the couple and the showbiz world with nothing but pure messy drama! + +and here we are, suckers for drama, trying to keep up with the latest gossip on what this couple is up to next. + +what were the crazy events that took place after the divorce? +honestly, the details of the events that took place after the divorce took so many turns that even sherlock holmes would’ve been confused, resulting in him taking quite a long time to unravel the truth. for starters, the divorce involved depp paying amber a whopping 7 million. + +for those of you who do not know who mera is, mera is the female protagonist of the dc billion-dollar grossing movie aquaman which was such a huge success that warner bros. declared the news of there being a sequel almost immediately. + +but all this happened in 2018 when things for amber were all playing out in her favor. fast forward to 2020, the pandemic wasn’t the only concern for her as 2020 brought out so much evidence against her in the 50 million dollar filed by johnny depp that she was trapped, not knowing what step to take next. i think by now it is safe enough to say that this woman will stoop to any level to get things done her way. + +so back to her aquaman debut in 2018, due to the film being quite a hit, warner bros. didn’t want to delay in releasing the sequel which is said to be out in 2022. but the famous petitions against her along with her making constant headlines have left us to wonder if she actually still has a spot on the cast list. for the sake of justice, we truly hope not just warner bros, but the entire showbiz industry thinks twice before casting her. + +has she been getting roles in the film industry considering the blow-up of the scandal? +unlike johnny being rejected for movies he has made his legacy with, amber has been scoring quite a few films. in fact, she has a mini-series on netflix currently running as well as her role in aquaman 2. + +so yes as far as we know she will be coming back on the big screens next year, but her time on screen may be cut short so as to not infuriate the fans further. but hey, did you guys hear about the rumors of emilia clarke being a suitable replacement for amber on the cast?! + +what has amber got to say about her actions and this situation as a whole? +the woman has been seen laughing it off on various occasions. if she is not holding up a strong facade, she is busy coming to her defense with ever-ready tales of lies. +a while back she was seen getting frustrated at how the public has been going against her, causing her to reach an infuriated state hence causing her to state that what is being said is not fair and that no one could take the role of mera from her. + +let us keep all this aside and head on to talking about jason momoa. how does he fit into all of this? aquaman is jason momoa! the hunk is known to have been the main reason why the first aquaman movie was such a big hit and warner bros. is counting on him to do them proud with its sequel too. in fact, the man is said to have brought the comics to life with his acting which truly made the movie gain tons of fans. amber heard aquaman 2 celebrity news clevver news amber heard fired + +#jasonmomoa #amberheard #johnnydepp #amberheardcase #johnnydeppcase #emiliaclarke #aquaman2 #justicefordepp #depp #heard #thespotlight",107.0,8320.0,,,,,,7892.0,161.0,0.0,160.0,jason momoa defends amber heard against johnny depp!!!,,,,,,,,,, +756,https://www.youtube.com/watch?v=TgPy_-iEKE0,0,0,{'Come Geek Some'},1,youtube,video,original video,"exclusive from sausage roll. evidence shows heard committed perjury? + +sausage roll put out an exclusive which details should have been talked about and shows heard did perjure herself. + +https://www.sausageroll.com.au/lifestyle/celebrities/exlusive-missed-irrefutable-evidence-that-amber-heard-guilty-of-perjury/ + +links: https://linktr.ee/comegeeksome + +join this channel to get access to perks: +https://www.youtube.com/channel/uc4ltvxoxgzobqqduv9ixowg/join + +current channel members +jodie galloway +lizz gordon +ghetto tv +scandi on a mission +agnes maccallum +flying without fear +ann-christin mortensen +caroline +tammytalksabout +aleksandra jarosz +lena stensgaard +tina flowers +dawn curry +truebliu nineleven +haley angie +loralie dee +ann brown +horae of peace +jasmine t. redfeather +amanda grout +emma p +nicole turner +enceladuswaters +dísa maria helgudóttir +georgina campbell +marianne erni +irene maiden +zara zohl +laura uk +mary scott +megan o'shea +johnny's girl +claire flavin-jones +lynn bain +jane ruddell +donald dolan +mary turpel +ahyoka ama +sally pascoe +shelley tennant +sunshine +ali bali +penguin 322 +jane durante +sabine möller +videnthecoldone +leah veneau +hanne lærke sommer +morning tea +juanita schutte +jennifer willis +lisa lambert +susan redden +cat meissner +broly the mighty +humble bee +sarah wells +christine b-r +zombqueeen +tammy lockley +michieee +stephanie davis +bonnieb +janette tammaro +wendy postma +maureen kinross +deborah melendy +roamer mgtow +madamebebo +claire jones +mary scott +adriana adams +sarah kat +patti_c +steve kass +john le +kimmhy depp +night train blues +harbenja +l c +gelth walker +laura uk +judith hodgson +lifeofsarcasm +clairmbear +moxxie moon +anne holyday +k. kae-linn allison +megan o'shea +sylvan + +hello and welcome to come geek some! for all things geek, like and subscribe to the channel! + +please ignore or flag spam, negative, or hateful comments. we're here to have a good time. thanks everyone, and enjoy :] + +if you would like to support the channel and help us grow! +donations: https://streamlabs.com/comegeeksome + +i'm an avid adobe premiere pro user and have been for quite some time! i would recommend the software to anyone (if they have the spare money a month) + +ps4 player with pc gameplay now and again. still not used to pc gaming! + +interact with us on twitter! https://twitter.com/comegeeksome1 +twitch: https://www.twitch.tv/geeksomegaming + +#johnnydepp #heard #sausageroll",571.0,5728.0,,,,,,5063.0,0.0,0.0,94.0,exclusive from sausage roll. evidence shows heard committed perjury?,,,,,,,,,, +757,https://www.youtube.com/watch?v=yxNL3uo7l_0,0,0,{'La entropía de Valen'},1,youtube,video,original video,"johnny depp perdió el juicio por difamación contra the sun y por ello, el país se vio en la libertad de llamarlo ""violento"" y ""maltratador de esposas"", pese a la evidencia que indica que fue amber heard la violenta. amén de que lo echaron de piratas del caribe y animales fantásticos. en paralelo, amber heard es contratada por la agencia harry walker, de la que también forman parte el ex-presidente obama o la princesa meghan markle, para dar charlas contra la violencia de género. la carrera de johnny parece caer en picada, incluso aunque haya demostrado que ha sido él el maltratado. así funciona la postmodernidad. #justiceforjohnnydepp #amberheardisanabuser + +► mi equipo: +cámara: https://amzn.to/3f0q8vo +micro: https://amzn.to/3f38nvw +micros de corbata para smartphones: https://amzn.to/32rus99 +foco: https://amzn.to/39zyido +cámara web: https://amzn.to/3hdxaz4 + +► medios y contratación: management@laentropiadevalen.com +► mi tiktok: https://www.tiktok.com/@laentropiadevalen +► productos y merchandising +mi tienda online (camisetas y otros productos): https://shop.spreadshirt.es/la-entropa-de-valen/about + +► donaciones + +❤ en paypal: https://paypal.me/laentropiadevalen?l + +❤ apoyame en patreon: https://www.patreon.com/valentinaortiz + +❤ criptos: +bitcoin: bc1qa3w7a9qxwjshr2pav5j7hrpxum33skxf4fcl6a +ethereum: 0x7602d2befc71f62a785dbce751c0343701a29118 +litecoin: ledwqr8nh8zxrg1aq7r9ix9j9sxmamnohw +tether: 0x7602d2befc71f62a785dbce751c0343701a29118 + + +► redes +mi canal secundario: https://www.youtube.com/channel/uc3vf4ny88pn5ox4a7hj9ylg +mi twitter: https://twitter.com/entropiadevalen +mi facebook: https://www.facebook.com/valentinaortizyt +artículos míos en: https://disidencias.net/ +mi instagram: valensinfiltro_ +https://www.instagram.com/valensinfiltro_/ +leeme en medium: https://medium.com/@contacto.valentinaortiz + +mi mail de contacto: valentina@laentropiadevalen.com + +► utilizo música de: +http://incompetech.com/ +http://www.bensound.com/ + + +¡suscribite si querés! si te gustó el vídeo compartilo con tus amigos, y si no te gustó, compartilo con tus enemigos. para que se jodan. + + +◘ disclaimer ◘ - i do not own the anime, movie, show, music, artwork, documentary, book, or lyrics. all rights reserved to their respective owners!!! this video is not meant to infringe any of the copyrights. this is for promote. + + +◘ copyright disclaimer ◘ +title 17, us code (sections 107-118 of the copyright law, act 1976): +all media in this video is used for the purpose of review & commentary under terms of fair use. all footage, & images used belong to their respective companies. +fair use is a use permitted by copyright statute that might otherwise be infringing.",7171.0,62056.0,,,,,,54151.0,58.0,0.0,676.0,amber heard ➡️ la nueva oradora contra la vio. gen. | maltrató a johnny depp,,,,,,,,,, +758,https://www.youtube.com/watch?v=flr6YYci2E8,0,0,{'Poppin'},1,youtube,video,original video,"#amberheard #ah #amber +amber heard - shocking truth on how she destroyed her own career + + +the two names that are in the center of a major battle in hollywood? you guessed it right, johnny depp and amber heard, courtesy of their messy, very messy, public divorce. today, we’re going to break down how amber heard was her own worst enemy, and ultimately destroyed her own career. +let’s jump into it! + + +click for spiciest gossip🌶️ - https://cutt.ly/rxesg5f + +newest content by poppin +1]bridgerton season 2 - details you need to know! +https://youtu.be/_i2rl3jpg6g + +2]icarly reboot - who are these 2 brand new cast members? +https://youtu.be/hc0nszz0otg + +similar videos +1]how amber heard destroyed her own career +https://www.youtube.com/watch?v=-qhw0ptrdqi&ab_channel=thishappened + +2]how amber heard destroyed her own career +https://www.youtube.com/watch?v=gefwubrffr8&ab_channel=bingewatch + + +the actress began her career in 2003 and saw her ratings improve during her married years. she got big films like magic mike xxl, danish girl, and adderall diaries. she was also cast on television and played a guest role in some shows. + +amber heard was initially told by her friends and family that an acting career would mean that she would have to sacrifice a lot. in fact, amber was told not to come out as bisexual because people in the limelight often face backlash for not being straight. however, she held her ground, kept courage, and came out. +but, honestly speaking, not many people knew who amber heard was. many film stars from the industry have also claimed of not knowing her until her infamous divorce case was the talk of the town. + +like we said earlier, her marriage boosted her acting career, and landed her some pretty sweet deals. let’s look at some of the roles she landed. + +well, for starters she was hired by the warner bros to play the role of mera in aquaman which was such a big deal for her as she had been playing smaller roles till then. this was also accompanied by her being the spokesperson of loreal paris, the world-renowned cosmetics brand. + +alongside these major milestones she hit, she was also appointed as the ambassador for women’s rights at aclu. she also pledged half of her divorce settlement to the group. those were truly some major accomplishments for her after her not-so-great kickstart in hollywood! + +initially, when news broke out about the divorce, and amber’s claims of domestic abuse, everyone was in favor of amber and stood by her side, showering their support. in reality, she made a fool out of the public and her peers by playing the role of the victim. it was just a matter of time before the tables had turned and the truth was finally out about how johnny wasn’t as bad as he was portrayed by her and in fact, he was the victim himself. + +now, how exactly did amber’s career come crashing down? +the truth about her defaming johnny depp, along with various other titbits of information led to media companies thinking twice before hiring her. for starters, the messy divorce proceedings and unwarranted drama almost cost her one of her major roles as mera in the dc movie aquaman, whose decision is still pending. +not only is this at stake but also placed her on the verge of losing the contract that she had with l’oreal paris. to make things worse, the promised donations that she had to make to the aclu body, were allegedly never received. + +a funny twist to all these events is that she was a part of the aclu community and was one who many times spoke against gender-related discrimination and crimes. now, that’s a total maneuver! + +so, what exactly caused her career to come crashing down? +not going to lie, but all the virtual rotten tomatoes that are being thrown at her by the public after the truth about her actions was out, was completely her fault. amber heard had strategically planned all her moves carefully all along. + +she had the prime goal of ruining johnny’s life as well as career, probably for his money as he was once worth 400 million dollars which kept deteriorating till it touched 150 million dollars as of now and is still dwindling due to the massive amounts he has to pay towards the lawsuit. + +doesn’t seem fair that all the backlash has to be borne by him, right?",6.0,143.0,,,,,,137.0,0.0,0.0,0.0,amber heard - shocking truth on how she destroyed her own career,,,,,,,,,, +759,https://www.youtube.com/watch?v=gp_vrDL7YOo,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"johnny depp has two huge wins! + +let me know what you think! + +💕 don't forget to like & subscribe! 💕 + + + +backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + + +become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +if you want to support my channel, please check out my patreon and subscribe star below: + +patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp",1567.0,31224.0,,,,,,29332.0,23.0,0.0,302.0,johnny depp gets two major wins! | judge shuts amber heard down!,,,,,,,,,, +760,https://www.youtube.com/watch?v=Xkr4yxnD2iY,0,0,{'BD TRAILERS ENTERTAINMENT'},1,youtube,video,original video,"aquaman 2 (2022) teaser trailer............. + + + + + + +copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use.",1.0,28.0,,,,,,26.0,0.0,0.0,1.0,"aquaman 2 (2022) teaser trailer concept movie - jason momoa, amber heard",,,,,,,,,, +761,https://www.youtube.com/watch?v=5UapSt_WHZM,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"amber heard claims, on instagram, depp fans are sending death threats to her supporters ? + +hope you enjoyed this video. if you did please consider to become a member of the channel and join our community. + +don’t forget to like, subscribe, share and hit the notification bell. + +thank you for your support, it means more then you could imagine. + +please check out : + +rob's rules store : https://my-store-11481277.preview.teespring.com/listing/rob-s-rules-on-the-go#previewdata=u2fsdgvkx199rozw699zj3m8xtfyu19xx5utv9ofrtltqdktnyudtbv7hiv6yyjv + +tammy tips and tricks : https://instagram.com/tammy.tipsandtrips?igshid=sk5olemcpdhp + +rob’s rebellion star wars channel : + +https://youtube.com/channel/ucneeomqldbqxhdpdmxaq1pg + +rob’s rules discord : + +https://discord.gg/b2r5aubj + +twitter : @wars_everything + +email : estarwars1977@gmail.com + + +#justiceforjohnnydepp +#justicefordepp + +join this channel to get access to perks: +https://www.youtube.com/channel/ucg2qylhnyyxksvv6ve11ijw/join",190.0,1918.0,,,,,,1581.0,1.0,0.0,146.0,video : amber heard said depp fans are sending death threats ??,,,,,,,,,, +762,https://www.youtube.com/watch?v=2uPo0y8afk0,0,0,{'Celebrity Craze'},1,youtube,video,original video,"zack snyder reacts to amber heard´s ban from all dc movies! | celebrity craze + +zach snyder has announced that amber heard is done with dc movies because of her controversy and lies about her ex husband johnny depp. allegedly she has faked most of the accusations against johnny, which has cost both of them a lot of both time, money and energy. + +amber heard was not seen in the new trailer for ""justice league: the snyder cut"" and fans were hyper-happy about it. + +hbo max released the newest trailer for zack snyder's ""justice league"" on sunday march 14, 2020, and it received a lot of praises, with many saying it was better than what was released in 2017. however, many also noticed that heard's name wasn't in the credits and they didn't see her in the trailer, making some wonder if heard has been removed from the movie. + +but fans got thunder-struck when they saw that amber heard is still part of zack snyder's ""justice league'' 4 hours cut. what a trick there snyder. + +#amberheardfired #amberheadcancelled #amberheardcareerover +--------------------------------------------------------------------------------------------------------------------------- +subscribe: https://www.youtube.com/channel/uc-lztlg05etwyjds1jqcv3w/featured?sub_confirmation=1 + +this channel intends to provide the most breaking celeb news, drama and controversies all in one place. also, information not only about celebrities from hollywood film industry but also famous people around the world. we maintain different playlists which you could come back and watch videos from your desired interest category. + +we also promise to keep our viewers entertained. thanks for taking your time to checkout the channel! + +subscribe to never miss a video.",63.0,1784.0,,,,,,1686.0,7.0,0.0,28.0,zack snyder reacts to amber heard´s ban from all dc movies! | celebrity craze,,,,,,,,,, +763,https://www.youtube.com/watch?v=wAdTlgSW2ls,0,0,{'The Spotlight'},1,youtube,video,original video,"amber heard officially gets replaced by emilia clarke in aquaman 2! + +subscribe to the spotlight 👉 https://bit.ly/3txagy1 + +watch next: ▶️ + +https://youtu.be/h6ag6p31kbo + +https://youtu.be/yvpybrarags + +https://www.youtube.com/watch?v=kj_tymvqcto&t=20s + + +------------------------------------------------------------------------------------------------------------------------ + + +related videos:👇 + +https://www.youtube.com/watch?v=1gphbmhdbeo&t=25s + +https://www.youtube.com/watch?v=k-okrp92nlq&t=7s + +https://www.youtube.com/watch?v=uvshwtghmts + + +amber heard replaced by emilia clarke in aquaman 2!? + +the volatile nature of showbiz has yet another juicy scandal to entertain you with. before we get to the details of this video let’s take a minute to take you back a few years down memory lane, when the chemistry between drogo and khaleesi was the only thing everyone was talking about. remember that from game of thrones and how we all were dying to see more of those two? well, there is a high chance of that happening again. just in another movie. + +aquaman was the knight in shining armor to dc after justice league caused immense disappointment amongst the fans. in fact, it is the first movie from dc to hit a billion dollars in its first weekend itself at the box office. this had not happened in a long time, the last such success being the dark knight rises. + +there is a high chance that aquaman’s mera, who previously cast amber heard in its first movie, may no longer play mera in the second part. you may have a tingle in your 6th sense, assuming it having to do with her messy divorce case. + +how did her divorce case turn into a scandal? + most end peacefully but some end up in quite a mess. the same happened in the case of johnny depp and amber heard. they officially were to divorce in 2016, but due to amber getting the divorce involved in a libel case, the divorce procedures carried on. yes, it is true she accused him of being a threat to her and accusing him of engaging in domestic violence while they were married. + +amber, who ruined depp’s career by throwing false allegations and ruin his name publicly, got played by karma and is sitting in the same wretched seat her ex-husband has been sitting in, dreadfully, for the past few years. + +to come back to the present, the truth about amber and her abusive nature is all out. fans are mad at both warner bros and disney turning down depp when instead it should’ve been amber who was turned down. while heard lavishly has been getting roles and parading herself everywhere around hollywood, depp was the one facing the consequences with a damaged career and broken spirits! + +the fans signed a petition to kick her off the cast list. and guess what? the petition has almost a whopping 2 million signatures defending depp! +the petition has been taken so seriously, the entire film industry was speaking about it. due to this fact, this news reached the ears of the warner bros. hopefully, they will take further action, serving justice rightly. + +who is the secret replacement in case amber is to leave? and will she live up to the expectations of the role of mera? + +so yes, rumor has it that this bad behavior of amber will cost her the role of mera, which she totally deserves. the verdict on whether amber will be cast or not has not yet been given by the warner bros, but we hope they do what’s best for them as well as for what’s right. + + +speculations have been going around that emilia clarke, an ex- co-actor of jason momoa, who plays the role of aquaman, is someone everyone has their eyes on. especially the fans. the fans seem very pleased with her replacement and have been pushing this idea on social media. + +emilia clarke is not only a great actress but one who has a great personality in real life too. apart from that, the bond shared between momoa and clarke, both off and on-screen is marvelous. + +what do warner bros have to say about this? + +letting her stay could do some major damage especially when we are in a time where everyone is fighting for their rights as well as for the rights of others. in this case, fans were outraged when this discrimination took place. discrimination against whom you may ask. but it’s pretty evident by now that we are talking about depp. + +depp was not allowed to be a part of the next sequel of the pirates of the caribbean franchise due to this scandal which blew up. in fact, he was asked to step down from his role in fantastic beasts as well. amber truly ruined his career. it is only fair that justice is served cold to her too. +clevver news amber heard aquaman 2 celebrity news + +#amberheard #amberheardfired #aquaman2 #justicefordepp +#emiliaclarke",288.0,6297.0,,,,,,5921.0,46.0,0.0,42.0,amber heard officially gets replaced by emilia clarke in aquaman 2!,,,,,,,,,, +764,https://www.youtube.com/watch?v=uOr94ZQJNGo,0,0,{'The Working Man Podcast'},1,youtube,video,original video,"like, comment & subscribe! #amberheard #aquaman2 + +⬇️cashapp⬇️to donate to the channel: +$theworkingman00 + +➡️social media pages⬇️ +instagram: theworkingman20 +twitter: @theworkingman23 + +chad & tyrone podcast youtube channel +https://bit.ly/2mrdxak + +yahoo style: +https://in.style.yahoo.com/aquaman-2-amber-heard-fired-102634951.html + +fair use disclaimer: +copyright disclaimer under section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favour of fair use.",5.0,35.0,,,,,,26.0,0.0,0.0,4.0,amber heard loses her role in her upcoming movie. guess why... #amberheard | ep 288,,,,,,,,,, +765,https://www.youtube.com/watch?v=K-okrp92NLQ,0,0,{'Crazed Culture'},1,youtube,video,original video,"amber heard officially gets replaced by emilia clarke in aquaman 2!!! + +people are well aware that aquaman 2 is already in the works and is said to start filming within this year, but it appears that some changes are being made in terms of the cast members. over the course of the case between amber heard and johnny depp, fans of the well loved actor, johnny depp, only believed that it would be fair that heard should lose her role in aquaman 2, since johnny depp was fired from potc and also asked to step down in fantastic beast. the case between the two has really put their individual careers to the test and it was only a matter of time before heard’s replacement was announced. allow us to break down the recent news on the situation but first be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! +https://www.youtube.com/crazedculture?sub_confirmation=1 + +and there you have it, the recent updates on amber heard and her career. will amber heard slowly begin to lose more and more job opportunities? is the evidence going to be enough for warner bros to come forward and replace heard? will johnny depp be able to recover from this? let us know what you think in the comments down below! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e + +#amberheard #amberheardfired #aquaman2",4510.0,128979.0,,,,,,123081.0,492.0,0.0,896.0,amber heard officially gets replaced by emilia clarke in aquaman 2!!!,,,,,,,,,, +766,https://www.youtube.com/watch?v=CYlIamQCWJ4,0,0,{'Viral Vision'},1,youtube,video,original video,"disney sends lawyers to defend johnny depp against amber heard in lawsuit +the current case between johnny depp and amber heard is ironically not one about money (for the most part) or property, it’s about character. in this particular case, the “character” of either johnny depp or amber heard. throughout their marriage (which lasted only a year). now, each new development just deepens the rabbit hole. we’ll give you the latest on this. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone! a look at the latest developments between amber heard and johnny depp and their court case against one another. do you have a greater understanding now as to what is happening and where this all might lead? what do you personally feel will happen by the end of this case? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",6236.0,151575.0,,,,,,143679.0,179.0,0.0,1481.0,disney sends lawyers to defend johnny depp against amber heard in lawsuit,,,,,,,,,, +767,https://www.youtube.com/watch?v=KupxxuWAl_I,0,0,{'ryanmost'},1,youtube,video,original video,"✅ lawyers for johnny depp told britain’s court of appeal thursday that the actor’s ex-wife, amber heard, did not donate all of her $7 million divorce settlement to charity as she claimed, part of arguments seeking to overturn a ruling that the actor assaulted heard during the couple’s marriage. the hollywood star is seeking permission to… +💖 please subscribe: https://www.youtube.com/channel/uc5uitz5infvuqregsoir_dq?sub_confirmation=1 +💖 #amberheardcelebsjohnnydeppmoviesentertainmentcelebsmovies + +source: https://etcanada.com/news/759617/lawyers-for-johnny-depp-seek-to-appeal-wife-beater-ruling/",0.0,2.0,,,,,,2.0,0.0,0.0,0.0,"✅ lawyers for johnny depp told britain’s court of appeal thursday that the actor’s ex-wife, amber h",,,,,,,,,, +768,https://www.youtube.com/watch?v=U5vmo6PsK0s,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"we go live saturday at 4 pm est ! +today’s special guest is general zod ! +we will be talking about the latest with johnny depp vs amber heard.",192.0,2977.0,,,,,,2749.0,4.0,0.0,32.0,🔴 live johnny depp vs amber heard latest news and rumors ....,,,,,,,,,, +769,https://www.youtube.com/watch?v=Inviy0-5Sf0,0,0,{'Small Screen'},1,youtube,video,original video,"it’s been revealed to us by sources close to warner bros. pictures that amber heard hasn’t been fired from aquaman 2. + +however, we were told that her scenes are in the process of being pretty drastically cut from the movie. + +we also contacted amber heard’s publicists for comment on the reports that she’s been fired from the upcoming aquaman movie. + +don't forget to like and subscribe! + +intro by 42cutcom. subscribe to his channel over at https://www.youtube.com/channel/ucqsqc5w-yzgqsmdt004nnga. + +► subscribe to my youtube channel... https://www.youtube.com/c/smallscreenco + +►read the website... http://www.small-screen.co.uk/ + +►follow small screen on… +twitter: https://twitter.com/smallscreenco +facebook: https://www.facebook.com/smallscreenco/ +instagram: instagram.com/smallscreenco/",7.0,165.0,,,,,,146.0,0.0,0.0,12.0,exclusive amber heard hasn't been fired from aquaman 2 - but many of her scenes are being cut,,,,,,,,,, +770,https://www.youtube.com/watch?v=1CkIIcD4Eow,0,0,{'eHacker'},1,youtube,video,original video,"deadline spreads misinformation about amber heard's counterclaim for $100 million dollars! + +check out channel membership if you are keen to support the channel! +new members get their names in the credits! + +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com + +want paid promo spots? send me a mail or dm on to the info. above! (starting as low as $5! note via: paypal) + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods + +""podcast series"" means i will not appear on facecam and the edits will usually be light.",452.0,2599.0,,,,,,2017.0,2.0,0.0,128.0,deadline spreads misinformation about amber heard's counterclaim for $100 million dollars!,,,,,,,,,, +771,https://www.youtube.com/watch?v=Q85PjwBfH34,0,0,{'el Playaman'},1,youtube,video,original video,#elplayaman #warnerbros #amberheard,4.0,154.0,,,,,,148.0,1.0,0.0,1.0,amber heard la mas m@mi del dceu...,,,,,,,,,, +772,https://www.youtube.com/watch?v=sIFJP0A7ivY,0,0,{'PapaStanimus'},1,youtube,video,original video,"the rumors suggesting amber heard has been fired from aquaman 2 have been debunked. heard plays xebellian princess mera in the dceu, ever since her first appearance in 2017's justice league. + + +twitch: https://twitch.tv/papastanimus +twitter: https://twitter.com/papastanimus +discord: https://discord.gg/gamerebel + +amber heard 2020 takeaway +amber heard +amver heard johnny depp fight video +amber heard being rude +amber heard audio +amber heard interviews +amber heard johnny depp +amber heard aquaman +amber heard fired from aquaman 2 +amber heard johnny depp audio +amber heard channel +amber heard fired from aquaman +amber heard elon musk",12.0,284.0,,,,,,265.0,1.0,0.0,6.0,amber heard fired from aquaman 2 - she poops in beds!,,,,,,,,,, +773,https://www.youtube.com/watch?v=KiKySpHchhk,0,0,{'Lovelyti TV'},1,youtube,video,original video,"#lovelyti #lovelyti2002 #tisipper +the discord group is now closed. +https://www.youtube.com/channel/ucqzzrnomf-xdut_1_c-mrrw/join +https://www.patreon.com/join/lovelyti +☕go to www.amazon.com/shops/ https://www.lovelytea.net +🌿https://www.dopebeautyproductz.com +today's look😍 +lip color:💄💋: https://amzn.to/2ekhzsl +look of the day: 🛍️👗: http://go.magik.ly/ml/bmn0/ +nail polish: 💅🏾 https://amzn.to/2k7mood +makeup: 🙆https://amzn.to/2i9ivtq +my daily skin care regimen:👸https://amzn.to/2ijftca +vitamins💊that keep me healthy: +https://amzn.to/2kfzwha +https://amzn.to/2hstmka +for advertising rates please email me at lovelyti2002@yahoo.com + ––––––––––––––––––––––––––––––––– +equipment: 🎥 https://amzn.to/2rn2j3q 💻https://amzn.to/2hy1psq +join my other social media platforms: +website: lovelyti.com +twitter +👍https://twitter.com/lovelyti +👍https://www.facebook.com/lovelyti2002/ +👍https://www.instagram.com/lovelyti2002/ +––––––––––––––––––––––––––––––––––––––––––––––– +donations are not required but they're always appreciated +thank you in advance🙏 +patreon donation link: https://www.patreon.com/lovelyti +paypal donation link: https://www.paypal.com/cgi-bin/webscr... +thank you all for your support🙌 + +#trending #celebritynews #talkshow #podcast #gossip (choose 3) +thanks for watching the video [insert video title here]",13924.0,220564.0,,,,,,205414.0,183.0,0.0,1043.0,yt burnout~amber heard fired from aqua-man~lawyer seeks investigation against t.i. & tiny,,,,,,,,,, +774,https://www.youtube.com/watch?v=vUdooGpxXJE,0,0,{'Fire Amber Heard'},1,youtube,video,original video,pop music,2.0,6.0,,,,,,4.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 34,,,,,,,,,, +775,https://www.youtube.com/watch?v=TgbSOKN9MaI,0,0,{'Come Geek Some'},1,youtube,video,original video,"ngn respond to appeal!! livestream companion + +join this channel to get access to perks: +https://www.youtube.com/channel/uc4ltvxoxgzobqqduv9ixowg/join + +current channel members +sunshine +ali bali +penguin 322 +jane durante +sabine möller +videnthecoldone +leah veneau +hanne lærke sommer +morning tea +juanita schutte +jennifer willis +lisa lambert +susan redden +cat meissner +broly the mighty +humble bee +sarah wells +christine b-r +zombqueeen +tammy lockley +michieee +stephanie davis +bonnieb +janette tammaro +wendy postma +maureen kinross +deborah melendy +roamer mgtow +madamebebo +claire jones +mary scott +adriana adams +sarah kat +patti_c +steve kass +john le +kimmhy depp +night train blues +harbenja +l c +gelth walker +laura uk +judith hodgson +lifeofsarcasm +clairmbear +moxxie moon +anne holyday +k. kae-linn allison +megan o'shea +sylvan + +hello and welcome to come geek some! for all things geek, like and subscribe to the channel! + +please ignore or flag spam, negative, or hateful comments. we're here to have a good time. thanks everyone, and enjoy :] + +if you would like to support the channel and help us grow! +donations: https://streamlabs.com/comegeeksome + +i'm an avid adobe premiere pro user and have been for quite some time! i would recommend the software to anyone (if they have the spare money a month) + +ps4 player with pc gameplay now and again. still not used to pc gaming! + +interact with us on twitter! https://twitter.com/comegeeksome1 +twitch: https://www.twitch.tv/geeksomegaming",501.0,4932.0,,,,,,4378.0,0.0,0.0,53.0,ngn respond to appeal!! livestream companion,,,,,,,,,, +776,https://www.youtube.com/watch?v=y5p28nEjVYI,0,0,{'The Body Language Guy'},1,youtube,video,original video,"don't forget to follow me on instagram: +https://instagram.com/thebodylanguageguy + +download my 100+ body language tips here: +https://jesusenriquerosas.com/tips + +chapters: +0:00 signs of a toxic relationship +1:25 first seen in toronto +1:54 the most important couple body language clue +2:23 harry taking the lead +2:53 how are they holding hands? +3:35 harry’s posture +5:26 why meghan is seen as dominant +5:55 meghan’s envy on kate +6:41 how meghan saw kate’s royal wedding +7:14 is meghan really copying diana’s dresses? +8:21 harry’s anger reaction to meghan’s words +9:56 the body language proof that meghan is a narcissist +12:11 a special guest: amber heard! +13:00 was harry looking for a second mother? +14:21 my take on them as a couple +14:41 meghan’s nonverbal reaction to charles and william +15:46 divergences",50706.0,1364770.0,,,,,,1306224.0,1807.0,0.0,6033.0,6 disturbing details of meghan and harry's relationship,,,,,,,,,, +777,https://www.youtube.com/watch?v=tdXBUL9WunQ,0,0,{'This Happened'},1,youtube,video,original video,"johnny depp finally speaks on how amber heard tried to ruin him + +amber heard first accused johnny depp of being violent towards her back in 2016 when she filed a court petition claiming. +amber’s accusations came at the height of the #metoo movement, and the actress was hailed as a “hero” for speaking up about the alleged violence she endured during her relationship with johnny. +but it’s 2021, and the narrative has completely changed. the fans are now convinced amber was the violent one in the relationships and that she tried to frame johnny by co-opting the #metoo movement. +so why do fans think johnny is the real #metoo victim? + +#amberheard #johnnydepp",6322.0,255345.0,,,,,,247217.0,166.0,0.0,1640.0,johnny depp finally speaks on how amber heard tried to ruin him,,,,,,,,,, +778,https://www.youtube.com/watch?v=fZ7oAP_9oDM,0,0,{'eHacker'},1,youtube,video,original video,amber heard called out again on twitter! adam waldman back and pop culture!,429.0,4763.0,,,,,,4245.0,9.0,0.0,80.0,amber heard called out again on twitter! adam waldman back and pop culture!,,,,,,,,,, +779,https://www.youtube.com/watch?v=GJ16lEEUmNU,0,0,{'KILVISH FF'},1,youtube,video,original video,#amberheard #shorts,22.0,312.0,,,,,,286.0,0.0,0.0,4.0,amber heard | aquaman | whatsapp status | #wharan full screen #jhoney #aquamen #aquamen,,,,,,,,,, +780,https://www.youtube.com/watch?v=izclvR4pUsA,0,0,{'Divya Kataria'},1,youtube,video,original video,"hey guys! +in this video i am going to review the loreal 24 hr freshwear foundation.. +i got the shade amber 300 which is the second last shade😑 +in this video we did oxidation test, demo with and without color corrector... +watch full video to know about my opinion on it.. + +product mentioned in the video: +https://www.nykaa.com/l-oreal-paris-infallible-24h-fresh-wear-foundation/p/452549?productid=452549&ptype=product&searchredirect=1&skuid=452558 + + +intro:(0:00) +packaging & details:(0:21) +oxidation test :(1:28) +demo without color corrector: (2:34) +demo without color corrector:(5:53) +layering: (8:20) +transfer test:(10:00) +verdict after 2 hours:(11:20) +pros and cons:(15:30) + +lets chat: +instagram: divyakataria03 +email: katariadivya03@gmail.com + +thanks for watching..",79.0,3970.0,,,,,,3827.0,7.0,0.0,57.0,l'oreal infallible 24h fresh wear foundation || 300 amber ||demo & review || divya kataria,,,,,,,,,, +781,https://www.youtube.com/watch?v=ShObyc9vqXM,0,0,{'Viral Vision'},1,youtube,video,original video,"jason momoa speaks on amber heard being replaced from aquaman 2!? +well break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",10020.0,388660.0,,,,,,374403.0,2295.0,0.0,1942.0,jason momoa speaks on amber heard being replaced from aquaman 2!?,,,,,,,,,, +782,https://www.youtube.com/watch?v=LnMk5bxuJ8E,0,0,{'Fire Amber Heard'},1,youtube,video,original video,look i made no promises,1.0,2.0,,,,,,1.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 40,,,,,,,,,, +783,https://www.youtube.com/watch?v=QN9B7mIZ2g4,0,0,{'Cindy Briden'},1,youtube,video,original video,"there are a lot or rumors floating around the web, youtube and other social media that game of thrones star emilia clarke will replace amber heard as mera in aquaman 2. some of these stories are just click bait and don't really explain the situation. in this video i explain why, at this point, amber cannot be fired from the movie regardless of the public outcry and petitions to do so.",0.0,13.0,,,,,,13.0,0.0,0.0,0.0,why petitions to fire amber heard from aquaman 2 are useless right now.,,,,,,,,,, +784,https://www.youtube.com/watch?v=nAnqz2V-A98,0,0,{'Chadd Sinclair News'},1,youtube,video,original video,"amber heard could be facing jail time in domestic abuse case against johnny depp! + amber heard could be facing jail time! +amber heard could be jailed for three years in domestic abuse case against johnny depp +amber heard could serve up to three years in prison in domestic violence and defamation case against ex-husband johnny depp. +the aquaman starlet can be jailed if found guilty for manipulating and faking evidence in the said lawsuit. +things started to get ugly between the former couple when amber accused johnny of hitting her, as a result of which, she sustained bruises and injuries allegedly. +amber, however, might be guilty of manipulating the evidence she submitted to court regarding this charge, after her stylist samantha mcmillen denied the claims, stating that she saw the actress on those days and see any bruises. +“throughout the day of december 16, 2015, i could see clearly that amber heard did not have any visible marks, bruises, cuts, or injuries to her face or any other part of her bod,” samantha said. +if found responsible of tampering with the evidence, amber could be sentenced for three years. +according to us law firm wallin & klarich, the california penal code section 141 pc states that it is illegal to alter, modify, plant, place, conceal, manufacture or move any physical matter with the intention of causing someone to be charged with a crime. +#amberheard #johnnydepp #jailtime",11.0,118.0,,,,,,102.0,1.0,0.0,4.0,amber heard could be facing jail time in domestic abuse case against johnny depp!,,,,,,,,,, +785,https://www.youtube.com/watch?v=h6ag6P31kbo,0,0,{'The Spotlight'},1,youtube,video,original video,"emilia clarke speaks out about replacing amber heard in aquaman 2!! + +subscribe to the spotlight 👉 https://bit.ly/3txagy1 + +watch next: ▶️ + +https://www.youtube.com/watch?v=yvpybrarags&t=117s + +https://www.youtube.com/watch?v=scxq90o0tqk&t=108s + +https://www.youtube.com/watch?v=gxmh-kctzga&t=1s + +------------------------------------------------------------------------------------------------------------------------ + + +related videos:👇 + +https://www.youtube.com/watch?v=1nli4ahi6v4&t=7s + +https://www.youtube.com/watch?v=shobyc9vqxm&t=86s + +https://www.youtube.com/watch?v=pw2j1sexzpo + +emilia clarke speaks out on being amber heard's replacement in aquaman 2!!! + +rumors have been on the loose of her replacing amber heard on the aquaman sequel after it hit a whopping 1.1 billion dollars over its first weekend. + +but why the change in cast members when the first movie was so successful? + +anyone would almost assume amber to be an angel fallen from heaven. but can the same be said about her personality? after all that went down between her and johnny depp, people are thinking twice about believing her to be the angel, or is she truly just an angel in disguise? + +we have just one word to describe johnny depp and amber heard’s marriage. toxic. in fact, it was so toxic that johnny had his finger severed, resulting in him rushing to the emergency room to get his misplaced finger reattached to his hand. imagine that level of toxicity! + +apart from all the drama going on, many are pretty glad they actually got a divorce and ended the trauma for not only both of them but also the fans that were shipping them to be goals prior to the terrible court scenes. + +jack sparrow has been missing for quite some time and we all by now know why. for those of you who aren't aware why to watch further ahead to find out the real reason behind depp’s absence from the film industry. + +depp is said to be a great person on and off-screen. this was quite believable to all until his ex-wife amber heard played the role of victim accusing him of being the unimaginable - a domestic abuser. this not only broke his spirits but sabotaged his career simultaneously. + +the sad part is that depp lost his role in the upcoming the pirates of the caribbean movie, as well as his role as grindelwald in fantastic beasts due to this one blatant lie. + +hell broke loose amongst his fans. they wanted justice. just like every single person on earth has a voice to be heard, the fans gathered up to declare one strong message to the film industry, especially warner bros. change.org was the platform they all targeted to make sure that depp deserved the justice to the time spent in guilt when he actually wasn’t. + +alas! amber was finally cornered. news on her scandal blew up. she was on every piece of gossip and what was written about her wasn’t at all good. this infuriated her and she took to the media in a very immature way, laughing off the matter at every instance to bursting into fits of anger when people stated that warner bros would sue her. + +she clearly was delusional when she stated that absolutely no one could kick her off the aquaman 2 squad, when all she is, is a cast member and nothing else. + +but would warner bros. wish to lose millions in case they don’t switch their cast? + +fans have apparently voiced their concerns on how they would boycott the movie by not giving it the hype they gave to the first part if amber heard was cast as mera. in fact, they claimed not to watch the movie at all and this is quite a worrisome shift of events at warner bros. but worry about. + +emilia clarke as we mentioned earlier, is everyone’s holy grail on this subject. the chemistry the khaleesi and drogo had is unforgettable, leaving fans to wonder how that would play out if she was to play mera in aquaman 2. + +shooting for aquaman 2 is expected to start in the summer of 2021, but the cast is being quite quiet on the subject. the politics that are going on behind the screens yet are left unknown causing us to wonder what emilia has to say about this. + +emilia has said nothing through words but has actually shown us some evidence that the mother of dragons may actually have already been asked to play the role. the best part to this being, she may have even said yes. how do we know that? + +well, a few of her fans, or rather paparazzi, have claimed to have seen her parading around with red hair. some have even stated the red hair was accompanied by an attire that was green. + +i guess that's proof enough that something big is being hidden from us which may or may not be aquaman 2 related. + +jason momoa has clearly been hushed by warner bros. it’s either that or he personally doesn’t like to get into feuds with his co-actors and prefers to be a man of peace. but whatever may be the reason, from the looks of it, he isn't going to crack anytime soon. clevver news inform overload amber heard aquaman 2 amber heard fired + +#amberheardreplaced #emiliaclarke #aquaman2 #amberheard #johnnydepp",1092.0,36919.0,,,,,,35523.0,110.0,0.0,194.0,emilia clarke speaks out about replacing amber heard in aquaman 2!!,,,,,,,,,, +786,https://www.youtube.com/watch?v=1Vvkifi02HU,0,0,{'Theresa L. Dowling'},1,youtube,video,original video,,1.0,21.0,,,,,,16.0,4.0,0.0,0.0,learn to judge for yourself!! this is the way!! (amber heard playlist!!),,,,,,,,,, +787,https://www.youtube.com/watch?v=zX32wYaBflc,0,0,{'Viral Vision'},1,youtube,video,original video,"disney apologizes to johnny depp after backlash/firing him!?! +the court case with johnny depp in terms of his suit against ex-wife amber heard and the libel case against the various newspapers that have him over the years continues to grow and get more insane with each passing week. especially given recent events. but even with all the pitfalls and setbacks, fans are still demanding that depp be given certain roles back in hollywood and are putting pressure on publishing houses like disney to apologize for forcing him out. allow us to break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone! a look at how fans are demanding that disney apologize to johnny depp for firing him from pirates of the caribbean and that they need to bring him back. as well as the continuous fallout from the court case. does johnny depp have a chance of getting brought back by disney? or do these continued delays in his case prove that he’ll forever be in a state of limbo? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",2849.0,76139.0,,,,,,72269.0,216.0,0.0,805.0,disney apologizes to johnny depp after backlash/firing him!?!,,,,,,,,,, +788,https://www.youtube.com/watch?v=IlJh4dFaYJo,0,0,{'Stevie J Raw'},1,youtube,video,original video,"2021 has so far seen amber heard exposed yet again by johnny depp's lawyer adam waldman and she is panicking with a last ditch effort to save her ridiculous narrative. + +this is outrageous and johnny deserves justice!!! + +johnny depp tribute by inspired with johnny depp - https://www.youtube.com/watch?v=jqng_fs5cyg&t=1391s + +charity link gosh - https://www.justgiving.com/fundraising/stevie-j-raw1 + +petition to get johnny back - https://www.change.org/p/warner-brothers-bring-johnny-depp-back-to-fantastic-beasts?recruiter=24448735&recruited_by_id=229d8750-1a30-0130-d3ed-3c764e04873b&utm_source=share_petition&utm_medium=copylink&utm_campaign=petition_dashboard + +t-shirt link - https://teespring.com/buy-not-a-bot?utm_swu=3426&utm_campaign=edit_live_listing_minor&utm_source=sendwithus_seller&utm_medium=email_transactional&pid=525&cid=101933 + +let's talk. +join us and enjoy! + +sign the petition here!! - https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2 + +johnny depp is innocent and amber heard must be held accountable for what she has done. + +checkout the stream and let us know what you think. + +website - steviejraw.com + +thanks for watching!! + +website - steviejraw.com + +hit that subscribe button for more news & entertainment. + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - steviejraw@outlook.com +#justiceforjohnnydepp #johnnydepp #amberheard",813.0,9322.0,,,,,,8310.0,8.0,0.0,191.0,amber heard exposed by johnny depp's lawyer! she's panicking bigtime!,,,,,,,,,, +789,https://www.youtube.com/watch?v=UDf7Gf6KIfY,0,0,{'UnBoxPHD'},1,youtube,video,original video,"ms. heard and her legal team give there reply to mr. depp's defamation us suit. + +amber heard asks the court to dismiss the case due to it being filed in virginia, instead of california. + +ms. heard goes onto provide the virginia court with reasons why this suit should be dismissed. + +#johnnydepp #amberheard",117.0,3037.0,,,,,,2872.0,3.0,0.0,45.0,amber heard response to johnny depp's us defamation lawsuit,,,,,,,,,, +790,https://www.youtube.com/watch?v=TmGV714XceU,0,0,{'Technical Deep'},1,youtube,video,original video,"aquaman 2 [2022] teaser trailer jason momoa, amber heard [ fan made ] +action movie👌",13.0,222.0,,,,,,207.0,0.0,0.0,2.0,"aquaman 2 [2022] teaser trailer jason momoa, amber heard [ fan made ]",,,,,,,,,, +791,https://www.youtube.com/watch?v=04VF4-9qiGQ,0,0,{'Podcast Now'},1,youtube,video,original video,"let's talk about the latest amber heard news! this time involving a children's hospital! does she need to be fired from aquaman 2? let me know what you think and make sure to subscribe to the channel for more content!! #amberheard #johnnydepp #aquaman2 + +follow us on twitch - https://www.twitch.tv/podcastnow + +subscribe to my second channel!! -https://www.youtube.com/channel/ucwl_77_rksghvimkpjcb3xw + +join our discord server! - https://discord.gg/c2de68m + +follow me on twitter - https://twitter.com/podcastnow15",304.0,5079.0,,,,,,4656.0,12.0,0.0,107.0,amber heard's children hospital controversy is so bad! - what needs to be done!,,,,,,,,,, +792,https://www.youtube.com/watch?v=ESp6yvC3AxA,0,0,{'Iris Babilonia'},1,youtube,video,original video,"maratona definitiva sul caso johnny depp/amber heard. fonti nei commenti. + +se vuoi sostenere il canale, puoi fare qui una piccola donazione ↓ +https://ko-fi.com/irisbabilonia + +- + +(alcune) fonti + +amber heard chiede il divorzio +https://www.ilpost.it/2016/05/26/johnny-depp-amber-heard-divorzio/ +https://www.agi.it/lifestyle/johnny_depp_e_amber_heard_addio_lattrice_chiede_il_divorzio-804606/news/2016-05-26/ + +richiesta di mantenimento +https://www.dailymail.co.uk/news/article-3619346/amber-heard-s-dire-financial-situation-revealed-court-documents-earns-10-000-month-spends-44-000-basic-expenses-clothes-vacations-eating-plus-300-dry-cleaning.html + +amber accusa johnny: +https://www.ilpost.it/2016/05/28/depp-heard-violenza-domestica/ + +amber heard sul washington post: +https://www.washingtonpost.com/opinions/ive-seen-how-institutions-protect-men-accused-of-abuse-heres-what-we-can-do/2018/12/18/71fd876a-02ed-11e9-b5df-5d3874f1ac36_story.html + +traduzione dei documenti legali di amber heard: +https://amberhearditalia.com/2019/04/24/traduzione-dei-documenti-legali-di-amber/ + +falange di depp: +https://www.tmz.com/2016/08/15/johnny-depp-cuts-off-finger-amber-heard-photos/ + +l’accordo: +https://www.ilpost.it/2016/08/17/depp-heard-accordo-divorzio/ + +depp denuncia il “the sun” per diffamazione: +https://www.ilpost.it/flashes/amber-heard-johnny-depp-processo-sun/ + +depp non reciterà in “animali fantastici”: +https://www.ilpost.it/2020/11/06/johnny-depp-animali-fantastici-rinuncia/ + +articolo del the sun denunciato: +https://www.thesun.co.uk/tvandshowbiz/6159182/jk-rowling-genuinely-happy-johnny-depp-fantastic-beasts/ + + +audio: + +il dottor kipper cerca il dito di johnny: +https://www.dailymail.co.uk/news/article-8196065/medics-search-johnny-depps-severed-fingertip-amber-heard-sobs-background.html + +psicoterapia di amber e johnny +https://www.youtube.com/watch?v=dbatzs9tejq&t=2904s + +johnny e amber parlano dell'episodio del bagno: +https://www.youtube.com/watch?v=w9d6x3vadbw + +telefonata: +https://www.youtube.com/watch?v=cg9svqsmnoe&t=1s + + +brani: +life of riley di kevin macleod è un brano autorizzato da creative commons attribution (https://creativecommons.org/licenses/by/4.0/) +fonte: http://incompetech.com/music/royalty-free/index.html?isrc=usuan1400054 +artista: http://incompetech.com/ + +- + +record with: canon 200d +edit with: filmora +mic: rode smartlav+",4543.0,76309.0,,,,,,70921.0,29.0,0.0,816.0,il losco caso di johnny depp: il riassuntone (quasi) definitivo,,,,,,,,,, +793,https://www.youtube.com/watch?v=T9bRcZ0wJvw,0,0,{'What About'},1,youtube,video,original video,"what do you think about these rumors, do you think they are true? +- +- +- +#rumor #amberheard #justiceleague #mera #johnnydepp #justiceforjohnnydepp #castingnews #cyborg #wonderwoman #aquaman #syndercut #rayfisher #dceu #movienews #entertainmentnews #comicbookmovie #dcfandome #entertainment #comicsgate #fandommenace #defundhollywood #warnermedia #hbomax #rant #dccomics #thefandommenace #femalelead #zacksynder #2021movies #theflash",1.0,51.0,,,,,,48.0,0.0,0.0,2.0,"rumor: abuser amber heard, mera, joins the justice league? hollywood rewards the privileged & evil",,,,,,,,,, +794,https://www.youtube.com/watch?v=1DisbAsZOT4,0,0,{'#JohnnyDeppIsARapist!! #JohnnyDeppesracista'},1,youtube,video,original video,,0.0,,,,,,,8.0,0.0,0.0,,you can learn to judge for yourself!! (amber heard playlist!!),,,,,,,,,, +795,https://www.youtube.com/watch?v=pBvEQuI2FIo,0,0,{'eHacker'},1,youtube,video,original video,"amber heard spews lies on tv show about divorce settlement and johnny depp! (from 2018) + +check out channel membership if you are keen to support the channel! +new members get their names in the credits! + +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com + +want paid promo spots? send me a mail or dm on to the info. above! (starting as low as $5! note via: paypal) + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods + +for those interested in why i dislike and criticise disney star wars (link below): + +https://disneystarwarsisdumb.wordpress.com/",950.0,8263.0,,,,,,6835.0,21.0,0.0,457.0,amber heard spews lies on tv show about divorce settlement and johnny depp! (from 2018),,,,,,,,,, +796,https://www.youtube.com/watch?v=j9S93hEuEhk,0,0,{'DHR2 Productions '},1,youtube,video,original video,"website: https://rojakdaily.com/entertainment/article/11686/amber-heard-fired-from-aquaman-2-following-divorce-controversy-here-s-the-full-story + +instagram: https://www.instagram.com/devindadudehughes6864 + +twitter: https://twitter.com/dhr2p?s=09 + +#amberheard #aquaman2 #johnnydepp +amber heard fired from aquamam 2' following divorce controversy? + +-~-~~-~~~-~~-~- +please watch: ""shazam 2 battle of the gods teaser trailer reaction!!!"" +https://www.youtube.com/watch?v=r28xtcboebs + +looking for to this movie gotta watch the first one tho before i watch this second one hit me up on instagram and twitter for promoting this trailer reaction. +-~-~~-~~~-~~-~-",1.0,92.0,,,,,,82.0,0.0,0.0,9.0,amber heard fired from aquamam 2' following divorce controversy?,,,,,,,,,, +797,https://www.youtube.com/watch?v=Da6ao_h_ZeI,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"amber heard’s stans/fans/followers wish death and violence towards johnny depp and. johnny depp fans !! disturbing and disgusting, seriously..... + +hope you enjoyed this video. if you did please consider to become a member of the channel and join our community. + +don’t forget to like, subscribe, share and hit the notification bell. + +thank you for your support, it means more then you could imagine. + +please check out : + +rob's rules store : https://my-store-11481277.preview.teespring.com/listing/rob-s-rules-on-the-go#previewdata=u2fsdgvkx199rozw699zj3m8xtfyu19xx5utv9ofrtltqdktnyudtbv7hiv6yyjv + +tammy tips and tricks : https://instagram.com/tammy.tipsandtrips?igshid=sk5olemcpdhp + +rob’s rebellion star wars channel : + +https://youtube.com/channel/ucneeomqldbqxhdpdmxaq1pg + +rob’s rules discord : + +https://discord.gg/b2r5aubj + +twitter : @wars_everything + +email : estarwars1977@gmail.com + +#justiceforjohnnydepp +#justicefordepp + +join this channel to get access to perks: +https://www.youtube.com/channel/ucg2qylhnyyxksvv6ve11ijw/join",188.0,1517.0,,,,,,1173.0,3.0,0.0,153.0,amber heard’s fans wish death & violence to johnny depp & his fans !!!,,,,,,,,,, +798,https://www.youtube.com/watch?v=gEfWUbRfFR8,0,0,{'Binge Watch'},1,youtube,video,original video,"how amber heard destroyed her own career + +subscribe to binge watch - http://tiny.cc/bingewatch + +watch next 👇 + +amber heard faces prison after this… + +https://youtu.be/dje8bl_blde + +related videos: + +how amber heard destroyed her own career + +https://youtu.be/-qhw0ptrdqi + +amber heard’s lawyer exposes her for ruining johnny depp + +https://youtu.be/pzr2_v4upgi + +amber heard officially fired from aquaman 2 role! (reactions) + +https://youtu.be/qbcexsvjbrm + +amber heard was extremely successful after divorcing johnny depp: she got cast in the +biggest movie franchise of her career - dc's 'aquaman' - became the spokesperson of +cosmetics giant l'oréal paris, as well as american civil liberties union (aclu) ambassador +for women's rights with a focus on gender-based violence. +so many people even claimed they have never heard about amber until this infamous +divorce: “had no idea who she was until that divorce. i didn’t even know that it was her who +played mara!” - one fan said. +however, the tables have turned and now amber heard is finding that her career as an a-list +hollywood actress might be over. she has reportedly been kicked from aquaman 2 and she +is about to lose the contract with l'oreal paris. +so what was the reason for all of these problematic events for amber heard? apparently, +her well-planned strategy to ruin johnny depp’s life has been shattered. and now no one +believes that amber is an innocent victim as johnny showed in a court undeniable evidence +of amber being an abuser (audio, text messages and so on). +heard lost the appeal to dismiss johnny depp’s $50 million defamation lawsuit and we +learned that the aquaman star could be facing up to 3 years of jail time if found guilty of +manipulating evidence against her then-husband. but even beyond the former couple’s +seemingly never-ending legal battle, heard has come under a lot of fire after evidence +presented to the court as part of the lawsuit revealed that she’s physically and emotionally +harassed depp while twisting the narrative in her favor and painting the pirates of the +caribbean actor as a domestic abuser. +in fact, the petition to remove her from aquaman 2 recently reached a whopping 400,000 +signatures and is on its way to passing the half-million threshold. this is essentially the same +kind of backlash and blacklisting that depp had to endure a couple of years ago, so you can +see why fans of the legendary star are asking for justice with such fervency. and now, +according to a new report by cosmic book news, warner bros. has gone forward with firing +heard from aquaman 2 by buying out her contract. +also there was one more petition against amber heard. “a liar and an abuser, a shame for +women,” begins one of two change.org campaigns to remove amber heard, 33, from her +role as global spokesperson for cosmetics brand l’oréal. +and yet, she has claimed in her court declaration countering ex-husband's $50 million +defamation suit against her that her career took a serious hit and she received death threats +that forced her to constantly keep on changing her contact details. +here is what amber declared in her motion to dismiss johnny depp’s lawsuit filed in fairfax +county, virginia circuit court: +""following my highly-publicized separation from johnny, i read accounts in the media +referring to me as a victim of domestic violence. in response, many people called me a liar + +(without ever hearing my story). i was dropped from a global fashion brand's upcoming +campaign. i lost a part of a movie in which i had already been cast. people i have never met +or spoken to threatened me with violence. i received so many death threats i had to change +my phone number on a near-weekly basis.” +isn’t it fair that her career might be over with johnny as it started with him? +as reported by meaww earlier, although heard's career in the entertainment industry began +in 2003 when she appeared in two music videos - kenny chesney's 'there goes my life' +and eisley's 'i wasn't prepared,"" and went onto star in an array of tv shows and movies, her +career really took off in 2015 — the same year when she married depp — when she had +prominent roles in four mainstream movies. + + +now i want to know your opinion. do you think amber heard’s career will be over soon as +she destroyed it on her own? let me know what you think in the comments section down +below. + +binge watch - binge watch is the best source of the latest celebrity news. want to see what's trending today in the hollywood life or hear about the newest celeb gossip? you're in the right place. + +consider subscribing to not miss out on what's trending today in the life of the world's biggest stars. + +#justiceforjohnnydepp #news #bingewatch",23389.0,1025437.0,,,,,,997674.0,464.0,0.0,3910.0,how amber heard destroyed her own career,,,,,,,,,, +799,https://www.youtube.com/watch?v=qZvzB5gry9M,0,0,{'Couch Journo'},1,youtube,video,original video,"this channel is all about movies, cinema, films, oscars, disney, marvel, dc, warner brothers, avengers and all that.",3.0,162.0,,,,,,158.0,1.0,0.0,0.0,hollywood gossip! insane news! amber heard and...,,,,,,,,,, +800,https://www.youtube.com/watch?v=5Dx0osxA6fA,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard attacked depp with a restraining order - for her dogs! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #johnnydepp #amberheard",2139.0,35920.0,,,,,,33244.0,14.0,0.0,523.0,amber heard attacked depp with a restraining order - for her dogs!,,,,,,,,,, +801,https://www.youtube.com/watch?v=wCXcu5Mr9Xo,0,0,{'The Amber Heard Playlist!!'},1,youtube,video,original video,https://www.forbes.com/sites/scottmendelson/2019/01/22/box-office-aquaman-jason-momoa-amber-heard-james-wan-dc-films-johnny-depp/?sh=274a0c3532f7,,,,,,,,66.0,,0.0,,amber's movie out-earned all of johnny depp's movies!! (amber heard playlist!!),,,,,,,,,, +802,https://www.youtube.com/watch?v=kyFLRXSxgPw,0,0,{'Road Guy Rob'},1,youtube,video,original video,"getting a red light ticket feels really crummy. when yellow lights (""change intervals"") are set long enough, red light runners vanish. for safety, why don't we double or triple the length of yellow lights? + +buy me tacos 😀🌮► https://www.patreon.com/roadguyrob +ask a road question ► https://twitter.com/roadguyrob + +check out pt. 2: our brains and yellow lights — https://youtu.be/p_emakrrlbc + +------------------------------- +sources cited: +------------------------------- +""guidelines for timing yellow and all-red intervals at signalized intersections"" +transportation research board, nchrp 731 (2012) +http://www.trb.org/publications/blurbs/168017.aspx + +""review and evaluation of factors that affect the frequency of red light running"" +texas transportation institute: bonneson, brewer, and zimmerman (2001) +https://static.tti.tamu.edu/tti.tamu.edu/documents/4027-1.pdf + +mats järlström's federal lawsuit +https://www.jarlstrom.com/redflex/ + +""wrongly timed beaverton light catches many drivers"" +koin 6 news: tilkin (2017) +https://www.youtube.com/watch?v=bam0o51qqtc + +""mats järlström's victorious 6-year battle over yellow lights"" +koin 6 news: tilkin (2020) +https://www.youtube.com/watch?v=reucy5ep-qo + +""yellow light critic files free speech lawsuit"" +albany democrat-herald, 27 april 2017, p.a9 + +""an explanation of mats järlström's extended kinematic equation"" +institute of transportation engineers: beeber (2020) +march 2020 issue, pp.34-38 +https://www.nxtbook.com/ygsreprints/ite/ite_march2020/index.php#/p/38 + +------------------------------- +additional reading: +------------------------------- +""timing traffic signal change interviews based on driver behavior"" +transportation research record: change, messer, santiago (1985) +http://onlinepubs.trb.org/onlinepubs/trr/1985/1027/1027-005.pdf + +""analysis of yellow-light running at signalized intersections using high-resolution traffic data"" +transportation research part a: policy and practice +lu, wang, wu, and liu (2015) +https://www.sciencedirect.com/science/article/abs/pii/s0965856415000026 + +""comparison of red-light running (rlr) and yellow-light running (ylr) traffic violations in the cities of enna and thessaloniki"" +transportation research procedia: campisi, tesoriere, canale, et. al (2020) +https://www.sciencedirect.com/science/article/pii/s2352146520301228 + +""drivers’ behavior through a yellow light: effects of distraction and age"" +proceedings of the human factors and ergonomics society annual meeting +ohlhauser, boyle, marshall, et. al (2011) +https://journals.sagepub.com/doi/abs/10.1177/1071181311551399 + +""effect of yellow-interval timing on the frequency of red-light violations at urban intersections"" +transportation research record: bonneson, zimmerman (2004) +https://journals.sagepub.com/doi/abs/10.3141/1865-04 + +""the problem of the amber signal light in traffic flow"" +gazis, herman, maradudin (1959) + +------------------------- +time sections: +------------------------- +purpose of yellows: (0:00​) +two choices: (1:16​) +the dilemma zone: (3:03​) +yellow too long?: (4:47​) +methods to set time: (6:00​) +kinematic equation: (7:16​) +calculate it yourself: (9:12​) +mats järlström: (10:48​) +conclusion: (13:19​)",5132.0,122467.0,,,,,,116246.0,68.0,0.0,1021.0,are some yellow lights too short? (math to check it!),,,,,,,,,, +803,https://www.youtube.com/watch?v=b5FkZFk-fdg,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"join this channel to get access to perks: +https://www.youtube.com/channel/ucg2qylhnyyxksvv6ve11ijw/join",274.0,3053.0,,,,,,2702.0,1.0,0.0,76.0,🔴 livestream johnny depp and amber heard discussion.,,,,,,,,,, +804,https://www.youtube.com/watch?v=AZhoFGHnsC4,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"breaking! police bust amber heard with body cams?! she's so done?! + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #johnnydepp #amberheard",2592.0,33565.0,,,,,,30668.0,22.0,0.0,283.0,breaking! police bust amber heard with body cams?! she's so done?!,,,,,,,,,, +805,https://www.youtube.com/watch?v=zWJQ60cfLok,0,0,{'Fire Amber Heard'},1,youtube,video,original video,long story short i forgot maybe new video tomorrow,0.0,2.0,,,,,,2.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 39,,,,,,,,,, +806,https://www.youtube.com/watch?v=OJ1aqVcTDSo,0,0,{'TheQuartering'},1,youtube,video,original video,"protect your pc & support the channel with private internet access! https://privateinternetaccess.com/offer/strm_rm5qzega2 + +the #1 way to support this channel is backing me on subscribestar +https://www.subscribestar.com/thequartering + +become a youtube member! it's the #2 best way to support! +https://www.youtube.com/channel/ucfwe_odi1ytbdjkzusi1nag/join + +follow me +parler-https://parler.com/profile/thequartering/ +twitter-https://twitter.com/thequartering +discord-https://discord.gg/d3tnuwdvzm +subreddit-http://reddit.com/r/thequartering +politics channel -https://www.youtube.com/channel/uc577sigte1cjpdosladwndw +odysee- https://odysee.com/@thequartering:1 +bitchute- https://www.bitchute.com/channel/1t4g52b7i3ox/",7554.0,100189.0,,,,,,90749.0,120.0,0.0,1766.0,a brutal loss for johnny depp as amber heard laughs! his career is over after losing appeal,,,,,,,,,, +807,https://www.youtube.com/watch?v=o2JU4-j6mmQ,0,0,{'Aaron Richmond'},1,youtube,video,original video,,6.0,59.0,,,,,,52.0,0.0,0.0,1.0,amber heard - fired!,,,,,,,,,, +808,https://www.youtube.com/watch?v=keVxslXkMps,0,0,{'Top Moment'},1,youtube,video,original video,"👉 please like , share, comment and subscribe. for more videos. + +dying nadine scene (amber heard) +nadine scene (tosses herself) +dead scene from series: ""the stand"" (2021) + +• original title: ""the stand"" +• episode title (s01e08) ""episode 8"" +• adventure, drama, fantasy +• creators: josh boone, benjamin cavell +• stars: whoopi goldberg, alexander skarsgård, james marsden, amber heard +• imdb: 5,5/10 + + +the stand episode 8 release date +‘the stand’ episode 8 is scheduled to premiere on february 4, 2021, on cbs all access at 3 am et. the miniseries is slated to have a total of nine episodes. + +spoilers ‘the stand’ is also titled ‘the stand.’ it is the penultimate episode of the limited series. if the show follows the stephen king book closely, then the upcoming episode will see glen executed by lloyd after he denies bending his knee to randall flagg. the episode may also see a dying nadine prophetically telling flagg that four men from boulder would be his end. in the book, a livid flagg tosses nadine from the penthouse balcony, thus killing her instantly. the next episode might also see the trashcan man return with the nuclear weapon that flagg wanted. + +titled “the stand,” the stand season 1 episode 8 is soon going to be released. the post-apocalyptic fiction has been getting mixed reviews since its premiere. this show is based on a book penned down by stephen king. it went by the same name and was published back in 1978. the makers took very long to realize that the book is worth having a tv adaptation. + +the stand s01e08: in a world mostly wiped out by the plague and embroiled in an elemental struggle between good and evil, the fate of mankind rests on the frail shoulders of the 108-year-old mother abagail and a handful of survivors. their worst nightmares are embodied in a man with a lethal smile and unspeakable powers: randall flagg, the dark man. + +#thestand #thestand1x8 #thestands1e8 #thestandcast #thestandcbsallaccess #thestandpremiere #thestandepisode8 #thestandtrailer #thestandeps.8 #thestandengsub #thestandseason1 #thestandseries1 #thestandepisode8 #thestandseason1episode8 #thestandfullstreaming #thestanddownloadhd #thestandallsubtitle #thestandfullshow #watchthestandtemporada1capítulo8 #watchthestandsaison1épisode8 #watchthestandseason1episode8fullepisodes #watchthestandseason1episode8fullepisodes #watchthestandseason1episode8fullseries #watchthestandseason1episode8watchonline #watchthestandseason1episode8online",45.0,4636.0,,,,,,4555.0,13.0,0.0,23.0,"the stand. nadine tosses herself from the penthouse balcony, dies instantly (s01e08)",,,,,,,,,, +809,https://www.youtube.com/watch?v=3G3fD54waY4,0,0,{'Celeb Light'},1,youtube,video,original video,"💙 johnny depp speaks up on amber heard releasing new fake evidence! +a british court refused johnny depp’s request to review a judge’s ruling that he violated his ex-wife amber heard in march. the two have been fighting a legal battle for years now since their divorce in 2016. the reason being stated was irreconcilable differences, but later amber accused johnny of abusing her during their marriage! +two court of appeal judges said the fame of hollywood couldn’t question the high court’s denial of his libel suit against the sun newspaper's publicist for naming him a “wife-be*ter” in an editorial. +james dingemans and nicholas underhill, who were the justices for this lawsuit, said the earlier court trial was “full and fair”. the trial judge’s judgments have not been given even arguably to be corrupted by any error of approach or law mistake. +the law concluded that the appeal has no real possibility of success and no other compelling reason for it to be learned. + +if you liked this video guys, please consider leaving a like and give us your thoughts in the comments! + +if you are into the latest hollywood news and the celebrity latest gossip, then you should consider subscribing to the channel! we will be spilling the latest tea for you guys and keeping you updated with the latest entertainment news and all the hottest drama - so make sure to follow along! + +#johnnydepp #deppandheard #amberheard#celeblight",3.0,54.0,,,,,,48.0,1.0,0.0,2.0,johnny depp speaks up on amber heard releasing new fake evidence!,,,,,,,,,, +810,https://www.youtube.com/watch?v=19RP4ruN1Do,0,0,{'Space Scoop'},1,youtube,video,original video,"10 celebs that defended johnny depp from amber heard... +johnny depp is perhaps one of the most versatile actors of his day and age in hollywood. he was born john christopher depp ii in owensboro, kentucky, on june 9, 1963. after he started his acting career he quickly rose to prominence, playing some of the most iconic characters from all our childhood favorites. his star power only grew and he continued his work which has garnered his fame and acclaim. after his ex wife amber heard made some accusations it seemed like his acclaimed career was gonna come to an undignified end. this was not meant to be because any of is fellow actors and actresses came out to defend him against mrs. heard. his lawyers went on to release evidence that has painted amber as the aggressor and jonny as the victim and from what we can see this is true. in this video we go over 10 celebs that defended johnny depp from amber heard... + +if you see this comment “ justice for johnny depp! ” and leave your paypal for a chance to win some money! + +click here to enter our giveaway! +http://www.youtube.com/channel/uc5wiwaxuipadmqh-luc5dow?sub_confirmation=1 + +copyright disclaimer, under section 107 of the copyright act 1976, allowance is made for 'fair use' for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username as youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: https://support.google.com/youtube/answer/1620498?hl=e + +for our monthly giveaway, we give the option to the winners if they’d like to be shown in the video or not. however, to respect their privacy we partially censor their names. + +#johnnydepp #amberheard #savejohnny + +viral vision +10 times johnny depp tried to warn us about ah +https://www.youtube.com/watch?v=gshctsd8hng&ab_channel=viralvision",62.0,3161.0,,,,,,3074.0,8.0,0.0,17.0,10 celebs that defended johnny depp from amber heard...,,,,,,,,,, +811,https://www.youtube.com/watch?v=BjT2Zvt_RtI,0,0,{'TrainerRoad'},1,youtube,video,original video,"what are the best ways to increase your ftp? learn what type of training is more effective, base and threshold training, what suprathreshold is, and more in this quick clip from episode 296 of the ask a cycling coach podcast. + +• find links to mentioned studies and join the discussion on the trainerroad forum: https://bit.ly/3oblvgz + +// become a faster cyclist + +trainerroad gives you structured indoor and outdoor workouts, science-backed training plans, and simple performance-focused analysis tools. + +• build your custom plan: https://bit.ly/370ppoa +• train together with group workouts: https://bit.ly/3rjvuet +• get started: https://bit.ly/3aw0ajp + +// follow the trainerroad team on instagram + +• trainerroad: https://www.instagram.com/trainerroad/ +• amber pierce: https://www.instagram.com/ambermalika/ +• nate pearson: https://www.instagram.com/npearson99/ +• jonathan lee: https://www.instagram.com/leejonathan_/ +• pete morris: https://www.instagram.com/alsoforgotten/?hl=en + +// watch next (a few of our best videos) + +• the chase: an inside look at what it takes to be the best: https://bit.ly/2jdtmhk +• strength training for cyclists: https://bit.ly/2j9ksqj +• how to become a faster mountain biker https://bit.ly/3afhgf7 +• injury prevention, cross winds, tactics for small teams and more: https://bit.ly/2ahkuau +• race analysis – what to do when you bridge to a breakaway: https://bit.ly/38hewfb + +// stay in touch + +• facebook: https://bit.ly/2ykjtk8 +• instagram: https://www.instagram.com/trainerroad/ +• twitter: https://twitter.com/trainerroad +• strava club: https://www.strava.com/clubs/trainerroad",694.0,23568.0,,,,,,22811.0,10.0,0.0,53.0,best ways to increase ftp: threshold or supra-threshold? (ask a cycling coach 296),,,,,,,,,, +812,https://www.youtube.com/watch?v=t2hma7G6zEI,0,0,{'ryanmost'},1,youtube,video,original video,"amber heard is addressing the allegations that ex-johnny depp's legal team has made. in a report from the daily mail, depp's lawyers are trying to appeal his defamation case against the sun and have claimed that heard kept the $7 million settlement from their 2016 divorce instead giving it to the children's hospital los angeles and… +please subscribe: https://www.youtube.com/channel/uc5uitz5infvuqregsoir_dq?sub_confirmation=1 +source: https://etcanada.com/news/732608/amber-heard-responds-to-claims-she-didnt-donate-7-million-johnny-depp-divorce-settlement-to-charity/ +#amberheard, #addressing, #allegations, #that, #johnnydepp, #legal, #team, #made, #in, #report, #from, #daily",0.0,2.0,,,,,,2.0,0.0,0.0,0.0,amber heard is addressing the allegations that ex-johnny depp's legal team has made. in a report fro,,,,,,,,,, +813,https://www.youtube.com/watch?v=6d8BvouLeWw,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"hope you enjoyed this video. if you did please consider to become a member of the channel and join our community. + +don’t forget to like, subscribe, share and hit the notification bell. + +thank you for your support, it means more then you could imagine. + +please check out : + +tammy tips and tricks : https://instagram.com/tammy.tipsandtrips?igshid=sk5olemcpdhp + +rob’s rebellion star wars channel : + +https://youtube.com/channel/ucneeomqldbqxhdpdmxaq1pg + +rob’s rules discord : + +https://discord.gg/b2r5aubj + +twitter : @wars_everything + +email : estarwars1977@gmail.com + +#justiceforjohnnydepp +#justicefordepp",221.0,1242.0,,,,,,912.0,0.0,0.0,109.0,elon musk hid evidence from johnny depp against amber heard !,,,,,,,,,, +814,https://www.youtube.com/watch?v=m11rZT6tDlM,0,0,{'Dreama Collins'},1,youtube,video,original video,"#narcissism​ #amberheard​ #johnnydepp​ #justiceforjohnnydepp​ #virginia​ +facebook page: https://www.facebook.com/narcissistic...​ +facebook group: https://www.facebook.com/groups/51790...​ +buy my book: https://www.amazon.com/dp/1698238916/...​ +buy my soaps: https://www.etsy.com/shop/thesoapsshop​​​ + +buy your ribbon: https://twitter.com/j4jribbon + +ab=abuse +dv=domestic violence +jd=johnny depp +ah=amber heard + +disclaimer: all of the views expressed in this video are of my own opinions and are based on my experiences and research into narcissism.",0.0,10.0,,,,,,10.0,0.0,0.0,0.0,i am too emotionally involved in johnny depp & amber heard's court case. need to practice self care.,,,,,,,,,, +815,https://www.youtube.com/watch?v=T3K5U8LKaf4,0,0,{'Film Streak'},1,youtube,video,original video,"johnny depp reaction to amber heards apology video +celebrity break-ups are a tricky thing. while ending relationships is difficult for all of us, this is exasperated when splitting becomes a public affair. actors johnny depp and amber heard know this all too well, as the former couple has been battling in the press, as well as in court. and now there are rumors about a possible apology from amber heard about all that she had caused his ex husband johnny depp. + +in this video we will attempt to bring you up to speed with the recent happenings in the world of johnny & that of amber heard and end with some reactions from fans of both estranged spouses. this is gonna be lit, you don’t want to skip a moment. + +here on film streak we are all about the latest spill in hollywood! you can rest assure that we will bring you all the latest celebrity drama and gossip especially concerning you favorite actors! we´ll also make sure to keep you updated on the newest movie updates and releases – so if you are interested in anything that happens in hollywood, you should make sure to stay tuned! + +and there you have it guys! we hope you enjoyed the video! if you did please consider leaving a like and telling us what you though in the comments! + +here are some links to some of our other videos that you might find interesting as well: +""i lied"" amber heard apologies to johnny depp (ig live video): https://www.youtube.com/watch?v=plyxm0ztstg +emilia clarke reaction before replacing amber heard in aquaman 2! https://www.youtube.com/watch?v=pyxp9wxhuww +johnny depp officially rehired | back in a new pirates of the caribbean 6 movie? https://www.youtube.com/watch?v=utozmdfngvk +elon musk speaks against amber heard & defends johnny depp! +https://www.youtube.com/watch?v=woo2bftrrl4 + +so, if you are interested in anything related to hollywood, make sure to smash that subscribe button to see more of our content in the future! 🎬 https://bit.ly/3kzplqd + +#amberheardapology #johnnydeppreaction #johnnyandamber #filmstreak",311.0,24298.0,,,,,,23836.0,42.0,0.0,109.0,johnny depp reaction to amber heards apology video,,,,,,,,,, +816,https://www.youtube.com/watch?v=5C9zA4nvo0U,0,0,{'Clownfish TV'},1,youtube,video,original video,"amber heard is rumored to have been fired from aquaman 2 for violating the ""physical fitness"" clause of her contract, and that she may be replaced with emilia clarke. so is heard to fat to play mera, or is it just a smokescreen for warner bros. to get rid of her after repeated pr disasters in the wake of the depp case? + +🤡🐠📺 clownfish tv channels - +💬 clownfish tv (geek commentary) - https://www.youtube.com/c/clownfishtv +🇪🇸 clownfish tv en español (spanish dub) - https://www.youtube.com/channel/uchlb7rolzvap0hvcw3ldgfq +🎮 clownfish tv gaming (video games) - https://www.youtube.com/channel/ucirglgyil5uevdeltx33ehw +🎨 clownfish animation (art and animation) - http://www.youtube.com/c/clownfishanimation + +follow clownfish tv on social media - +► twitter - http://twitter.com/realclownfishtv +► facebook - http://facebook.com/clownfishtv +► instagram - http://instagram.com/realclownfishtv +► d-rezzed - http://d-rezzed.clownfishtv.com + +clownfish tv covers pop culture news on movies, anime, cartoons, comic books, gaming, tv and more. hosted by kneon and geeky sparkles. + +business inquiries can be sent to shoutout [at] clownfishtv.com + +some music and sound fx courtesy of epidemic sound - http://www.epidemicsound.com/ + +#amberheard #aquaman #aquaman2 #johnnydepp #emiliaclarke #mera #dccomics #comics",4492.0,78370.0,,,,,,72441.0,59.0,0.0,1378.0,amber heard fired from aquaman 2 because she's too fat to play mera?!,,,,,,,,,, +817,https://www.youtube.com/watch?v=wOqyKF5XCFs,0,0,{'Enthusiastic messenger'},1,youtube,video,original video,"tried to get amber heard dropped from her role in aquaman, it's claimed.   the pirates of the caribbean actor, 57, texted his sister christi dembrowski, a producer who once had a deal with warner bros. and still had influence at the company, the hollywood reporter reports.  ""i want her replaced on the wb film,"" he egedly wrote in the text.  his text was revealed in justice andrew nicol's 132-page ruling against depp in his libel lawsuit against the sun's publisher for cing him a ""wife beater"".  depp strenuously denies being abusive to heard and accused her of abuse, which she denies.  he reportedly said during the trial that the film he was referencing in his text was aquaman.  in the 2018 film, amber played mena, the love interest of jason mamoa's aquaman.   a petition cing for her firing from aquaman 2 has now received more than 1.5 million signatures.   it was set up by fans who cruelly suggest she ""systematicy crusaded to ruin depp in hollywood"" following their 2017 divorce. ...",0.0,160.0,,,,,,135.0,20.0,0.0,5.0,johnny depp 'wanted amber heard dropped from aquaman' amid abuse allegations,,,,,,,,,, +818,https://www.youtube.com/watch?v=qytu5UK1yww,0,0,{'Chopped Celeb'},1,youtube,video,original video,"amber heard exposed by her assistant for lying! + +actress amber heard is at a low in life after accusations against johnny depp mistreating her completely backfire. new information has now come to light where heard, a known feminist, supposedly stole the story of a member of the #metoo movement for personal gain. james had this and a lot more to say about amber after being fired a few days ago. + +✅ like, comment, subscribe & hit that notification bell for more celebrity content! + +#amberheard #johnnydepp #choppedceleb",779.0,30384.0,,,,,,29492.0,16.0,0.0,97.0,amber heard exposed by her assistant for lying!,,,,,,,,,, +819,https://www.youtube.com/watch?v=J7uiLKbnxfI,0,0,{'HERELUXLIFE'},1,youtube,video,original video,"🖤 amber heard long time plan on making millions of johnny depp +the hate story began on may 23, 2016, when heard filed for divorce from depp and obtained a short-lived restraining order against the oscar-nominated actor. she stated that depp had physically hurt her several times during their relationship and said it had been usually while he was under the influence of medicine or alcohol. +she described that when filing for divorce, an accident had taken place during which depp threw his phone at her, giving her a bruise on her face. however, a police spokesman told folks that an in-depth investigation into the domestic incident radio call found that no crime had taken place. +depp stayed silent on these accusations and announced through his representatives that heard was ""attempting to secure a premature financial resolution by alleging abuse."" + +if you enjoyed the video, make sure to leave a like and tell us what you thought in the comments! + +on hereluxlife we are all about the latest tea spill on your favorite celebrities! we are keeping you updated on the hottest news from all of your favorite celebrities! hollywood news and celeb gossip are amongst the other topics often discussed here on the channel! + +here are some of our videos that you might also like: +amber heard reaction to hollywood officially cancelling her! https://www.youtube.com/watch?v=mrkm6wqeily +johnny depp is broke after amber heard controversy! https://www.youtube.com/watch?v=xsu3nomjhb4 +david dobrik lawyers suing h3h3 for brand damage! https://www.youtube.com/watch?v=rqh-amej1rg + +thanks for watching! consider subscribing if you want more similar content in the future: https://www.youtube.com/channel/uc0ni5mpkm7jalxvudnxy_xq?sub_confirmation=1 + +#amberheard #amberheardevil #justiceforjohnny #hereluxlife",4.0,88.0,,,,,,80.0,0.0,0.0,4.0,amber heard long time plan on making millions of johnny depp!,,,,,,,,,, +820,https://www.youtube.com/watch?v=YuMjeem78d8,0,0,{'Colton'},1,youtube,video,original video,"welcome to the escape pod podcast, your escape from the world around you! in this weeks episode we talk about the newly revealed title, spider-man: no way home, what that title means for the plot of the film as well as what it means for wandavision and doctor strange in the multiverse of madness. we also talk about white vision's reveal in wandavision, jennifer lawrence as sue storm/invisible woman rumors, amber heard fired from aquaman 2 and being replaced by emilia clarke rumors, fake pietro/quicksilver, the sony disney deal and more! + +want your question answered on the show? +submit your questions at https://streamelements.com/escapepodpodcast/tip + +get your epp merch at https://teespring.com/escapepodpodcast",4.0,118.0,,,,,,112.0,0.0,0.0,2.0,meaning of no way home? amber heard fired? white vision! - escape pod podcast 2/28/21,,,,,,,,,, +821,https://www.youtube.com/watch?v=j78SnQ3GuFk,0,0,{'Stevie J Raw'},1,youtube,video,original video,"kristina sexton, amber heards acting coach has nothing but hearsay evidence in her full uk witness statement. amber heard will be exposed along with all of these people who lie on her behalf. + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join + +tubebuddy - https://www.tubebuddy.com/steviejreviews + +art of elysium donation page - https://www.pledge.to/the-art-of-elysium + +justice for johnny depp t-shirts (proceeds go to charity): +design 1 - https://t.co/uycndh9ebj?amp=1 +design 2 - https://t.co/hdmq0wicke?amp=1 +design 3 - https://t.co/lqmeoidmje?amp=1 +design 4 - https://t.co/lkteqqdxhg?amp=1 + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#justiceforjohnnydepp #amberheard #johnnydepp",265.0,2824.0,,,,,,2393.0,7.0,0.0,159.0,amber heard's acting coach kristina sexton - full statement,,,,,,,,,, +822,https://www.youtube.com/watch?v=VsIi2Jk1UKo,0,0,{'Viral Vision'},1,youtube,video,original video,"more celebrities come out defending johnny depp against amber heard *new evidence* +the current court case that is going on between amber heard and johnny depp is reach major levels of hate and spite. what first started out as a war or words and a divorce settlement has now turned into a major battle to protect the image and character of the parties involved. because depp is being called a “wife beater” and heard is being called a liar because of her various claims about johnny being overturned. the question is, who else might get roped into it? we’ll break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +#14 on trending +and there you have it, everyone! a look at the ongoing battle of wills between amber heard and johnny depp! which of these a-listers do you think might also get called into action to try and make sense of everything that is going on? what do you think will be the final resolution for this court fight? how much uglier do you believe it’ll get? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",3902.0,133509.0,,,,,,128437.0,249.0,0.0,921.0,more celebrities come out defending johnny depp against amber heard *new evidence*,,,,,,,,,, +823,https://www.youtube.com/watch?v=kPmGido5chs,0,0,{'Mr. Anybody'},1,youtube,video,original video,"all rights to dc, hbo max & wb +i do not own anything. + +mera snyder cut, +justice league snyder cut mera +amber heard apology, +amber heard channel, +amber heard aquaman, +amber heard johnny depp, +amber heard fired, +snyder's cut joker, +snyder's cut review, +snyder's cut trailer reaction, +snyder's cut justice league trailer, +snyder's cut darkseid, +snyder cut aquaman, +snyder cut announcement reaction, +snyder cut angry joe, +snyder cut avengers, +snyder's cut batman, +snyder cut batman trailer, +snyder cut behind the scenes, +snyder cut comparison +#snydercut #aquaman #justiceleague #hbomax",1451.0,61425.0,,,,,,59244.0,113.0,0.0,617.0,mera - all powers & fights scenes (justice league snyder's cut),,,,,,,,,, +824,https://www.youtube.com/watch?v=07h7unV55NE,0,0,{'Lost Beyond Pluto'},1,youtube,video,original video,"www.nickwallis.com/courtofappeal + + +johnny's appeal: https://youtu.be/ygcwxqpb_ny + + +social media + +patreon: https://www.patreon.com/lostbeyondpluto + + +instagram: https://www.instagram.com/lostbeyondpluto + +twitter: https://twitter.com/lostbeyondpluto + +tumblr: https://lostbeyondpluto.tumblr.com/ + +soundcloud: https://soundcloud.com/lost-beyond-pluto + +music videos: + +blue eyes: https://www.youtube.com/watch?v=wm2-kyp18ww + +once a liar: https://youtu.be/bgwc09ptuhm + +loyalty is dead: https://youtu.be/wfrpztnphm4 + + +stars intro theme by eva grace",2013.0,19548.0,,,,,,17239.0,14.0,0.0,282.0,johnny depp v amber heard (the sun uk): the appeal hearing,,,,,,,,,, +825,https://www.youtube.com/watch?v=nwgqEdiiNKo,0,0,{'InformOverload'},1,youtube,video,original video,"top 10 royal secrets exposed by meghan markle and prince harry - part 2 +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +since prince harry and meghan markle sat down with oprah, it seems the general public has learned a lot about the royal family that, prior to the interview, well we had no clue. some of the biggest headlines have included concerns over how dark their baby’s skin color would be, and that meghan was having an incredibly tough time adjusting to life as a royal. it got to the point that she was contemplating whether or not she still wanted to be alive. it was very bad. and as the days have gone on, more information has come to light, with bonus parts of the interview being released days after the initial airing. we’ve already covered 10 secrets exposed and you guys seemed to enjoy that, so today we’re counting down the top 10 royal secrets exposed by meghan markle and prince harry - part 2 on io. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#meghanandharry​ #theroyalfamily​ #meghaninterview​ #oprha​ #meghanmarkleandprinceharry​ #meghanmarkleoprha​ #meghanmarkleinterview​ #princeharryinterview​ #io​ #informoverload​ #informationoverload​ #celebritynews​ #entertainmentnews​ #youtubenews​ #top10​ #celebritygossip​ #influencergossip​ #celebritytea​ #influencertea + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +jarred bronstein: http://instagram.com/bronst7 + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +matthew holmgren: https://www.instagram.com/matthew.holmgren/ + + +📱instagram: https://www.instagram.com/informoverload +📱facebook: https://www.facebook.com/informoverload/ +📱twitter: https://twitter.com/informoverload +📱reddit: https://www.reddit.com/user/informoverloadreddit +✉️email | contact: informoverload@gmail.com",882.0,22561.0,,,,,,21478.0,51.0,0.0,150.0,top 10 royal secrets exposed by meghan markle and prince harry - part 2,,,,,,,,,, +826,https://www.youtube.com/watch?v=uJLzmhzO7qQ,0,0,{'The Celebrity Pie'},1,youtube,video,original video,"welcome to my channel, ' the family guy'(this is not a compilation channel)! this channel brings out interesting and trending celebrity news with full of entertainment, we create videos on your favorite celebrities, top 10 celebrities, movies, hollywood celebrities, talk shows and many more... + +here all my videos are originally made by me with voice overs, by following youtube copyright terms and conditions. all my clips fall under fair use because i add commentary with my original editing skills and i put a lot of hard work into these videos. + +thank you for your valuable time, if you are interested into these kind of stuff, please consider subscribing to our channel and support my hard work if you enjoy watching our videos regularly. + +subscribe: https://bit.ly/30kr4eb + +#justiceforjohnnydepp #johnnydeppamberheard",18.0,884.0,,,,,,865.0,1.0,0.0,0.0,johnny depp & amber heard: the other side of the story,,,,,,,,,, +827,https://www.youtube.com/watch?v=9WQ7PznGPac,0,0,{'JusticeForDepp'},1,youtube,video,original video,#amberheard #johnnydepp #justicefordepp #justiceforjohnnydepp this video is about ah getting called out about pocketing the device money away from the charities i hope you like it,6.0,83.0,,,,,,73.0,0.0,0.0,4.0,amber heard getting call out about the donations to charities,,,,,,,,,, +828,https://www.youtube.com/watch?v=b3-sAQaBOoY,0,0,{'Canal del crimen'},1,youtube,video,original video,"les presento mi nuevo canal, la crónica inquietante. espero que les guste: https://www.youtube.com/channel/uc7kwleqojdec2wzm-cftyba/featured + +para comprar mi libro ""monstruos humanos"" desde cualquier país: https://www.buscalibre.cl/libro-preventa-monstruos-humanos-envio-a-partir-de-30-de-junio/9789568849412/p/53348492 + +para comprarlo en chile: https://arcanoiv.cl/producto/monstruos-humanos/ + +- para comprar mi libro ""monstruos humanos"" desde chile: https://arcanoiv.cl/producto/monstruos-humanos/ +- para comprar mi libro ""monstruos humanos"" desde cualquier parte del mundo: https://www.buscalibre.cl/libro-preventa-monstruos-humanos-envio-a-partir-de-30-de-junio/9789568849412/p/53348492 +- para comprar mi cómic ""freak show"": https://www.buscalibre.cl/libro-freakshow-cinco-historias-de-circo/9789568849344/p/53264458 + +- no olvides visitar mi canal: https://www.canaldelcrimen.tv/es/ +- si te gustan los cómics y el manga, visita mi tienda: https://bit.ly/2ut4bdk​​​ +- sígueme en instagram: https://www.instagram.com/alvaromatusm/",22517.0,668397.0,,,,,,643835.0,485.0,0.0,1560.0,el asesinato de amber hagerman - documental,,,,,,,,,, +829,https://www.youtube.com/watch?v=42PlaGmtlDM,0,0,{'Movie2Flim Clips'},1,youtube,video,original video,"♡amber heard♡ + +music +------------- +track: skylar grey - everything i need [symphonic orchestra] + + +watch now: https://m.youtube.com/watch?v=kt5oqgoxwl8&feature=youtu.be +artist: skylar grey  + +follow movie2flim clips +------------------ +instagram » https://www.instagram.com/_movie2flimclips/ +facebook » https://m.facebook.com/movie2flim-clips-105218118178649/?ref=page_internal&mt_nav=0 +twitter » https://mobile.twitter.com/movie2flimc?s=01 + + +💌 iam so sorry guys that i will be not able to upload videos everyday because i have exam in february but, i have scheduled some videos so you will get them in every week, bye guys wish me luck for my exam + - thanks for reading + + + + +#aquaman +#skylargrey  +#movie2flimclips + + + + + +thanks for watching........ ❤️youall",28.0,301.0,,,,,,273.0,0.0,0.0,0.0,mera aquaman short video | amber heard #movie2flimclips,,,,,,,,,, +830,https://www.youtube.com/watch?v=J4GaUjqN1lA,0,0,{'ComicBookCast2'},1,youtube,video,original video,"the cbc is an online news outlet & community for nerds of all types. our mission is to deliver content that helps you embrace marvel, dc comics, star wars & other genre films that we all love in a unique way and having a few good laughs in-between. we are dedicated to giving you honest opinions, analytical discussions, and various entertainment. + +become a member ▶▶ https://bit.ly/2zrtl3v +visit out our site at ▶▶ https://www.cbcyt.com + +subscribe now | https://www.youtube.com/comicbookcast2?sub_confirmation=1 + +connect with cbc: +facebook | https://www.facebook.com/thecbcyt +soundcloud | https://soundcloud.com/comicbookcast + +music: +royalty free music by http://audiomicro.com/royalty-free-music +sound effects by http://audiomicro.com/sound-effects + + +important: all images and/or video used is property of their rightful owners. if you would like direct the credit on something specific please contact us through our email and we will respond as soon as we can. + +many of our thumbnails, video images & art are from creators online + +artwork for thumbnails credit [all on instragram] +dgalexkovalenko @ https://www.instagram.com/dgalexkovalenko +cvialet_art @ https://www.instagram.com/cvialet_art +rafagrassetti @ https://www.instagram.com/rafagrassetti/ +britedit @ https://www.instagram.com/britedit/ +spdrmnkyxxiii @ https://www.instagram.com/spdrmnkyxxiii/ +adam_sean_arts @ https://www.instagram.com/adam_sean_arts/ +ultraraw26 @ https://www.instagram.com/ultraraw26/ +erathrim20 @ https://www.instagram.com/erathrim20/ +datrintiart @ https://www.instagram.com/datrintiart/ +lukaswerneck @ https://www.instagram.com/lukaswerneck/ +bosslogic @ https://www.instagram.com/bosslogic/ +psychboz @ https://www.instagram.com/psychboz/ +bobby_art @ https://www.instagram.com/bobby_art/ +marvefx @ https://www.instagram.com/marvefx/ +pabloruizzx @ https://www.instagram.com/pabloruizzx/ +apexform @ https://www.instagram.com/apexform +artoftimetravel @ https://www.instagram.com/artoftimetravel/ +saarukan.psd @ https://www.instagram.com/saarukan.psd +awedope.arts @ https://www.instagram.com/awedope.arts/ +venomhology @ https://www.instagram.com/venomhology/ +jackson_caspersz @ https://www.instagram.com/jackson_caspersz +mizuriau @ https://www.instagram.com/mizuriau/ +lodgiko @ https://www.instagram.com/lodgiko/ +valentinromeroart @ https://www.instagram.com/valentinromeroart +marischabecker @ https://www.instagram.com/marischabecker + +if we use you for thumbnails or in videos and did not list credit contact us and we will fix it as soon as possible, thank you (email please @ comicbookcast2@gmail.com) for credit, thank you!",762.0,19675.0,,,,,,18768.0,18.0,0.0,127.0,aquaman 2 major update on amber heard firing,,,,,,,,,, +831,https://www.youtube.com/watch?v=H0joo-Em7P4,0,0,{'Christina Randall'},1,youtube,video,original video,"insane case of amber hiberling & the 25th story | josh hiberling + + + +📩 business inquiries- christinarandallshow@outlook.com + + +💻 patreon: +https://www.patreon.com/christinarandall + + +🎙 street smarts podcast is available on: +apple (itunes) podcast: https://apple.co/2lb54zx +spotify: https://spoti.fi/3fqid5t +google podcast: https://bit.ly/3dtmsm9 +deezer: https://bit.ly/2ldswou +buzzsprout: https://bit.ly/2wcod5u +iheart radio: https://ihr.fm/2awgy0c + + + +💙videos to watch:💙 +why i went to prison: +https://youtu.be/3abtg6ftntw +3 year prison experience: +https://youtu.be/-eaigmrr30w +what changed me: +https://www.youtube.com/watch?v=xo-8jkxczxo +after i got out: +https://youtu.be/19j8wftpfqw +how i met my husband: +https://youtu.be/v4coahevfym + + + +💻 sources: +dr phil: https://www.youtube.com/watch?v=o7onihz369o +amber hiberling interview: https://www.youtube.com/watch?v=rmey-qstsc8&t=1108s +dr phil has some excellent podcasts on apple podcast about amber hiberling + + + + + + + + + +👦🏻 jadens channel 👦🏻 +https://www.youtube.com/channel/uc69i-c6ztb1ogqayprkkjgg + +christina's 2nd channel/lifestyle channel:💅🏼💄🏋🏻‍♀️👙👠https://www.youtube.com/channel/ucljtymjrbsanpmykfftiskg + + + +lets be friends!!! +💌 do you want to send me something? +mailing address: +p.o. box 3136 +pensacola, fl +32516 + + +👋🏼 instagram: +https://www.instagram.com/christinaarandall/ + +👋🏼 facebook: +https://www.facebook.com/christinarandallofficial/ + + +🥳 my cameo: +https://www.cameo.com/christinaarandall + +join our facebook support group: +https://www.facebook.com/groups/500604687372383/members/ + + + + +📔my ebook: +https://www.amazon.com/broken-fabulous-confident-love-yourself-ebook/dp/b07d5g3c3n/ref=sr_1_1?s=digital-text&ie=utf8&qid=1530991416&sr=1-1&keywords=from+broken+to+fabulous + +🎁amazon wish list: +https://www.amazon.com/gp/registry/wishlist/2igl7t2l2zm6m/ref=nav_wishlist_lists_1 + +💻need a youtube/facebook banner made? check out- +http://www.fiverr.com/s2/212b4b7b8b + +my merch artist: +https://www.instagram.com/rahmonaz/ + + + + + + +disclaimer ‣ this video is not sponsored by any of the brands mentioned in this video. some links may be affiliate links, they do not cost you anything, but i make a small percentage from the sale. you can always trust me to give you my 100% honest reviews on my channel, thank you so much for watching and supporting me. + + +🎶 music 🎶 + + +outro song: +https://www.youtube.com/watch?v=c6iaumag3dc",23089.0,461391.0,,,,,,434468.0,307.0,0.0,3527.0,insane case of amber hiberling & the 25th story,,,,,,,,,, +832,https://www.youtube.com/watch?v=r5aa00tfyU4,0,0,{'Lost In the Reel'},1,youtube,video,original video,"lost in the reel presents... + +our new segment ""lost in the episode"", where we will be watching a new show and giving first impressions, then following up every week with a spoiler recap and review, and lastly finishing off the season with our final thoughts! tune in this friday for our recap of episode 5 of ""the stand""! check it out now on cbs all access, which you can stream through your amazon prime account. + +after the world is in ruins, due to a man-made plague, a battle of biblical proportions ensues between the survivors. + +creators: josh boone, benjamin cavell +stars: whoopi goldberg, alexander skarsgård, james marsden, greg kinnear, heather graham, amber heard, odessa young, owen teague, jovan adepo, and henry zaga + +follow us on letterboxd: +https://letterboxd.com/lostinthereel/ +keep track of shawn's ranking of every 2021 film that he has seen! + +follow us on instagram: +https://www.instagram.com/lostinthereel/ + +follow us on facebook: +https://www.facebook.com/profile.php?... + +original theme music by: conner jackson +follow him on instagram: +https://www.instagram.com/connerwithane + +enjoy!",18.0,522.0,,,,,,495.0,0.0,0.0,9.0,"""the stand"" episodes 1-4 review | non-spoiler first impressions",,,,,,,,,, +833,https://www.youtube.com/watch?v=iowZLFpm0nc,0,0,{'TUBE RADIO'},1,youtube,video,original video,"#enteratecontuberadio #tuberadio #noticias +https://www.youtube.com/channel/ucmrh... +twitter: https://twitter.com/tuberadio985 +instagram: https://www.instagram.com/tuberadio/ +¡no olvides compartir esta publicación en tu muro de facebook y con tus seguidores de twitter",4815.0,93990.0,,,,,,88742.0,108.0,0.0,325.0,"zack snyder revela justice league 2, ¿echaron a amber heard de aquaman 2 por gorda? jupiters legacy",,,,,,,,,, +834,https://www.youtube.com/watch?v=VZYO44kG2Fg,0,0,{'Clownfish TV'},1,youtube,video,original video,"amber heard's legal team has subpoenaed disney. she wants all communication between the mouse house and johnny depp during pirates of the caribbean 4 filming so they can go digging for evidence against him. has she just gotten herself black listed from future disney projects? probably. mickey doesn't like to be threatened... + +🤡🐠📺 clownfish tv channels - +💬 clownfish tv (geek commentary) - https://www.youtube.com/c/clownfishtv +🇪🇸 clownfish tv en español (spanish dub) - https://www.youtube.com/channel/uchlb7rolzvap0hvcw3ldgfq +🎮 clownfish tv gaming (video games) - https://www.youtube.com/channel/ucirglgyil5uevdeltx33ehw +🎨 clownfish animation (art and animation) - http://www.youtube.com/c/clownfishanimation + +follow clownfish tv on social media - +► twitter - http://twitter.com/realclownfishtv +► facebook - http://facebook.com/clownfishtv +► instagram - http://instagram.com/realclownfishtv +► d-rezzed - http://d-rezzed.clownfishtv.com + +clownfish tv covers pop culture news on movies, anime, cartoons, comic books, gaming, tv and more. hosted by kneon and geeky sparkles. + +business inquiries can be sent to shoutout [at] clownfishtv.com + +some music and sound fx courtesy of epidemic sound - http://www.epidemicsound.com/ + +#disney #amberheard #johnnydepp #piratesofthecaribbean #aquaman",4311.0,88866.0,,,,,,83808.0,40.0,0.0,707.0,amber heard drags disney into johnny depp defamation case?!,,,,,,,,,, +835,https://www.youtube.com/watch?v=Phv3IygfpnE,0,0,{'Doctor Soup'},1,youtube,video,original video,"#justiceforjohnny depp + +we will be discussing amber heard and johnny depp by a lovely professional guest i have here. + +amber heard and johnny depp continue to go at it. we all know the true perpetrator, depp is innocent, heard not. learn more in this video. + +thank you to the original depp head for this source: +https://twitter.com/originalguest/status/924740676872437771/photo/1 + +twitter: iamdrsoup +other awesome channels: +sec +stevie j raw +come geek some +lost beyond pluto",332.0,2145.0,,,,,,1724.0,0.0,0.0,89.0,amber heard admit to all years ago?! she planned this!?,,,,,,,,,, +836,https://www.youtube.com/watch?v=hknBIRc_irA,0,0,{'Laura MBelgique'},1,youtube,video,original video,"remerciements aux deux chaînes qui m'ont facilité la tâche : +https://www.youtube.com/channel/ucmsskbr7au98mgji41nkbbw +(s nicole m) + +https://www.youtube.com/channel/ucg0c-n_mpyyoxyf4t3jmxnq (incredibly average) + +la traduction a été réalisée selon mes mots, elle n' est pas parfaite mais j'espère qu'elle vous aidera à mieux comprendre les propos partagés lors des enregistrements. + +bon visionnage ! +#justiceforjohnnydepp +#johnnydepp",20.0,1096.0,,,,,,1057.0,0.0,0.0,19.0,johnny depp et amber heard audio part.1 français,,,,,,,,,, +837,https://www.youtube.com/watch?v=rhiqiDRt_1s,0,0,{'Incredibly Incredible'},1,youtube,video,original video,"this video is a clip which was excluded from the cut-up, edited and leaked recording by johnny depp’s team in january. the full version was recorded by johnny depp and amber heard during their marriage (september 2015). the full recording is being used as evidence in the johnny depp v the sun uk libel case. depp decided to sue the sun for publishing an article where they brand him a ‘wife-beater’, for abusing his then wife, amber heard. + +when the cut-up/edited 46 minute version leaked in january by depp’s team, it was made to portray a certain narrative and was used as propaganda. it was leaked 6 months before the trial began and used to lead people and potential jurors to believe that it was somehow an official piece of evidence, which it was not. it was incomplete. + +if you’d like to read the official case documents, they can be found here: https://www.nickwallis.com/depp-trial + +this recording was obtained through courttv and can be found here: https://www.courttv.com/news/amber-heard-witness-statements-depp-blamed-the-monster-for-physical-verbal-abuse/ + +you can listen to the full recording here: https://youtu.be/k9pbrbmhi58 + +comments are disabled to combat abuse.",,,,,,,,1779.0,,0.0,,amber heard & johnny depp talk the ‘monster’ / audio,,,,,,,,,, +838,https://www.youtube.com/watch?v=Ot4aTxTIIDc,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"amber heard has decided to take to twitter to attack johnny depp's fans... let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +☆other platforms☆ + + +•backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + +☆support the channel☆ + +•become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +•if you want to support my channel, please check out my patreon and subscribe star below: + +•patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp",391.0,4292.0,,,,,,3722.0,2.0,0.0,177.0,amber heard attacks johnny depp fans! | a new low is reached!,,,,,,,,,, +839,https://www.youtube.com/watch?v=ff64g37R-H8,0,0,{'Celeb Now'},1,youtube,video,original video,"amber heard's own team exposed her for assaulting johnny depp..here's why! + +amber went on to file a lawsuit against him, which has brought some pretty negative attention their way, but which till now, affected only depp. thanks to fans' support, johnny has been talking about his past relationship recently. + +by doing so people found out he had been setting out hints revealing the truth about his past marriage and his ex-wife accusations. and it seems that after all this time, her accusations and her statements were never really lined up. watch this video to understand how amber’s team accidentally exposed her lies. + +#amberheard #johnnydepp #amberexposed + +related videos: + +amber heard speaks on johnny depp losing the case +https://www.youtube.com/watch?v=2a0txmexrx8 + +amber heard takes a massive hit as she's no longer protected! +https://www.youtube.com/watch?v=pi9oivzsyfi + +celebrities defending johnny depp against amber heard (elon musk, jason momoa, sia, alice cooper) +https://www.youtube.com/watch?v=bck2xms6j8m + +zack snyder speaks on amber heard´s ban from all dc movies +https://www.youtube.com/watch?v=6-6braotgdg + +i do not take any ownership of the music displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes only.",25.0,680.0,,,,,,649.0,1.0,0.0,5.0,amber heard's own team exposed her for assaulting johnny depp..here's why!,,,,,,,,,, +840,https://www.youtube.com/watch?v=MMfzHV7TVBk,0,0,{'Icônes'},1,youtube,video,original video,"amber heard vit un des pires moment de sa vie, après avoir appris qu’elle risquait la prison, pour avoir fourni de fausses preuves au procès contre johnny depp. +cependant, l’actrice a avoué un grand secret qui a laissé tout le monde bouche bée. + +abonne-toi et ne perd aucune information sur tes célébrités préférées ! http://bit.ly/yt-icones. suis-nous sur facebook http://bit.ly/fb-icones. + +trouve de nombreux articles pour lire et te divertir sur notre site http://bit.ly/web-upsocl. + +contenu distribué par upsocl.com.",6.0,1045.0,,,,,,1039.0,0.0,0.0,0.0,amber heard pourrait finir en prison,,,,,,,,,, +841,https://www.youtube.com/watch?v=CLe_y2GDiTE,0,0,{'Incredibly Incredible'},1,youtube,video,original video,"this video is a clip which was excluded from the cut-up, edited and leaked recording by johnny depp’s team in january. the full version was recorded by johnny depp and amber heard during their marriage (september 2015). the full recording is being used as evidence in the johnny depp v the sun uk libel case. depp decided to sue the sun for publishing an article where they brand him a ‘wife-beater’, for abusing his then wife, amber heard. + +when the cut-up/edited 46 minute version leaked in january by depp’s team, it was made to portray a certain narrative and was used as propaganda. it was leaked 6 months before the trial began and used to lead people and potential jurors to believe that it was somehow an official piece of evidence, which it was not. it was incomplete. + +if you’d like to read the official case documents, they can be found here: https://www.nickwallis.com/depp-trial + +this recording was obtained through courttv and can be found here: https://www.courttv.com/news/amber-heard-witness-statements-depp-blamed-the-monster-for-physical-verbal-abuse/ + +you can listen to the full recording here: https://youtu.be/k9pbrbmhi58 + +comments are disabled to combat abuse.",,,,,,,,1377.0,,0.0,,amber heard says she doesn’t trust johnny depp / audio,,,,,,,,,, +842,https://www.youtube.com/watch?v=J0MrWUvVOek,0,0,{'Kurono'},1,youtube,video,original video,"stream from thursday 1/28/2021 +donate to support the channel: https://www.paypal.com/paypalme/777kurono777 +huge amber heard news as the lapd, disney, and twitter destroy heard's lies! @thatumbrellaguy +#thatumbrellaguy #disney #johnnydepp #amberheard",71.0,689.0,,,,,,604.0,1.0,0.0,13.0,"thatumbrellaguy: huge amber heard news as the lapd, disney, and twitter destroy heard's lies!",,,,,,,,,, +843,https://www.youtube.com/watch?v=c5gsUUjTwRY,0,0,{'Purposely Curious Podcast'},1,youtube,video,original video,"on this episode of purposely curious, we discuss the ongoing saga between johnny depp and amber heard. johnny depp was accused of domestic violence and called a wife beater by the sun despite their being ample evidence that amber heard may have lied multiple times and was herself an aggressor. get nice and cozy as we dive into this drama filled case.",3.0,35.0,,,,,,29.0,0.0,0.0,3.0,ep 23 the amber heard vs johnny depp saga take 2,,,,,,,,,, +844,https://www.youtube.com/watch?v=E-TSmB66iQ4,0,0,{'MARZ'},1,youtube,video,original video,"help me achieve my goal by joining my channel!||||||||||||||| 105% ||||||||||||||| 111/105 joined. +➡️ hit the [subscribe] button or click here to sub:https://vod.run/s/uc0wxcmp1qwnrrdcphzmtidw +*** ⭐ newest subscriber:sealie bag ⭐ *** +tip here:https://mercury.streamelements.com/kagemarz/tip +latest tipper:",8.0,184.0,,,,,,169.0,2.0,0.0,5.0,amber heard gets ran through by elon musk (how to lose domestic violence case speedrun) johnny depp!,,,,,,,,,, +845,https://www.youtube.com/watch?v=DAsoO0HI3u0,0,0,{'Keeley Talks'},1,youtube,video,original video,amber heard calls jd fans cute 🤣,67.0,1177.0,,,,,,1075.0,2.0,0.0,33.0,amber heard calls johnny depp / adam waldmen supporters cute,,,,,,,,,, +846,https://www.youtube.com/watch?v=Y6gUTTOGE7M,0,0,{'Colonel Kurtz'},1,youtube,video,original video,"amber heard analysis part 2: interviews and psychological documentary + +i analyze two paywalled interviews/articles about amber heard that i find very interesting due to the skeptical and humorous comments of the writer. this video is a short treat for those of you who loved my 2-hour analysis of amber heard's psychology in part 1. i also discuss the situation with johnny depp. + +link to part 1: https://www.youtube.com/watch?v=i3x_tuqigw8&t=716s + +tip jar: https://www.paypal.com/donate?hosted_button_id=z65d3ull278sw + +patreon: https://www.patreon.com/colonelkurtz?fan_landing=true + +bitcoin wallet: 3mdstdvxdhc1vgzijqcounxk7afxttg9ar + +please subscribe to my channel for more pop culture videos and controversies.",764.0,11130.0,,,,,,10147.0,7.0,0.0,212.0,amber heard analysis part 2: interviews and psychological documentary bio,,,,,,,,,, +847,https://www.youtube.com/watch?v=O188LZg5jls,0,0,{'INDIAN SHARE MARKET'},1,youtube,video,original video,"#elonmusk #elon musk + +#elon musk +elon musk net worth +elon musk twitter +elon musk baby name +elon musk wife +elon musk children +elon musk kid name +elon musk kids +elon musk baby +elon musk girlfriend +elon musk education +tesla elon musk baby name +grimes and elon musk +elon musk grimes +elon musk age +elon musk and grimes +twitter elon musk +who is elon musk +elon musk spouse +elon musk neuralink +x æ a-12 musk elon musk +grimes elon musk +elon musk sons +elon musk house +elon musk iq +elon musk flamethrower +elon musk companies +how old is elon musk +elon musk internet +elon musk spacex +elon musk height +elon musk starlink +elon musk brain chip +elon musk wiki +elon musk tesla +elon musk tweet +joe rogan elon musk +where is elon musk from +amber heard elon musk +elon musk paypal +elon musk quotes +elon musk mom +elon musk kid +elon musk young +elon musk news +elon musk grimes baby name +elon musk instagram +elon musk child name +x ae a-12 elon musk +elon musk coronavirus +elon musk hair +elon musk joe rogan +elon musk stimulus package +elon musk satellite internet +elon musk covid +elon musk biography +elon musk song +elon musk nationality +elon musk bitcoin +elon musk amber heard +elon musk tweets +elon musk parents +elon musk wife grimes +elon musk mother +elon musk worth +elon musk trump +elon musk satellites +how did elon musk make his money +elon musk son name +elon musk spacex starlink satellites +neuralink elon musk +elon musk child +elon musk dogecoin +elon musk mars +how to pronounce elon musk +tesla elon musk +where does elon musk live +elon musk interview +elon musk book +how much is elon musk worth +elon musk stock +is elon musk married +elon musk smoking weed +elon musk net worth 2020 +elon musk wikipedia +elon musk memes +elon musk family +elon musk rocket +elon musk rick and morty +elon musk tesla stocks +elon musk bald +elon musk satellite +elon musk baby name pronunciation +elon musk car +elon musk brother +elon musk father +where was elon musk born +tesla stock elon musk +elon musk smoking +elon musk weed",1.0,34.0,,,,,,32.0,0.0,0.0,1.0,elon musk,,,,,,,,,, +848,https://www.youtube.com/watch?v=9F3McrFDOqE,0,0,{'News Live Stream'},1,youtube,video,original video,,0.0,3.0,,,,,,3.0,0.0,0.0,0.0,amber heard 'yet to fullfil' charity pledge of $7 million from depp divorce deal,,,,,,,,,, +849,https://www.youtube.com/watch?v=Gw3jSjp13xc,0,0,{'The Spotlight'},1,youtube,video,original video,"amber heard paid her sister $10,000 to lie about johnny depp in court!! + +subscribe to the spotlight 👉 https://bit.ly/3txagy1 + +watch next: ▶️ + +https://www.youtube.com/watch?v=yvpybrarags&t=10s + +https://www.youtube.com/watch?v=h6ag6p31kbo&t=37s + +https://www.youtube.com/watch?v=3vywz8t4_m4&t=4s + + +------------------------------------------------------------------------------------------------------------------------ + + +related videos:👇 + +https://www.youtube.com/watch?v=9601w6sgh3e&t=85s + +https://www.youtube.com/watch?v=h2tefxa9lvi + +https://www.youtube.com/watch?v=o1rrb3et21c + + +with a lot going on in the news between johnny depp and amber heard, their marriage, their divorce, and the abuse accusations, there is a lot more stirring up in the case! a new document has been circulated which states a nameless party, conjectured to be whitney henriquez, amber heard’s sister. + +it’s nothing but a subpoena! rumour has it that amber heard has paid or let’s say bribed her sister, whitney henriques a hefty sum of 10,000 dollars to give false testimony, against johnny depp. yes, you have heard it right! + +how did the story of johnny depp and amber heard start? + +in short, their story can be covered in four words - courtship, divorce, and domestic abuse. + +johnny depp and amber heard met on the sets of ‘the rum diary’ back in 2009. soon after forming a warm camaraderie, the duo escalated their relationship and became lovers around 2012. both of them split up with their then-partners in the same year. + +but little did they know that this was soon about to make a turn for the worse. + +a fact to note here is that amber heard was arrested on the charge of physically assaulting her girlfriend van ree, which was later resolved, clearing the air. van ree defended her ex-girlfriend amber heard by stating that the police wrongly interpreted the actions and it was all just a misunderstanding. + +well, let’s just say something similar happened between johnny depp and amber heard, because just a year after their marriage, amber heard filed for divorce and accused johnny depp of physical assault. a temporary restraining order was also taken out against her husband. + +what’s the status of the case so far? + +depp has denied amber’s claims of physical assault and has filed a defamation suit against amber heard for a whopping 50 million dollars. and now heard has finally filed her counterclaims, saying that she is the true victim here. + +let’s come back to the defamation case filed by depp against his ex-wife. the case revolves around a 2018 article amber heard wrote in the washington post, about being a survivor of domestic abuse. + +despite johnny depp’s attempts to throw out the case against him, a judge has granted amber heard permission to file her 100 million dollar countersuit in response to the actor’s suit. + +johnny depp’s claims + +amber heard was the abuser in the relationship with johnny depp, as per the claims of his former personal assistant. as a result of this incident, depp spent the entire time in the bathroom after his personal security intervened. during the time the couple took a trip to australia, due to frictions between them, heard threw a bottle of vodka at depp and severed his finger. now, let’s delve into the testimony and the sum of $10,000 offered to whitney henriquez, amber heard’s sister. this document is a subpoena, it states that the person to whom it is addressed has to take a stand, they will be answerable to the court. that is followed by a number of requests for documentation and communications. the amount paid, clearly hints that something is fishy + +if one has to pay for testimony from someone they are close to, precisely their own sister, then the accusations are feeble, lack real evidence, and reasoning. + +to explain what is mentioned in the document, here are two examples: + +request number 1: all documents or communications that refer, reflect, or relate to any physical or verbal (blank) in any form against anonymous and mr. depp. + +request number 2: all communications you and (blank) that refer, reflect, or relate to any physical or verbal (blank) in any form against anonymous and mr. depp. + +lastly, the documentation shows the amounts of monetary payments, gifts, or transfers in value of (blank) to you or for your benefit, with the connection of the defamation case, the divorce action, and or the sun case in the amount of $10,000 or more. an incident back from march 2015, gives a hint of evidence that amber would have perhaps bribed whitney to lie in the court against depp. henriquez justified the actions of heard when she had allegedly punched depp, which she defended by arguing that she threw her fist against him because she felt threatened by the possibility of depp pushing her down the stairs. clevver news amber heard aquaman 2 celebrity news johhny depp case amber heard case + +#amberheard #johnnydepp #thespotlight #johnnydeppcase #amberheardcase #amberheardliar #aquaman2 #jasonmomoa #depp #heard",67.0,1250.0,,,,,,1171.0,1.0,0.0,11.0,"amber heard paid her sister $10,000 to lie about johnny depp (in court)!!",,,,,,,,,, +850,https://www.youtube.com/watch?v=xB6vI76tGN0,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"johnny depp wins again, sorry amber maybe... never! let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +☆other platforms☆ + +•backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + +☆support the channel☆ + +•become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +•if you want to support my channel, please check out my patreon and subscribe star below: + +•patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp #adamwaldmam",802.0,10874.0,,,,,,9891.0,8.0,0.0,173.0,johnny depp scores another giant win leaving amber heard in the dust... once again!,,,,,,,,,, +851,https://www.youtube.com/watch?v=7jwuzoI3O7Y,0,0,{'Robart Lio Aquaman Bots'},1,youtube,video,original video,"bots sign change.org petition over 10,000 times on remove amber heard from aquaman 2. change.org does nothing! won't stop threats or add recaptcha when hiding high volume! by using other social bots, it can be shared. 3,800 signatures times 3 browsers/http requests is over 10,000. +victim is liberal progressives, women's rights, & united nations. +actions by bots can be programmed. + +see blacklivesmatter bot: +https://thepetitionbot.com/ +blm petition bot +tackling social justice through automation +140 petitions—-–—-2 minutes—-–—-70x manual speed +do not donate to change.org. doesn't go to people in petition. + +we're just showing you a simple traffic bot +it's not even programmed to then share on other sites or have +mixed types of bots responding to petition +(some sign, some share, some comment, etc) + +if people really want to stop hate petitions, they will have to expose the industry for what it is +they will continue to make money off the most bots or the most hate + +unless people expose it & tech workers say to stop it. + +they make money off these hate petitions +netzdg or german law is against hate petitions + +bots do not need an api to work. +rotating proxies works and solving captcha. +but this has no captcha +stopping with captcha reduces the time it can sign +but ai engines exist to solve captcha too +it still takes longer +not 20,000 a day as easily +different vpss with different ips +again, you can use multiple devices + +""so even if you still use your bots, signatures will not count."" +lol? actually they do... if using a different ip and no symbols. +google accounts don't require confirmation, especially when code is written to hide detection. + +""thank you for contacting the change.org help center. +this sounds like an important issue, this kind of problem can be a bit worrying. +however, thank you for letting me know about this issue. +i am pleased to help you with this matter. +the signature from bots on the petition will be discounted, +and any other signature that does not meet the requirements. +the reasons why a signature might not be counted are as following: +if someone hasn't confirmed their email address after signing +if more than one person tried to sign from the same device or the same ip address. +their email addresses contain generic words +(generic words or symbols in front of the @, such as admin, info, mail, +, -, etc)."" +not signing with proxies because don't want it to. + +what is the ratio for them to remove or add a silly recaptcha v2? +it's signed thousands and multiple times since 5th, now it's 12th. + +how many threats? +there were graphic images in a now closed reddit hate group. +one shot supporters of amber heard and it showed blood in the cartoon. +another video used the overloader botnet beginning in december, when the synthetic signatures on this petition skyrocketed, on a youtube video with 400k dislikes by social bots. https://youtu.be/uretrfma-io + +adam waldman met with rudy guiliani not long before guiliani with others incited people to do the attack on washington dc jan 6. waldman is the lawyer posting disinformation in this targeting campaign against amber heard. +she said she was strangled and was threatened with being killed many times. +no matter what you say to change, they do nothing. + +thegeekbuzz's article was even posted about on the petition: https://www.thegeekbuzz.com/the-basement/video-reveals-bots-signing-anti-amber-heard-petition/ + +sent them lists of signatures saying: +""doralyn +o'geaney +@gmail.com +total windows 1 +there is no captcha!"" + +""emerging technology speaker series - beyond bots and trolls - understanding disinformation"" + +disinformation spoken about from mozilla - https://www.youtube.com/watch?v=498-c_sjarg + +""strategic information operations (e.g. disinformation, political propaganda, and other forms of online manipulation) are a critical concern for democratic societies—as they destabilize the “common ground” that we need to stand upon to govern ourselves. in this talk, i argue that defending against strategic information operations will require a more nuanced understanding of the problem. in particular, we will need to move beyond focusing on “bots” and “trolls” to looking at the collaborative nature of disinformation campaigns that target, infiltrate, shape, and leverage online communities. drawing from three distinct case studies, i describe how orchestrated campaigns can become deeply entangled within “organic” online crowds —distinguishing between orchestrated, explicitly-coordinated information operations and the emergent, organic behaviors of an online crowd. + +kate starbird is an associate professor at department of human centered design & engineering (hcde) at university of washington (uw). starbird’s research is situated within human-computer interaction (hci)"" +an ai lead claimed to report to youtube about bots +a #diversity, equity, inclusion worker at google could do nothing. + + +this #bot is from russian & indian coders, but they can be hired from anywhere to #code.",7.0,116.0,,,,,,98.0,5.0,0.0,6.0,"bot signs petition aquaman & amber heard 10,000 times, change.org does nothing - social bots hate",,,,,,,,,, +852,https://www.youtube.com/watch?v=7v309LNCW_w,0,0,{'Mr H Reviews'},1,youtube,video,original video,"amber heard just keeps lying is she out as mera for aquaman 2? + + +buy my bluray and support original film - https://www.productionhfilms.com/product-page/pre-order-your-limited-edition-black-fields-blu-ray-extras-within-from-april + + +subscribe to my second channel - https://www.youtube.com/channel/ucblrkj-j8rw-l7ohbv1bpdg + +https://boundingintocomics.com/2021/04/28/amber-heards-recently-shared-aquaman-2-workout-photos-spark-skepticism-regarding-authenticity-of-images/ + + +black fields - https://youtu.be/cx2qeui0mlu + + + + + + + +bjorn & frida short film - https://youtu.be/tm75g5gtcsm + + + + + +my website - https://www.productionhfilms.com/ + + + +production h films socials - + +https://twitter.com/hstudiofilm + + + +https://www.instagram.com/productionhfilms/ + + +#aquaman #dceu #amberheard + + + +teespring - https://teespring.com/en-gb/stores/mr-h-reviews + + + +amazon affiliate link - https://amzn.to/2hljfzh + + + +those wanting to become a patron - https://www.patreon.com/mrhreviews + + + +follow me on twitter to interact with me and suggest future videos - https://twitter.com/mrhreviews + + + +for business and general inquiries - mrhreviews@gmail.com",864.0,8528.0,,,,,,7501.0,16.0,0.0,147.0,amber heard just keeps lying is she out as mera for aquaman 2?,,,,,,,,,, +853,https://www.youtube.com/watch?v=0AedB0Vvm1A,0,0,{'lisa new zealand'},1,youtube,video,original video,#amberheard #tiktot #aquaman2 #deepfake #aquaman #8марта,24.0,776.0,,,,,,722.0,7.0,0.0,23.0,amber heard,,,,,,,,,, +854,https://www.youtube.com/watch?v=R_WOylGwJrk,0,0,{'Crazed Culture'},1,youtube,video,original video,"johnny depp and amber heard case officially cancelled... +the lawsuit situation between johnny depp and amber heard is one that many are well aware of. over time, the direction of the case has taken several turns and as the situation has grown larger more and more people have become aware of what is at hand. this is a court case that people thought would come to an end quickly once evidence was brought to the table however this has not been the case. allow us to provide you with the most recent news on the defamation case, but first be sure to like the video and subscribe to the channel below. + +click here to enter the giveaway! +https://www.youtube.com/crazedculture?sub_confirmation=1 + +and there you have it, the recent update on the court case between amber heard and johnny depp. do you think that depp will recover from this? will amber heard and her lies be brought to light? let us know what you think in the comments down below! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e + +#amberheard #johnnydepp #deppheard",933.0,44029.0,,,,,,42709.0,103.0,0.0,284.0,johnny depp and amber heard case officially cancelled...,,,,,,,,,, +855,https://www.youtube.com/watch?v=XsTtdIbAwK8,0,0,{'DeepKaramelFakes'},1,youtube,video,original video,"""until we meet again, my sun and stars""",2.0,104.0,,,,,,102.0,0.0,0.0,0.0,[deepfake] emilia clarke recasted as mera over amber heard from aquaman,,,,,,,,,, +856,https://www.youtube.com/watch?v=m8o1gK-YzUo,0,0,{'M&S Clips'},1,youtube,video,original video,"kiss scene (nadine and randall) +kissing scene (amber heard and alexander skarsgard) +kiss scene from cbs series: ""the stand"" (2020-2021) + +• original title: ""the stand"" +• episode title (s01e07): ""the walk"" +• release date: january 28, 2020 +• country: united states +• creators: josh boone, benjamin cavell +• genre: adventure, drama, fantasy +• imdb: 5.4/10 + +after the world is in ruins, due to a man-made plague, a battle of biblical proportions ensues between the survivors. + +cast: +▶ james marsden as stu redman +▶ odessa young as frannie goldsmith +▶ owen teague as harold lauder +▶ alexander skarsgard as randall flagg +▶ whoopi goldberg as mother abagail +▶ amber heard as nadine cross +▶ jovan adepo as larry underwood +▶ henry zaga as nick andros +▶ nat wolff as lloyd henreid +▶ irene bedard as ray brentner +▶ brad william henke as tom cullen +▶ greg kinnear as glen bateman +▶ natalie martinez as dayna jurgens +▶ katherine mcnamara as julie lawry",74.0,15540.0,,,,,,15459.0,6.0,0.0,1.0,the stand / kiss scene (amber heard and alexander skarsgård),,,,,,,,,, +857,https://www.youtube.com/watch?v=rl2bk4QUXL8,0,0,{'Colonel Kurtz'},1,youtube,video,original video,"johnny depp amber heard leaked audio recording compilation / +i've compiled a file of the many times amber heard admits to violence and is verbally abusive to johnny depp in the audio recordings they made consensually as a couple. you'll also hear amber repeatedly accusing johnny depp of running away, being too passive and cowardly, etc. it's clear from this audio compilation that amber heard was the abusive one, not johnny depp. + +subscribe to my channel for more videos on depp vs. heard and other topics. + +here's a long analysis of the unedited leaked audio. it's funny but a bit nsfw: https://www.youtube.com/watch?v=p-mngelmltc&t + +thanks to brian mcpherson ""incredibly average"" for the letting me use the audio and graphics in the video you just watched. link to his page and videos: https://www.youtube.com/channel/ucg0c-n_mpyyoxyf4t3jmxnq + +my videos are too controversial for monetization, but here's my patreon and tip jar: + +tip jar: https://www.paypal.com/donate?hosted_button_id=z65d3ull278sw +patreon: https://www.patreon.com/colonelkurtz",516.0,8090.0,,,,,,7430.0,6.0,0.0,138.0,all the times amber heard admits to violence / hitting johnny depp audio recordings,,,,,,,,,, +858,https://www.youtube.com/watch?v=CECKjlS-7es,0,0,{'LUCIFER MORNINGSTAR'},1,youtube,video,original video,"johnny depp & amber heard full screen whatsapp status😍 | johnny depp & amber heard whatsapp status🔥 + +#johnnydepp #amberheard #jd #love #attitude #kiss #hug #4k #fullscreen #shorts #fullhd #newwhatsappstatus #trendingwhatsappstatus #lucifer_morningstar_editz +#lucifermorningstareditz",36430.0,1410493.0,,,,,,1373255.0,568.0,0.0,240.0,johnny depp & amber heard 😍 | dakota johnson | hd whatsapp status | 4k #shorts,,,,,,,,,, +859,https://www.youtube.com/watch?v=dyXT7_xwgN8,0,0,{'Kellie and Kimbra in the Moment'},1,youtube,video,original video,"kimbra westervelt and kellie nicholson discuss accusations of domestic violence between celebrities johnny depp and amber heard, in addition to multiple accusations against marilyn manson for torture, sexual abuse and other criminal behavior. shia labeouf has also been accused of violent behavior and armie hammer is being accused of alleged suggestions of cannibalism, which created mental anguish for his victims. + +* anyone who is experiencing domestic violence may contact the national domestic violence hotline at https://www.thehotline.org/ or call 1 (800) 787-3224. + +* women and children who have been victims of physical, mental and financial abuse may seek out help at +partners for hope at https://www.partnersforhopeus.org/. + +* those who are experiencing sexual abuse may contact rainn at https://www.rainn.org/ or call 1 (800) 656-4673. + +~ get to know kimbra westervelt and learn more about her career at https://www.kimbrawestervelt.com. + ~ find out more about kellie nicholson, her courses and her marketing business at https://www.kellienicholson.com, https://barprofessional.com and https://www.worldwidewebwizards.com. +~ buy cool t-shirts at https://shop.spreadshirt.com/kellie-and-kimbra-in-the-moment/all. +support this channel via paypal +top supporter ($9.99 monthly): https://py.pl/e4mw +super fan ($4.99 monthly): https://py.pl/caegh +fan ($1.99 monthly): https://py.pl/2jhqig + +social media +facebook: https://www.facebook.com/kellieandkimbra +twitter: @kellieandkimbra +instagram: @kellieandkimbrainthemoment + +audio podcasts +spotify: https://open.spotify.com/show/0varo5btl0bfasl0pvcwqg +google podcasts: https://www.google.com/podcasts?feed=ahr0chm6ly9hbmnob3iuzm0vcy8yyjyzzgu3nc9wb2rjyxn0l3jzcw== +anchor: https://anchor.fm/kellie-and-kimbra +radiopublic: https://radiopublic.com/kellie-and-kimbra-in-the-moment-wkbwvy +pocket casts: https://pca.st/zcbr74eq +breaker: https://www.breaker.audio/kellie-and-kimbra-in-the-moment",6.0,353.0,,,,,,326.0,10.0,0.0,11.0,johnny depp vs amber heard #44,,,,,,,,,, +860,https://www.youtube.com/watch?v=BfqO_PlXXTg,0,0,{'Viral Vision'},1,youtube,video,original video,"johnny depp releases new evidence against amber heard +the last few years have been nothing if not turbulent for johnny depp. ever since 2017 he has been engaged in a series of court battles against both his ex-wife amber heard as well as a newspaper in the form of the sun. the reason for these court battles is that amber heard. the newspaper the sun picked up that story and put a scandalous headline on its front page as a result. johnny has been waging war and taking hits ever since. but now, a potential “redo” might be in order. allow us to break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone! a look at the case that is going on with johnny depp and how he intends to use amber heard’s proven lies to go and clear his name and get justice for himself. do you think that this tactic to get a retrial will work? or will the judge rule against him and set him back even further in trying to prove his innocence? where does it all go from here? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",1557.0,44172.0,,,,,,41871.0,74.0,0.0,670.0,johnny depp releases new evidence against amber heard,,,,,,,,,, +861,https://www.youtube.com/watch?v=rmivac4fSag,0,0,{'Fire Amber Heard'},1,youtube,video,original video,i love dogs and i'm not chinese,2.0,5.0,,,,,,3.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 33,,,,,,,,,, +862,https://www.youtube.com/watch?v=2A0tXMEXrX8,0,0,{'This Happened'},1,youtube,video,original video,"amber heard speaks on johnny depp losing the case + +johnny depp’s fans are once again rallying on social media to demand justice for johnny after the star suffered yet another major setback in his ongoing legal battle against ex-wife amber heard and the british tabloid the sun. + +in the meantime, amber heard is shading johnny on instagram and the fans are absolutely furious. + +so does this mean johnny won’t be able to prove his innocence after all? + + +subscribe for celeb drama: http://youtube.com/channel/ucylyoo597nuffyjs_hwhubq?sub_confirmation=1 + +#johnnydepp #amberheard",549.0,32813.0,,,,,,31908.0,71.0,0.0,285.0,amber heard speaks on johnny depp losing the case,,,,,,,,,, +863,https://www.youtube.com/watch?v=10t2yH8V05c,0,0,{'Access'},1,youtube,video,original video,"johnny depp has reportedly accused ex-wife amber heard of lying about giving her divorce settlement away to charity. after the exes' finalized their split, heard pledged to keep none of the $7 million settlement and instead split it between two charities, the aclu and children's hospital of los angeles. according to a new report from the daily mail, depp's lawyers claim that heard’s pledge was a “sham” and that documents obtained by subpoena from children’s hospital los angeles are a “smoking gun.” a lawyer for heard asserted that the actress intended to fulfill her pledge and had only been “delayed in that goal” because she’s “been forced to spend millions of dollars defending” herself amid depp’s multiple lawsuits. + +» subscribe: http://bit.ly/ahsub +» visit our website: http://www.accessonline.com/ + +get more access hollywood: +facebook: https://www.facebook.com/accessonline +twitter: https://twitter.com/accessonline +instagram: http://instagram.com/accessonline +snapchat: officialaccess + +about access hollywood: +access hollywood is a nationally syndicated daily entertainment news show. access hollywood delivers the most comprehensive coverage of entertainment news and personalities on television, featuring in-depth celebrity interviews and behind-the-scenes accounts of the most important events in hollywood. + +amber heard denies johnny depp’s claim of divorce settlement 'sham' (report) +https://www.youtube.com/accessonline + +#accesshollywood +#johnnydepp +#amberheard",158.0,123438.0,,,,,,121334.0,1457.0,0.0,489.0,amber heard denies johnny depp’s claim of settlement ’sham’ (report),,,,,,,,,, +864,https://www.youtube.com/watch?v=GoFh8LOMT7w,0,0,{'Colonel Kurtz'},1,youtube,video,original video,"johnny depp vs. amber heard: a criminal defense lawyer discusses the u.k. verdict, the upcoming trial, metoo, and problems with the criminal justice system [ attorney lawyer depp heard ] + +this was a wide-ranging discussion i had with andrea burkhart, a criminal defense attorney and a sharp legal mind. we talked about the johnny depp vs. amber heard case, the uk verdict, the upcoming trial, and adam waldman. + +we also discussed metoo, title ix, some problems in the criminal justice system including the flawed nature of forensic criminal science, and even philosophy and psychoanalytic theory. + +here is andrea's twitter: https://twitter.com/aburkhartlaw + +please subscribe to my channel and click the bell. it really helps my channel. :) + +i make other videos about heard/depp and other celebrity controversies, plus a little philosophy thrown in. + +this video is demonetized due to controversy, but you can tip/sponsor my work here. thank you. donors will receive exclusive video content. + +tip jar: https://www.paypal.com/donate?hosted_button_id=z65d3ull278sw +patreon: https://www.patreon.com/colonelkurtz?fan_landing=true +bitcoin wallet: 3mdstdvxdhc1vgzijqcounxk7afxttg9ar",665.0,13313.0,,,,,,12397.0,17.0,0.0,234.0,"johnny depp vs. amber heard: an attorney discusses the va trial, u.k. verdict, and metoo",,,,,,,,,, +865,https://www.youtube.com/watch?v=Ft7VR4H1-_U,0,0,{'King Taha'},1,youtube,video,original video,#aquaman2,2.0,18.0,,,,,,15.0,0.0,0.0,1.0,"aquaman 2 (2022) teaser trailer - jason momoa, amber heard (fan made)",,,,,,,,,, +866,https://www.youtube.com/watch?v=0jBimwm7l1g,0,0,{'The Amber Heard Playlist!!'},1,youtube,video,original video,https://www.nytimes.com/2020/11/02/arts/johnny-depp-libel-case.html,,,,,,,,172.0,,0.0,,is amber heard narcissistic? (amber heard playlist!!),,,,,,,,,, +867,https://www.youtube.com/watch?v=YQ0065skEN4,0,0,{'Flix Verse'},1,youtube,video,original video,"in today's video we will be discussed, will amber heard fire from 'aquaman 2' following divorce controversy? + +for more videos subscribe : http://bit.ly/3c1ppii +__________________________________________________ + + +despite controversy and a fan petition, warner bros can't fire amber heard or ask her to quit aquaman 2, as they asked johnny depp to quit fantastic beasts 3. + + +about my channel + +welcome to flixverse, in this channel, we upload videos related to celebrity gossip, entertainment news, top 10 list videos, updates on the royal family etc. we upload 4 videos each week. thanks + +__________________________________________________ + +music in this video : + +track: odessa — liqwyd & scandinavianz +music provided by audio library plus +watch: https://youtu.be/jny-dp3lgcg + +__________________________________________________ + +for more videos subscribe : http://bit.ly/3c1ppii",6.0,68.0,,,,,,59.0,1.0,0.0,2.0,amber heard fired from 'aquaman 2' following divorce controversy?,,,,,,,,,, +868,https://www.youtube.com/watch?v=BEnEuZbUQoo,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"johnny depp drops appeals bombshell on amber heard! he may win it all! + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #johnnydepp #amberheard",5000.0,84701.0,,,,,,79094.0,25.0,0.0,582.0,johnny depp drops appeals bombshell on amber heard! he may win it all!,,,,,,,,,, +869,https://www.youtube.com/watch?v=D4_7yV5Qo34,0,0,{'The Celebrity Pie'},1,youtube,video,original video,"10 times johnny depp tried to warn us about amber heard +https://youtu.be/n2q-kn4giwg + +amber heard has been the center of attention of many controversies since her nasty divorce with the rum diary co-star and the popular hollywood celebrity johnny depp! the actress who has been a part of the warner bros and dc universe aquaman, the spokesperson of cosmetics brand l’oreal paris, as well as american civil liberties union (aclu) ambassador for women's rights has been getting negative responses and strong hate and it seems that she might have ruined her own career! +in fact, if sources are to be believed the actress may not appear in the second installment of dc’s aquaman that will be released in 2022! and according to multiple websites the actress has been replaced by games of thrones star emilia clarke!!! in today’s video i will reveal how amber heard destroyed her own hollywood career in her attempts to defame johnny depp! but before jumping in the video you can help our channel grow by smashing those like, subscribe and bell notification buttons. a little action from you can help grow our channel tremendously! +and make sure to stick with us till the end of this video! + +amber heard’s career started in 2003 when she first appeared in two music videos kenny chesney's 'there goes my life' and eisley's 'i wasn't prepared,"" and went onto star in an array of tv shows and movies, her career really took off in 2015 the same year when she married depp and when she had prominent roles in four mainstream movies. +she played the lead in the comedy-drama 'magic mike xxl,' which like its predecessor, 'magic mike' (2012), was a huge box office success. heard also starred in the critically acclaimed historical drama 'the danish girl' and the independent crime thriller 'the adderall diaries.' she also appeared in the television film 'one more time.' +although she appeared in different television shows and a few movies but she was not in any way equivalent to johnny depp in fame or standing in hollywood. after she married depp her position in hollywood solidified and she started getting more recognition. after her divorce from depp she landed the biggest role of her career in the form of warner bros aquaman in which she played the character of female lead mera alongside justin momoa. 'aquaman' became the fifth most profitable release of 2018, and the most profitable dceu installment till that point. +at that time she also got selected as the brand ambassador of loreal paris and became the representative of women rights in aclu! she got these opportunities after she blamed depp with domestic violence accusations and pretended to be a victim. this earned her a lot of support and she became successful. l'oreal announced in 2017 that heard will be the new global spokesperson, calling her ""fearless, witty and smart"" and a woman who defied definition and rejected convention. +and yet, she has claimed in her court declaration countering ex-husband's $50 million defamation suit against her that her career took a serious hit and she received death threats that forced her to constantly keep on changing her contact details. +""following my highly-publicized separation from johnny, i read accounts in the media referring to me as a victim of domestic violence. in response, many people called me a liar (without ever hearing my story). i was dropped from a global fashion brand's upcoming campaign. i lost a part of a movie in which i had already been cast. people i have never met or spoken to threatened me with violence. i received so many death threats i had to change my phone number on a near-weekly basis,"" she declared in her motion to dismiss the 'pirates of the caribbean' actor's lawsuit filed in fairfax county, virginia circuit court. + +but things started changing when new evidences came to light! initially most of the people were supporting amber in her fight against depp but when audio and video tapes of amber heard threatening depp were released many people were shocked and furious at heard! +ever since the verdict of the libel case was announced by the uk court, millions of johnny depp fans are criticizing the ""aquaman"" actress. his fans recently started circulating a video featuring amber heard as a proof that although she has won the legal battle but people still hate the ""aquaman"" actress. the video is an interview of the actress posted on youtube channel ""access"" with more than one million followers. +the video has received only 16,000 likes while it has been disliked by more than 203,000 people. posted on december 15, the youtube video was watched by over a million people within 10 days. + +thank you for your valuable time, if you are interested into these kind of stuff, please consider subscribing to our channel and support my hard work if you enjoy watching our videos regularly. + +subscribe: https://bit.ly/30kr4eb + +#amberheard #amberheardinterviews #amberheardapology #amberheardaudio #johnnydeppamberheard",44.0,1713.0,,,,,,1665.0,2.0,0.0,2.0,how amber heard ruined her own career,,,,,,,,,, +870,https://www.youtube.com/watch?v=3R_emk-Fzh8,0,0,{'jadoredepp'},1,youtube,video,original video,"⚠️important resources: + +about amy dunne's diagnosis: 👉https://repository.usd.ac.id/34772/2/144214075_full.pdf +👉https://www.huffpost.com/entry/amy-gone-girl-psychiatrist_n_5922842 +👉https://www.health.com/condition/antisocial-personality-disorder/is-that-gone-girl-character-a-psychopath + +about amber heard's diagnosis: +👉https://www.ifod.net/thetruth/ +👉https://www.nickwallis.com/depp-trial-witness-statements + +links to the audiotapes: +👉https://www.youtube.com/channel/ucg0c-n_mpyyoxyf4t3jmxnq/videos +👉(scroll down) https://www.courttv.com/news/amber-heard-witness-statements-depp-blamed-the-monster-for-physical-verbal-abuse/ + +music: https://www.youtube.com/watch?v=vmcociyh0d8 + +credits: incredibly average, ifod, fesliyanstudios background music, 20th century fox, pacific standard + +#justiceforjohnnydepp #amberheard #gonegirl + +i do not own anything and i do not claim it as my own. + +this video is not made for profit. all rights and credits to their owners.",12099.0,333380.0,,,,,,320088.0,220.0,0.0,973.0,gone girl & amber heard: the disturbing similarities,,,,,,,,,, +871,https://www.youtube.com/watch?v=2fQf4o3WO_k,0,0,{'Viral Vision'},1,youtube,video,original video,"amber heard starts lawsuit vs warner bros. for aquaman 2 decision!!!? +the situation with amber heard in regards to her very public battle against ex-husband johnny depp has led many in the public eye to turn against her. mainly because in the beginning she was ‘very clearly’ via her statements. but then, things started to change when johnny depps started to provide evidence that she was the, repeatedly in fact. and as more information comes out people want heard to be punished, including her losing her role as mera in aquaman 2. but amber heard isn’t aiming to let go of that role in any way. we’ll break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone! a look at what might just happen with amber heard and her role as mera in aquaman 2! do you think that warner bros will come to their senses and remove heard from the role? or do you think that they’ll continue to protect her and punish johnny depp as they did with him in the fantastic beasts franchise? what will be the ultimate fallout of this? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",1452.0,54357.0,,,,,,52086.0,61.0,0.0,758.0,amber heard starts lawsuit vs warner bros. for aquaman 2 decision!!!? (explained),,,,,,,,,, +872,https://www.youtube.com/watch?v=nECqOGt4MBE,0,0,{'Stevie J Raw'},1,youtube,video,original video,"full statement. a friend of amber heards, josh drew admits to seeing nothing, only ""hearing about it"" from wife rocky pennington but still lied about johnny depp in his statement. he admits to seeing nothing and yet his testimony was accepted over and above the lapd by the uk court. + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join + +tubebuddy - https://www.tubebuddy.com/steviejreviews + +art of elysium donation page - https://www.pledge.to/the-art-of-elysium + +justice for johnny depp t-shirts (proceeds go to charity): +design 1 - https://t.co/uycndh9ebj?amp=1 +design 2 - https://t.co/hdmq0wicke?amp=1 +design 3 - https://t.co/lqmeoidmje?amp=1 +design 4 - https://t.co/lkteqqdxhg?amp=1 + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#justiceforjohnnydepp #amberheard #joshdrew",281.0,3001.0,,,,,,2578.0,4.0,0.0,138.0,amber heard's friend josh drew saw nothing but still lied about johnny depp!,,,,,,,,,, +873,https://www.youtube.com/watch?v=_8_WtiR-nyc,0,0,{'Sam Houston'},1,youtube,video,original video,"fuck amber heard, fuck anyone unironically simping for her, and fuck anyone still hiring her for acting roles (looking at you, warner bros). #justiceforjohnnydepp",31.0,386.0,,,,,,350.0,1.0,0.0,4.0,johnny depp's appeal rejected... and amber heard continues to not be held accountable,,,,,,,,,, +874,https://www.youtube.com/watch?v=ZgDjqhTYUm0,0,0,{'eHacker'},1,youtube,video,original video,amber heard's friend iotillet cannot stop fighting fans on social media!,799.0,8776.0,,,,,,7640.0,8.0,0.0,329.0,amber heard's friend iotillet cannot stop fighting fans on social media!,,,,,,,,,, +875,https://www.youtube.com/watch?v=D8Cs3pvwscU,0,0,{'Scottilicious McFabulous'},1,youtube,video,original video,"the amber heard supporters are here for some reason 😂 + +the clear as day media bias has got to stop and the only way we can make that stop is to voice our opinions in practical ways. no spam, no threats. 2021 shall be johnny depps year and not ambers! + +my amber heard saga playlist! https://youtube.com/playlist?list=plwh7zsa4b9be8pdsyj_ezozyaif3dxnfl + +join the notification club on discord for more reliable notifications and updates for when i upload! https://discord.gg/yrfkxrpzyt + +instagram link : https://www.instagram.com/mister_mcfab/ + +outro song credits adam joseph : https://youtu.be/4tyval51ml4 + +#johnnydepp #amberheard #justiceforjohnnydepp",72.0,768.0,,,,,,648.0,9.0,0.0,39.0,the media sided with amber heard? bias against johnny depp!,,,,,,,,,, +876,https://www.youtube.com/watch?v=lr43XgsgYi0,0,0,{'Boser Geek'},1,youtube,video,original video,"emilia clarke la nueva mera? amber heard fuera de aquaman 2, emma watson se retira?, boser news +todo parece indicar que amber heard quedó fuera de la cinta “aquaman 2” y que en su lugar quedará la actriz emilia clarke, además, se ha hecho viral en redes sociales que la actriz emma watson, se había retirado de la actuación pero sin embargo esto resulto ser una confusión. + +s u s c r i b e t e: https://goo.gl/wxwiaj​​​​​​​​​​​ +boser salseo futbolero: https://goo.gl/xvvwzy​​​​​​​​​​​ +enlaces +twitter: https://goo.gl/u8qu1v​​​​​​​​​​​ +facebook: https://goo.gl/lbrs​​",139.0,3156.0,,,,,,2982.0,10.0,0.0,25.0,"emilia clarke la nueva mera? amber heard fuera de aquaman 2, emma watson se retira?, boser news",,,,,,,,,, +877,https://www.youtube.com/watch?v=9AAaaZGiDo0,0,0,{'sagiiovanna'},1,youtube,video,original video,"☕️ partie 2: https://www.youtube.com/watch?v=grlao4wlrbc + +playlist #givdt: https://www.youtube.com/watch?v=zxtv5cra4bq&list=pls5uat2jjzlnqvv-jqog8ccst8nawx924 + +chaine qui m'a énormément aidé pour les recherches de cette video: +https://www.youtube.com/channel/ucg0c-n_mpyyoxyf4t3jmxnq + +extraits traduction appel téléphonique: https://youtu.be/xh9jy8cfhn0 + +💛 oi gente! + +aujourd'hui on se retrouve pour une nouvelle #givdt: gi vous dis tout +apres le cas de malu trevejo, danielle cohn, britney spears, on se retrouve pour le cas de johnny depp, je vous explique toute l'affaire en ce qui concerne le divorce et les accusations entre lui et amber heard de violences conjugales ☕️ + +j'attends surtout votre retour dans les commentaires, très important 💛 + +oubliez pas de vous abonner 🔔 + +☆ retrouvez moi sur mes réseaux: + +📱 insta: @sagiiovanna +📱 snap: @sagiiovanna +📱 twitter: @sagiiovanna +📱tik-tok: @sagiiovanna + +👩🏽‍💻 mon matériel youtube: +ring light: https://amzn.to/3izuxqa +camera principal (canon m50): https://amzn.to/35cij3i +camera vlog (canon g7x mark iii): https://amzn.to/3xfaqbq +microphone rode: https://amzn.to/35961ss +adaptateur microphone (canon g7 x mark iii) https://amzn.to/3gfhqxm + +beijos ❤️ + +#justiceforjohnnydepp",31911.0,604464.0,,,,,,570570.0,323.0,0.0,1660.0,toute la verite sur l'affaire johnny depp - amber heard (partie 1) #givdt 39,,,,,,,,,, +878,https://www.youtube.com/watch?v=eC-cByj3fik,0,0,{'News Tube'},1,youtube,video,original video,amber heard allegedly fired from 'aquaman 2' for this shocking reason,0.0,1.0,,,,,,1.0,0.0,0.0,0.0,amber heard allegedly fired from 'aquaman 2' for this shocking reason,,,,,,,,,, +879,https://www.youtube.com/watch?v=I03uDch2beY,0,0,{'WashingtonExec'},1,youtube,video,original video,"washingtonexec’s rachel kirkland sits down with amber hart and lisa shea mundt, co-founders of the pulse of government contracting. the three discuss industry trends, takeaways from the past year and how the pulse of govcon accidentally became a training organization in 2020. + +visit us: https://www.washingtonexec.com",0.0,136.0,,,,,,131.0,4.0,0.0,1.0,amber heard and lisa shea mundt on insights from the pulse of govcon,,,,,,,,,, +880,https://www.youtube.com/watch?v=WLgXd5H6Q2A,0,0,{'Crazed Culture'},1,youtube,video,original video,"disney officially apologizes to johnny depp after firing him!!! + +it is already known that johnny depp was in fact fired from his role in the pirates of the caribbean series, as captain jack sparrow. fans of the series and more importantly, of johnny depp, were absolutely infuriated to see such a decision be made as many did not agree with disney's big decision, at all. yes, everything that has taken place between johnny depp and amber heard has drawn some insane amount of attention their way, however many believed it was just unfair for disney to go ahead with this decision. since, several sources have come out to say that depp was being reconsidered to be rehired as captain jack sparrow, however when the news first broke, everyone thought it would only be fair that disney came forward to apologize, so it just may seem that walt disney studios has finally stepped forward to make this apology. let us break it down for you but first be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! +https://www.youtube.com/crazedculture?sub_confirmation=1\ + +and there you have it the recent update on johnny depp and his acting career specifically in the world of disney. do you think that johnny depp will fully forgive disney for going ahead with this decision? is it only fair that amber heard loses her acting roles as well? will the case between the two ever fully die down and come to a conclusion? let us know what you think in the comments down below! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e + +#johnnydepp #amberheard #justiceforjohnnydepp",34942.0,907190.0,,,,,,866811.0,636.0,0.0,4801.0,disney officially apologizes to johnny depp after firing him!!!,,,,,,,,,, +881,https://www.youtube.com/watch?v=c9KYEMh5NvE,0,0,{'Beyond The Trailer'},1,youtube,video,original video,"want to join the conversation? become a member today! +https://tinyurl.com/y5pshr2t",1201.0,37149.0,,,,,,35193.0,437.0,0.0,318.0,"amber heard enlists disney vs johnny depp, star wars ubisoft, moon knight casts may calamawy",,,,,,,,,, +882,https://www.youtube.com/watch?v=buVElkCX3Mg,0,0,{'Binge Watch'},1,youtube,video,original video,"amber heard exposed by her lawyer for ruining johnny depp + +subscribe to binge watch - http://tiny.cc/bingewatch + +watch next 👇 + +amber heard faces prison after this… + +https://youtu.be/dje8bl_blde + +related videos: + +amber heard’s lawyer exposes her for ruining johnny depp + +https://youtu.be/pzr2_v4upgi + +amber heard denies johnny depp’s claim of settlement ’sham’ (report) + +https://youtu.be/10t2yh8v05c + +amber heard on the stand in johnny depp's libel case + +https://youtu.be/it2kiyt7-rk + +amber heard and johnny depp's divorce has been a surprise to the public, and now it's +been a several years of legal battle with no end in sight. it is no secret that johnny depp and +amber heard have been in a divorce case involving domestic abuse. at one point, amber +claimed that johnny was abusive and he didn't do much to fight back. later, as the +proceedings began, johnny made statements that amber was the abuser. we’re still seeing +the fallout of johnny depp‘s catastrophic defeat in the british high court last year. his libel +case brought against the sun newspaper was intended to refute accusations that he was a +drug-addled domestic abuser and expose ex-wife amber heard as a fantasist. but it +backfired spectacularly, as not only was depp’s dirty laundry aired in public, but the judge +found heard’s testimony convincing and ruled that it isn’t libellous to describe him as a +“wife-beater.” +consequences came fast. he was almost immediately booted off fantastic beasts 3, has +reportedly lost several high-profile upcoming roles, and insiders say he’s currently blacklisted +in hollywood. but the most painful blow may come from disney, as the studio is apparently +planning to move forward on a pirates of the caribbean movie without captain jack sparrow +(but there’s also an information that disney allegedly rehired johnny depp but no one knows +for sure). but according to the latest information, amber heard was exposed by her lawyer +and the body language analyst announced that amber heard was not honest by accusing +johnny depp! and it seems like things are going so great for amber as well! recently she +was replaced by emilia clarke for the role of mera in aquaman 2, amber is now abandoned +by her own legal team. which means something really serious happened as so many people +changed their minds and now they are on johnny depp's side. actually, you may remember +that amber heard's former personal assistant claimed that she told the actress about a +violent se**al as**ult she had endured, only for heard to “twist"" the story for her own use. +kate james gave dramatic testimony at johnny depp's libel trial against a british tabloid +newspaper that accused the actor of abusing ex-wife heard during their relationship. believe +it or not - it is up to you, but here is something else you need to know about amber heard. +anyways, the tables are turned now and many celebrities and fans support johnny depp, +and they believe him! moreover, now they are accusing amber of orchestrating a hoax to +ruin johnny depp’s career. and what is more, so many professionals from all walks of life +have come forward to prove that amber is lying. and someone who showed the whole world +that amber was not honest testifying in court against johnny was body language analyst +logan portenier from the popular youtube channel ‘observe’. according to logan +portenier, amber heard’s behaviour and facial expressions in her infamous 2016 court +deposition were strange and it was the reason why logan decided to make a deep analysis +of amber’s body language. +amber heard can be seen in a recording smirking and rolling her eyes while listening to a +recording of herself. in this video, the aquaman star can be seen rolling her eyes and eating +what seem to be cookies. she looks totally disinterested by what’s going on in the recording. +first, fans thought she was behaving that way because she was stressed out and scared. +but body language expert is convinced that the real reason why amber heard looks and +sounds like she is lying is because she actually is! + +in the recording heard is listening to with the lawyers, depp can be heard claiming that +heard hit him with a bathroom door and then punched him in the jaw. she denies having +slammed the door in his face deliberately and then apologises for having hit depp in the face +on purpose. she can be heard pleading: “i just reacted and i’m sorry. it’s below me.” but why +does she still act like she doesn’t care? at least right now, during the deposition. + + +binge watch - binge watch is the best source of the latest celebrity news. want to see what's trending today in the hollywood life or hear about the newest celeb gossip? you're in the right place. + +consider subscribing to not miss out on what's trending today in the life of the world's biggest stars. + +#celebrity #news #bingewatch",1923.0,103989.0,,,,,,101453.0,233.0,0.0,380.0,amber heard exposed by her lawyer for ruining johnny depp,,,,,,,,,, +883,https://www.youtube.com/watch?v=Cmmn_-wsdwc,0,0,{'Come Geek Some'},1,youtube,video,original video,"""depp banned me from driving!"" heard said as she got into a $100 thousand dollar range rover! + +join this channel to get access to perks: +https://www.youtube.com/channel/uc4ltvxoxgzobqqduv9ixowg/join + +current channel members +sunshine +ali bali +penguin 322 +jane durante +sabine möller +videnthecoldone +leah veneau +hanne lærke sommer +morning tea +juanita schutte +jennifer willis +lisa lambert +susan redden +cat meissner +broly the mighty +humble bee +sarah wells +christine b-r +zombqueeen +tammy lockley +michieee +stephanie davis +bonnieb +janette tammaro +wendy postma +maureen kinross +deborah melendy +roamer mgtow +madamebebo +claire jones +mary scott +adriana adams +sarah kat +patti_c +steve kass +john le +kimmhy depp +night train blues +harbenja +l c +gelth walker +laura uk +judith hodgson +lifeofsarcasm +clairmbear +moxxie moon +anne holyday +k. kae-linn allison +megan o'shea +sylvan + +hello and welcome to come geek some! for all things geek, like and subscribe to the channel! + +please ignore or flag spam, negative, or hateful comments. we're here to have a good time. thanks everyone, and enjoy :] + +if you would like to support the channel and help us grow! +donations: https://streamlabs.com/comegeeksome + +i'm an avid adobe premiere pro user and have been for quite some time! i would recommend the software to anyone (if they have the spare money a month) + +ps4 player with pc gameplay now and again. still not used to pc gaming! + +interact with us on twitter! https://twitter.com/comegeeksome1 +twitch: https://www.twitch.tv/geeksomegaming + +#justiceforjohnnydepp",849.0,8060.0,,,,,,7017.0,3.0,0.0,191.0,"""depp banned me from driving!"" heard said as she got into a $100 thousand dollar range rover!",,,,,,,,,, +884,https://www.youtube.com/watch?v=7m0HmUoWe20,0,0,{'Stevie J Raw'},1,youtube,video,original video,"just a chill stream to discuss all topics johnny depp v amber heard and anything else. + +join me and let's talk! + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join +art of elysium donation page - https://www.pledge.to/the-art-of-elysium + +justice for johnny depp t-shirts (proceeds go to charity): +design 1 - https://t.co/uycndh9ebj?amp=1 +design 2 - https://t.co/hdmq0wicke?amp=1 +design 3 - https://t.co/lqmeoidmje?amp=1 +design 4 - https://t.co/lkteqqdxhg?amp=1 + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#justiceforjohnnydepp #johnnydepp #amberheardisaliar",245.0,2537.0,,,,,,2226.0,2.0,0.0,64.0,chill stream - johnny depp | amber heard | open topics,,,,,,,,,, +885,https://www.youtube.com/watch?v=yyqmP554g-c,0,0,{'Fire Amber Heard'},1,youtube,video,original video,do u play minecraft?,4.0,20.0,,,,,,12.0,0.0,0.0,4.0,solving a rubik's cube everyday until amber heard gets fired - day 28,,,,,,,,,, +886,https://www.youtube.com/watch?v=XSMLElwMPNM,0,0,"{""Amber Heard's Evidence""}",1,youtube,video,original video,"amber heard's supporting evidence and humanitarian, political work",0.0,8.0,,,,,,8.0,0.0,0.0,0.0,johnny depp admitting to his aggressive temper and victim blaming amber heard exclusive,,,,,,,,,, +887,https://www.youtube.com/watch?v=DQFmjNNEaAY,0,0,{'Small Screen'},1,youtube,video,original video,"welcome to today's episode of small screen stories! on the show today: amber heard has reportedly been fired from aquaman 2, kevin feige teases no r-rated marvel content aside from deadpool 3 and henry cavill has been cast in the mass effect movie. don't forget to like and subscribe! + +intro by 42cutcom. subscribe to his channel over at https://www.youtube.com/channel/ucqsqc5w-yzgqsmdt004nnga + +artwork by dgalexkovalenko. follow him at: https://www.instagram.com/dgalexkovalenko/ + +► subscribe to my youtube channel... +https://www.youtube.com/c/smallscreenco + +►read the website... +http://www.small-screen.co.uk/ + +►follow small screen on... +twitter: https://twitter.com/smallscreenco +facebook: https://www.facebook.com/smallscreenco/ +instagram: instagram.com/smallscreenco/",15.0,170.0,,,,,,149.0,0.0,0.0,6.0,has amber heard been fired from aquaman 2? | small screen stories,,,,,,,,,, +888,https://www.youtube.com/watch?v=WAYyX6DSHyM,0,0,{'Fast News'},1,youtube,video,original video,"amber heard, who plays mera in the aquaman series, has allegedly violated a clause in her contract. for the past few months, a petition has been circling (receiving nearly two million signatures) calling for amber heard to be fired from dc comics film adaptations, due to the long and nasty media storm with her ex partner johnny depp. she and the pirates of the caribbean star were divorced in 2017. before the divorce was finalised, the actress filed for a restraining order against him, presenting photos that “captured the mark on her face as she walked in and out of a los angeles court” as evidence. amber heard in aquaman. photo: cosmic book newslondon’s high court was told that depp was actually the victim of abuse from ex-wife amber heard on the final day of depp’s libel suit against news group newspapers, publishers of the sun. losing the libel case, depp experienced severe cancel culture. the public decided it was time heard faced the same backlash by forming the petition to remove her from aquaman. although, her reported exclusion from the second aquaman film isn’t actually a consequence of the petition nor the libel.— cassie | vee day (@starsxashes) february 28, 2021yahoo! news shared:“…the petition or the libel might not be the reason for amber’s exit from the film, it has been learned that she indeed has been fired from the film. reports suggest that amber gained a little weight before the commencement of the shoot and the makers are not keen on continuing to work with her. not just that, it is being said that emilia clarke who is known popularly for her role as daenerys targaryen from game of thrones is all set to replace her. amber essayed the character of mera in the jason mamoa starrer.“a source told australian site sausage roll, “amber heard did not pass her physical examination. she’s put on some pounds and is in terrible shape. there is a clause in her contract which says she is required to be in good form ahead of shooting and she violated that.”woah. inside the magic stated: “at this time, warner bros. has not confirmed heard’s exit from the aquaman 2 movie.” + + +all data is taken from the source: http://happymag.tv +article link: https://happymag.tv/amber-heard-fired-aquaman/ + + +#amberheard #newstodayusa #bbcworldnewstoday #bbcnewsworld #newstoday #newstodaylocal #",1.0,10.0,,,,,,9.0,0.0,0.0,0.0,amber heard has been fired from ‘aquaman’ due to contract violations,,,,,,,,,, +889,https://www.youtube.com/watch?v=akfKC28ghRo,0,0,{'Bluff Central'},1,youtube,video,original video,"johnny depp and amber heard have been making headlines for years now since they first went to court and the world is still conflicted on who is the guilty one of the two is. however, people have been quickly changing sides due to many new pieces of evidence coming out. one of the many reasons people are finding it hard to believe amber heard’s claims is that johnny depp has no history of domestic violence at all. + +check these out!!!! +johnny depp and amber heard saga +👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇 +🔥 https://youtu.be/watch?v=xovi9l5el3q&list=pl0c_x0hcmuzfpxfnlmdcijb_wa45kt7ui + +top 10 celebrity videos +👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇 +🔥https://youtu.be/watch?v=6wxusexn4go&list=pl0c_x0hcmuzdjyose9quwlux3fwzdnfj5 + +popular uploads +👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇 +🔥https://youtu.be/watch?v=h9tv-cw5a8u&list=pl0c_x0hcmuzd6koq8fzw4znlowvbluf75 + +don't forget to follow us on instagram 👉 https://bit.ly/3vfxi3d + +#bluffcentral #amberheard #johnnydepp #justiceforjohnnydepp #amberheardabuser #metoo",1.0,73.0,,,,,,72.0,0.0,0.0,0.0,amber heard is an abuser!!! part 1 | bluff central,,,,,,,,,, +890,https://www.youtube.com/watch?v=nUfJIx1niGg,0,0,{'Celebrity Craze'},1,youtube,video,original video,"amber heard furious at johnny depp for releasing new evidence | celebrity craze + +in hollywood, there are many stars that have ruined their own careers. these celebrities will do things that destroy their reputation and expose their true selves. + +in the case of amber heard, this situation is entirely different. her destruction has been more of a “slow burn."" because she’s tried so hard to convince people she’s a good girl and a victim, but is not getting exposed as actually something else entirely. + +all while, johnny depp rebuilds his reputation that amber heard tried to destroy. allow us to break it all down. be sure to like the video, hit the like button and notification bell, and subscribe to the channel! + +#amberheard #johnnydepp #justiceforjohnnydepp +------------------------------------------------------------------------------------------------------------------------------ +subscribe: https://www.youtube.com/channel/uc-lztlg05etwyjds1jqcv3w/featured?sub_confirmation=1 + +amber heard furious at johnny depp for releasing new evidence: https://youtu.be/nufjix1nigg + +the real reason amber heard is lying: https://youtu.be/jh-hynwlx5q + +12 times johnny depp tried to warn us about amber heard: https://youtu.be/0tqhcuojsra + +johnny depp responds to amber heard's apology video: https://youtu.be/qr6yoq6bjts + +johnny depp thanks his supporters for defending him: https://www.youtube.com/watch?v=gwume-u9zke + +this channel intends to provide the most breaking celeb news, drama and controversies all in one place. also, information not only about celebrities from hollywood film industry but also famous people around the world. we maintain different playlists which you could come back and watch videos from your desired interest category. + +we also promise to keep our viewers entertained. thanks for taking your time to checkout the channel! + +subscribe to never miss a video.",96.0,2127.0,,,,,,1997.0,3.0,0.0,31.0,amber heard furious at johnny depp for releasing new evidence | celebrity craze,,,,,,,,,, +891,https://www.youtube.com/watch?v=11yL6DPMIfQ,0,0,{'Bang Showbiz'},1,youtube,video,original video,"johnny depp branded his ex-wife amber heard as “scum” in text messages sent after their divorce was finalised in 2016, and claimed he “wouldn’t touch” her with a “hazmat suit on”. +#johnnydepp #amberheard +subscribe to the bang showbiz youtube channel for more celeb news. + +let's be friends on social media: +facebook: https://www.facebook.com/bangshowbiz.celebrity/ +instagram: https://www.instagram.com/bangshowbiz_/ +twitter: https://twitter.com/bangshowbiz + +bang showbiz provides the latest celebrity news and gossip videos in any style or format you desire. + +please email videodesk@bangshowbiz.com or find out more about us on http://bangshowbiz.com/ or https://www.linkedin.com/company/bang-showbiz/ if you are interested in our services or would like to licence this video.",,,,,,,,598.0,,0.0,5.0,johnny depp brands ex-wife amber heard 'scum' in uncovered 2016 text messages,,,,,,,,,, +892,https://www.youtube.com/watch?v=VIItMPqsZqc,0,0,{'Lost Beyond Pluto'},1,youtube,video,original video,"articles: + + +https://www.sausageroll.com.au/lifestyle/celebrities/amber-heards-involvement-in-the-johnny-depp-appeal-hearing-explained/ + + +https://www.sausageroll.com.au/lifestyle/celebrities/amber-heard-reportedly-failed-to-oppose-johnny-depp-emergency-hearing/ + + +related videos: + + +new evidence for uk appeal: https://youtu.be/9clx5js0zku + + +amber's perjury investigation in australia: https://youtu.be/wi_ils_ykg4 + + +consequences of perjury in the uk: https://youtu.be/6z2xx9n2b1c + + +social media + +patreon: https://www.patreon.com/lostbeyondpluto + +instagram: https://www.instagram.com/lostbeyondpluto + +twitter: https://twitter.com/lostbeyondpluto + +tumblr: https://lostbeyondpluto.tumblr.com/ + +soundcloud: https://soundcloud.com/lost-beyond-pluto + +music videos: + +blue eyes: https://www.youtube.com/watch?v=wm2-kyp18ww + +once a liar: https://youtu.be/bgwc09ptuhm + +loyalty is dead: https://youtu.be/wfrpztnphm4 + + +stars intro theme by eva grace",1260.0,15260.0,,,,,,13781.0,7.0,0.0,212.0,johnny depp v amber heard - impact of trial delay + uk appeal update,,,,,,,,,, +893,https://www.youtube.com/watch?v=wlHulL6vToE,0,0,{'eHacker'},1,youtube,video,original video,"amber heard's access stand video breaks 400,000 dislikes! + +check out channel membership if you are keen to support the channel! +new members get their names in the credits! + +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com + +want paid promo spots? send me a mail or dm on to the info. above! (starting as low as $5! note via: paypal) + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods + +""podcast series"" means i will not appear on facecam and the edits will usually be light.",864.0,5990.0,,,,,,4880.0,6.0,0.0,240.0,"amber heard's access stand video breaks 400,000 dislikes!",,,,,,,,,, +894,https://www.youtube.com/watch?v=g0KT9qIbBrw,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"more amber heard shills saying johnny depp supporters are bots... + +original video: +https://youtu.be/lbz-aano56u + +let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +☆other platforms☆ + + +•backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + +☆support the channel☆ + +•become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +•if you want to support my channel, please check out my patreon and subscribe star below: + +•patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp #notabot",573.0,8153.0,,,,,,7283.0,21.0,0.0,276.0,russian bots attack amber heard petition! | proving johnny depp inflated petition?!?,,,,,,,,,, +895,https://www.youtube.com/watch?v=TaPSSDEQs-U,0,0,{'Come Geek Some'},1,youtube,video,original video,"join this channel to get access to perks: +https://www.youtube.com/channel/uc4ltvxoxgzobqqduv9ixowg/join + +current channel members +hanne lærke sommer +morning tea +juanita schutte +jennifer willis +lisa lambert +susan redden +cat meissner +broly the mighty +humble bee +sarah wells +christine b-r +zombqueeen +tammy lockley +michieee +stephanie davis +bonnieb +janette tammaro +wendy postma +maureen kinross +deborah melendy +roamer mgtow +madamebebo +claire jones +mary scott +adriana adams +sarah kat +patti_c +steve kass +john le +kimmhy depp +night train blues +harbenja +l c +gelth walker +laura uk +judith hodgson +lifeofsarcasm +clairmbear +moxxie moon +anne holyday +k. kae-linn allison +megan o'shea +sylvan + +hello and welcome to come geek some! for all things geek, like and subscribe to the channel! + +please ignore or flag spam, negative, or hateful comments. we're here to have a good time. thanks everyone, and enjoy :] + +if you would like to support the channel and help us grow! +donations: https://streamlabs.com/comegeeksome + +i'm an avid adobe premiere pro user and have been for quite some time! i would recommend the software to anyone (if they have the spare money a month) + +ps4 player with pc gameplay now and again. still not used to pc gaming! + +interact with us on twitter! https://twitter.com/comegeeksome1 +twitch: https://www.twitch.tv/geeksomegaming",1385.0,15245.0,,,,,,13602.0,1.0,0.0,257.0,judge hands depp another huge win!!,,,,,,,,,, +896,https://www.youtube.com/watch?v=I3XSBt0AoSA,0,0,{'Reaction of K'},1,youtube,video,original video,"#amberheard - #mera - #aquaman's #wife - #funny & #cutemoment || #amber #heard #funny & cute moments +#moviestrailers #new movies #comeingup movies +if you like this video 👍 and subscribe for more upcoming videos 😄 +remember to subscribe and hit the bell. +@lion raider +lyric:- + +this is my first time stepping into this universe my first superhero role was justly mara + +is + +is it's not one superhero it's not just the guy rescuing the girl or the girl you know being the superhero and that's her moment it's actually a team and it's so a lot more modern you know i mean it's like also the mirror is very complex very deep and very complex i'm very surprised like so confusing layered so there's gonna be a lot of + +ocean + +so + +so + +uh no no pretty much the opposite i grew up you know in texas riding horses and oh really you know it's not a big ballet community out there in texas no no not so much shooting guns yes but ballet + +what did you do what did you do for father's day i am i i was really special i'm um i'm a pretty excellent daughter i um oh it's very nice of you to sit yeah just you got to know your strengths yeah and what do you think you did something special for your dad yeah i brought him to uh the magic mike press convention yeah he loved it you really carry it yeah yeah it's a big hit with my dad all he wants to do is hunt and fish and he wanted to that's the place to do that i guess + +your dad must have loved you for that oh he really appreciated that absolutely yeah yeah he was it was it was the only time i've ever seen he was in and out of that press conference so fast yeah yeah like where did he want to do that i guess no no no no no no no no no no + +let's talk about let's talk about the movie yeah + +is + +you +●▬▬▬▬▬▬▬▬▬▬▬ஜ۩۞۩ஜ▬▬▬▬▬▬▬▬▬▬▬● +youtube channel: https://www.youtube.com/c/lionraider +facebook page: https://www.facebook.com/animation-games-839870733038713/ +twitter acct: @hdgamesandanim1 +ali hussain +#lion raider",2.0,261.0,,,,,,254.0,5.0,0.0,0.0,amber heard - mera - aquaman's wife - funny & cute moment || amber heard funny & cute moments,,,,,,,,,, +897,https://www.youtube.com/watch?v=nbNX3oak0no,0,0,{'Viral Flash'},1,youtube,video,original video,"johnny depp lied about amber heard !!! +______________________________________________ +for more videos subscribe : https://bit.ly/2zopgqj +______________________________________________ +johnny depp is accusing ex-wife amber heard of pocketing the massive $7m settlement from their divorce and repeatedly lying about giving it all to charity. heard, declared that she didn't want depp's money after their explosive 2016 breakup and vowed instead to split the payment between two charities. +in today’s video are going to share is johnny depp lied about amber heard not donating her $7m divorce settlement? + +hollywood star johnny depp defendant his ex amber detected of lying as she took a jaw-dropping $7million from their divorce settlement for herself despite promising to separate the cash between 2 charities. according to dailymail, the 34-year-old aforesaid that she didn't wish the cash from the 2016 divorce and instead vowed to provide it away. ""i remained financially freelance from him [depp] the complete time we tend to were along and therefore the entire quantity of my divorce settlement was given to charity,” she aforesaid in a very witness statement early in 2020. + +however, depp’s lawyers believe that the goodwill gesture is nothing however a ‘sham’ because the legal team has pursued the children’s hospital la and therefore the yankee civil liberties union over whether or not they received the secure total. while the aclu has been silent, documents from the children’s hospital recommend that they need to be received solely $100,000. + +in fact, the heads of the la children’s facility were involved in the purpose wherever they wrote to the aquaman star in june 2019 asking if she meant on fulfilling her promise. depp had sued the sun's publisher news cluster newspapers (ngn) and therefore the author of the article over claims he was violent to ex-wife amber detected throughout their volatile biennial wedding. + +during the libel case hearing, decide saint andrew nichol noted heard's kind gesture and aforesaid that it absolutely was off from what a ""gold-digger"" would do. ""her donation of the $7 million to charity is hardly the act one would expect of a gold-digger,"" they decide aforesaid. depp's legal team can take the judge's remarks as a way to attractiveness the london find, that went against the actor, deed his name and career in tatters. but the actor's lawyers believe the selfless gesture was a 'sham' and have spent the past year chasing the children's hospital la and yankee civil liberties union to seek out out what proportion they really received from the role player. + +the aclu has up to now refused to collaborate with multiple subpoenas however documents made by the hospital and seen solely by dailymail.com recommend it solely received $100,000 – method wanting the secure $3.5m 'gift'. + +in fact, bosses at the illustrious la children facility, which cares for sick children despite insurance or their ability to pay, became thus involved they wrote to detected in june 2019 to raise 'if the pledge won't be consummated.' depp's lawyers believe the correspondence is that the 'smoking gun' that proves detected was lying once she boasted concerning the giveaway, not solely in media interviews however in recent proof she gave to a london court. + +the pirates of the caribbean star lost a bruising defamation case last year against the uk's sun newspaper once a british tribunal decides in agreement the publication's depiction of him as a 'wife beater' was 'substantially true' supported blood-curdling accounts of their various bust-ups. giving proof in a very witness statement dated february twenty-six, 2020, detected stated: 'i remained financially freelance from depp the complete time we tend to were along and therefore the entire quantity of my divorce settlement was given to charity.' judge saint andrew nichol cited the gesture whereas deciding the case within the sun's favor, writing: 'her donation of the $7 million to charity is hardly the act one would expect of a gold-digger.' + +according to the source, depp's team can seize upon the judge's remarks in their efforts to attractiveness the london finding that left depp's name and career in tatters. the troubled actor, 57, is additionally tilling on with a separate $50 defamation suit filed in fairfax county, virginia, that accuses detected of making a 'hoax' account of being a force survivor for a 2018 news story......... +______________________________________________ +about my channel : +welcome to the viral flash! in this channel we upload videos related to celebrity gossip, entertainment news, top 10 list videos, updates on royal family etc. as far as possible, we upload 4 videos each week. thanks for watching! +__________________________________________________ +for more videos subscribe : https://bit.ly/2zopgqj",2.0,278.0,,,,,,218.0,46.0,0.0,12.0,johnny depp lied about amber heard !!!,,,,,,,,,, +898,https://www.youtube.com/watch?v=fHxSp8l6dBE,0,0,{'CBR Presents'},1,youtube,video,original video,"amber heard shares a photo of her working out as she prepares to reprise her dc extended universe role as mera in james wan's aquaman 2. + +read the full article here: https://www.cbr.com/aquaman-2-amber-heard-mera-workout-photo/ +visit us at: http://www.cbr.com​​​​ +like us on facebook: https://www.facebook.com/comicbookres...​ +follow us on twitter: https://twitter.com/cbr​​​​ +follow us on instagram: http://instagram.com/comicbookresourc...​ +for copyright matters please contact us at: legal@valnetinc.com",13.0,15279.0,,,,,,15069.0,135.0,0.0,62.0,aquaman 2: amber heard shares photo from her mera workout session,,,,,,,,,, +899,https://www.youtube.com/watch?v=wyzUsNomdTQ,0,0,{'Renin__A_Z'},1,youtube,video,original video,"#reninaz +#azeditz +#whatsappstatus #hd +#latest +#trending +#viral +#famous +#best +#edit +#4k +#1080p +#fullhd +#ultrahd +#uhd +#renin",73.0,1473.0,,,,,,1398.0,0.0,0.0,2.0,mera | amber heard | aquaman | az_editz | whatsapp status | fullscreen | 60fps | #shorts,,,,,,,,,, +900,https://www.youtube.com/watch?v=1fhttOV_lZs,0,0,{'Perfectly Perfect'},1,youtube,video,original video,,1.0,17.0,,,,,,16.0,0.0,0.0,0.0,amber heard new movie #bharatratnaforratantata #westbengalelections #biggboss14 #bb15 #kgf2 #pathaan,,,,,,,,,, +901,https://www.youtube.com/watch?v=6ZhuwlKgdzA,0,0,{'eHacker'},1,youtube,video,original video,"does amber heard treat this horse good or bad? +check out channel membership if you are keen to support the channel! +new members get their names in the credits! + +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com +donate direct to support : coming soon! + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods",298.0,3064.0,,,,,,2558.0,2.0,0.0,206.0,does amber heard treat this horse good or bad?,,,,,,,,,, +902,https://www.youtube.com/watch?v=lObDBqP-s6A,0,0,{'DELCARAJO TV'},1,youtube,video,original video,"► daniel crespo ➥ https://tus10seg.com/1021785 + +00:00 mas retrasos en cyberpunk 2077 +01:14 horrible hecho en brazil +02:01 el resfrió común se extinguió +03:12 le robaron los perros a lady gaga +04:32 madonna vs los hombres +06:15 bella thorne dice que es la nueva britney spears +07:52 david dobrik en problemas +09:42 auronplay y sara biyin se separaron +11:09 emma watson se retira +12:43 ¿llegara algún día la justicia para johnny depp? + +► tus 10 segundos ➥ https://tus10segundos.com/products/delcarajotv +► se parte del team delcarajo: +➥ https://youtube.com/channel/ucuwebhxve6c69jtbpiy-y8q/join +► tienda delcarajo ➥ http://delcarajo.net + +► sigueme en: +twitter ➥ http://twitter.com/juanitosay +instagram ➥ http://instagram.com/juanitosayoficial + +► contacto: say@delcarajo.net + + +* hey, friki delcarajo... ¿que haces tan abajo? el boton de like esta mas arriba ( ͡° ͜ʖ ͡°)",7430.0,115978.0,,,,,,107955.0,184.0,0.0,409.0,¡adiós emma watson! amber heard gana otra vez a johnny depp y horrible robo a lady gaga,,,,,,,,,, +903,https://www.youtube.com/watch?v=bVZIAOVZvws,0,0,{'Flixet'},1,youtube,video,original video,"in today’s video are going to share more details about the rumor of amber heard getting a role in star wars. + +subscribe for more : http://bit.ly/32rc7vi +_____________________________________________ + +actress amber heard has become one of the most hated after she was accused of defamation along with the sun newspaper by her ex-husband johnny depp because during the nefarious trial some unfavorable details of the actress were revealed. but, compared to her ex-partner, the actress seems to continue her career without any dilemma and, according to a report, amber heard could join star wars in an upcoming project. + +music in this video : + +track: odessa — liqwyd & scandinavianz +music provided by audio library plus +watch: https://youtu.be/jny-dp3lgcg",10.0,278.0,,,,,,242.0,6.0,0.0,20.0,amber heard reportedly in talks for star wars role | flixet,,,,,,,,,, +904,https://www.youtube.com/watch?v=tqlpczRg71s,0,0,{'Kurono'},1,youtube,video,original video,"stream from 1/2/2021 +donate to support the channel: https://www.paypal.com/paypalme/777kurono777 +sub to @yellowflash 2 +#yellowflash2 #manga #amberheard #starwars",62.0,1197.0,,,,,,1120.0,4.0,0.0,11.0,yellowflash: gamedevs rise up! manga sales explode! heard steals from charity? starwars fans healing,,,,,,,,,, +905,https://www.youtube.com/watch?v=70ELYhEt7gY,0,0,{'Clips Girl'},1,youtube,video,original video,"kiss scene (stu and frannie) +kissing scene (james marsden and odessa young) +kiss scene from cbs series: ""the stand"" (2020-2021) + +• original title: ""the stand"" +• episode title (s01e09): ""the circle closes"" +• release date: february 11, 2021 +• country: united states +• creators: josh boone, benjamin cavell +• genre: adventure, drama, fantasy +• imdb: 5.5/10 + +after the world is in ruins, due to a man-made plague, a battle of biblical proportions ensues between the survivors. + +cast: +▶ james marsden as stu redman +▶ odessa young as frannie goldsmith +▶ owen teague as harold lauder +▶ alexander skarsgard as randall flagg +▶ whoopi goldberg as mother abagail +▶ amber heard as nadine cross +▶ jovan adepo as larry underwood +▶ henry zaga as nick andros +▶ nat wolff as lloyd henreid +▶ irene bedard as ray brentner +▶ brad william henke as tom cullen +▶ greg kinnear as glen bateman +▶ natalie martinez as dayna jurgens +▶ katherine mcnamara as julie lawry",233.0,83413.0,,,,,,83163.0,17.0,0.0,0.0,the stand / kiss scene — stu and frannie (james marsden and odessa young),,,,,,,,,, +906,https://www.youtube.com/watch?v=qXcMKeH42cc,0,0,{'mets2128'},1,youtube,video,original video,"while not entirely vic related, mets decides to let out his opinion in amber heard being fired from aquaman 2 and how he hopes it’s a sign of vindication for vic as much as it was for johnny depp",2.0,90.0,,,,,,86.0,1.0,0.0,1.0,#istandwithvic amber heard firing reaction video,,,,,,,,,, +907,https://www.youtube.com/watch?v=7-yz2IP_knA,0,0,{'This Happened'},1,youtube,video,original video,"the real reason why amber heard is lying + +will the johnny depp vs. amber heard saga ever end?! johnny’s $50 million defamation trial against his ex-wife has just been postponed again and is now scheduled for april 11, 2022! +this means we’ll be hearing about this celeb drama for at least another year! +but even though we’ll have to wait for a while to hear the final verdict on who lied about what, the fans have already made up their mind. +even those who used to be team amber are now uniting behind the #justiceforjohnny hashtag and accusing amber of weaving a web of lies to ruin johnny’s career. +so while we wait for the case to wrap up in court, let’s take a look at all the evidence pointing to amber heard lying about johnny being the bad guy. + +#johnnydepp #amberheard",3430.0,158841.0,,,,,,154698.0,51.0,0.0,662.0,the real reason why amber heard is lying,,,,,,,,,, +908,https://www.youtube.com/watch?v=2SRs2mxIbyw,0,0,{'honest reviews'},1,youtube,video,original video,"amazon coupons ➡️➡️➡️ https://amzn.to/2wahxla +amber heard fired from jason momoa's 'aquaman 2 + +✓ subscribe for more videos: https://bit.ly/3gjuef4 +✓ watch all videos: https://www.youtube.com/watch?v=y2wqrqozd7s&list=plv0jdssdn8olotey6raict54s7pqkbpxw",0.0,50.0,,,,,,50.0,0.0,0.0,0.0,amber heard fired from jason momoa's 'aquaman 2,,,,,,,,,, +909,https://www.youtube.com/watch?v=I5F-bupyNyQ,0,0,{'Movie Trailer 21'},1,youtube,video,original video,"amber heard fired from aquaman 2 rumor has been debunked + +cancel culture enthusiasts thought that they might have been able to cross another name off the hit list over the weekend, when countless rumors began circulating that amber heard had been fired from aquaman 2 due to a breach of contract. those who recently celebrated disney and lucasfilm booting gina carano out of the star wars universe might not want to start popping those champagne corks just yet, though. + +while james wan’s aquaman is the highest-grossing dc comics adaptation ever made and expectations are through the roof for the sequel to what was an entertainingly loud and endearingly dumb blockbuster, almost all of the talk surrounding the project has revolved around heard in some fashion, and it’s wearing pretty thin at this stage. + +#amberheardfired #aquaman2 +====================================================== +subscribe now: https://goo.gl/rwyqgn + +hope your enjoy! ..... like, share, comment & subscribe us! + +see other movie news, movie rumors, update, trailer and more! + +- avengers movie news: https://goo.gl/sl8uw3 +- captain marvel news update: https://goo.gl/st31bh +- marvel news update: https://goo.gl/qn7qye +- movie news and rumors: https://goo.gl/84kze7 +- predator movie update: https://goo.gl/brw24g +- avatar movie update: https://goo.gl/eibov1 +- star-wars movie news & update: https://goo.gl/qpmufh +- the flash: flashpoint movie: https://goo.gl/th1zbf +- cyborg movie 2020: https://goo.gl/3kwt7a +- godzila vs kong movie 2020: https://goo.gl/rvjsyh +- transformers movie update: https://goo.gl/bmlpmu + +follow us: +- on g+: https://plus.google.com/b/104313795503602045145 +- on twitter: https://twitter.com/movietrailers21 +======================================================== +references: +-",2.0,78.0,,,,,,75.0,1.0,0.0,0.0,amber heard fired from aquaman 2 rumor has been debunked,,,,,,,,,, +910,https://www.youtube.com/watch?v=SOYMA5K8Q7U,0,0,{'InformOverload'},1,youtube,video,original video,"police body cam footage proves amber heard lied about fight with johnny depp +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +a brand new never before seen body cam footage has recently been obtained by the daily mail and johnny depp's lawyers believe that it finally proves amber heard lied about the blowout fight. she originally claimed that the actor had trashed their penthouse and threw a phone at her face, but that story is slowly unraveling. + +source: https://www.dailymail.co.uk/news/article-9474979/johnny-depp-says-police-bodycam-footage-proves-amber-heard-lying.html + +------------------------------------ + +#amberheard #johnnydepp #bodycamfootage #bodycam #policebodycam #justiceforjohnnydepp #johnnydeppvsamberheard #amberheardlied #informoverload #informationoverload #io #celebritynews #entertainmentnews #youtubenews #top10 #celebritygossip #influencergossip #celebritytea #influencertea #aquaman2 #amberheardinterview #lying #caughtin4k + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +johnny rogers: https://www.instagram.com/thejohnnyrogers/ + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +daniela suarez: https://www.instagram.com/danielasuarezphoto/ + + +📱instagram: https://www.instagram.com/informoverload +📱facebook: https://www.facebook.com/informoverload/ +📱twitter: https://twitter.com/informoverload +✉️email | contact: informoverload@gmail.com",5028.0,108819.0,,,,,,103252.0,24.0,0.0,515.0,police body cam footage proves amber heard lied about fight with johnny depp,,,,,,,,,, +911,https://www.youtube.com/watch?v=arNOL2ItCvY,0,0,{'Fire Amber Heard'},1,youtube,video,original video,first video,2.0,12.0,,,,,,10.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 26,,,,,,,,,, +912,https://www.youtube.com/watch?v=qWXO4wSpLGs,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard faces jail time confirmed! active criminal investigation! + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #johnnydepp #amberheard",3485.0,39765.0,,,,,,35714.0,18.0,0.0,548.0,amber heard faces jail time confirmed! active criminal investigation!,,,,,,,,,, +913,https://www.youtube.com/watch?v=EnhZFld5N2o,0,0,{'Kevin McTaggart'},1,youtube,video,original video,"in this episode of the mctaggart attack podcast i explain why i think johnny depp is not the victim regarding his legal issues with ex wife amber heard. + +here are the 2 articles i was talking about: + +https://www.hollywoodreporter.com/features/hes-radioactive-inside-johnny-depps-self-made-implosion + +https://www.bbc.com/news/entertainment-arts-54506759 + + + +https://mctaggartattack.com + +email: mctaggartattack@gmail.com + +follow me @mctaggartattack on twitter, instagram and tiktok! + +if you'd like to contribute to the ""get kevin out of his parent's house fund"" my venmo mctaggartattack and paypal email is mctaggartattack@gmail.com",4.0,747.0,,,,,,543.0,123.0,0.0,77.0,johnny depp is not the victim! (the mctaggart attack podcast),,,,,,,,,, +914,https://www.youtube.com/watch?v=yMo30jnzNfg,0,0,{'Colonel Kurtz'},1,youtube,video,original video,"amber heard johnny depp analysis psychology relationship +in this video i provide a psychoanalytic assessment of amber heard and johnny depp's relationship, exploring new and deeper psychological and philosophical insights into their relationship and individual characters. i cover ideas of sigmund freud, carl jung, and jaques lacan in this video. + +sorry the format is visually restrictive and the volume is a bit low--i'm still working out some kinks and technical issues. put on some headphones or speakers if it's not loud enough for your taste. + +this video won't be monetized due to my discussion of amber heard, but you can donate here: + +tip jar: https://www.paypal.com/donate?hosted_button_id=z65d3ull278sw +patreon: https://www.patreon.com/colonelkurtz?fan_landing=true +bitcoin wallet: 3mdstdvxdhc1vgzijqcounxk7afxttg9ar + +*paypal membership not required to tip there--just need a credit card.*",591.0,8616.0,,,,,,7720.0,10.0,0.0,295.0,amber heard & johnny depp relationship analysis / psychology / philosophy,,,,,,,,,, +915,https://www.youtube.com/watch?v=KQwklwigpRE,0,0,{'InformOverload'},1,youtube,video,original video,"bad news for amber heard! johnny depp appeals high court ruling +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +for those of you who watch this channel a lot you know that for quite some time we have been covering the drama between johnny depp and amber heard. when we last left you jason momoa was defending ambers role in aquaman 2 and johnny depp had lost his libel case to the uk newspaper the sun. however today depp's lawyers say he is appealing this ruling in the high court. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#amberheard #johnnydepp #courtofappeal #appeal #highcourt #libelcase #thesun #sunnewspaper #newsgroupnewspaper #amber #heard #johnny #depp #justiceforjohnny #johnnydeppvsamberheard #amberheardaudio #newevidence #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 #celebritygossip #influencergossip #celebritytea #influencertea #danwootton + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +johnny rogers: https://www.instagram.com/thejohnnyrogers/ + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +dylan lamovsek: https://twitter.com/uptownduck00 + + +📱instagram: https://www.instagram.com/informoverload +📱facebook: https://www.facebook.com/informoverload/ +📱twitter: https://twitter.com/informoverload +📱reddit: https://www.reddit.com/user/informoverloadreddit +✉️email | contact: informoverload@gmail.com",2062.0,46433.0,,,,,,44045.0,37.0,0.0,289.0,bad news for amber heard! johnny depp appeals high court ruling,,,,,,,,,, +916,https://www.youtube.com/watch?v=CIcrN-LQTmM,0,0,{'60celine'},1,youtube,video,original video,"amber heard hit by rumours she's been 'fired from aquaman 2' +please subscribe: https://www.youtube.com/channel/uctyl1jblkvnsuhs-5yy-88g?sub_confirmation=1 +source: https://www.mirror.co.uk/3am/celebrity-news/amber-heard-hit-rumours-shes-23581743 +#amberheard, #rumours, #been, #fired, #from, #aquaman2",1.0,5.0,,,,,,4.0,0.0,0.0,0.0,amber heard hit by rumours she's been 'fired from aquaman 2',,,,,,,,,, +917,https://www.youtube.com/watch?v=RUVg2vOELiI,0,0,{'Kalpesh Ghodke status'},1,youtube,video,original video,"1 .the fast and furious 8 with best scenes with a remix song +https://youtu.be/lqgnn3txgic +2. doctor strange with miya miya miya bhai song +https://youtu.be/yux1jd_u8to +3. transforms all senses with remix song +https://youtu.be/qmk_fxtrlfg +4. iron man with tera baap aaya song +https://youtu.be/4coujdguc6u +5. transformers with get low song +https://youtu.be/mwh-3ufxm2q +6. transformers video with bad boy song (english) +https://youtu.be/9gdej3oujb4",15.0,349.0,,,,,,333.0,1.0,0.0,0.0,amber heard//mera// full screen whatsapp status with elefante song,,,,,,,,,, +918,https://www.youtube.com/watch?v=WUIjR3CDi-M,0,0,{'EdCUT'},1,youtube,video,original video,"for another johnny video let's hit 300 likes:) +say in comments #justiceforjohnnydepp if you want to support johnny + +0:00 starting +0:25 sense of humor +2:52 take care of fans +4:12 epic interviews + +john christopher depp ii (born june 9, 1963) is an american actor, producer, and musician. he is regarded as one of the most notable film stars. he has been nominated for ten golden globe awards, winning one for best actor for his performance of the title role in sweeney todd: the demon barber of fleet street (2007), and has been nominated for three academy awards for best actor, among other accolades. depp made his film debut in the 1984 film a nightmare on elm street, before rising to prominence as a teen idol on the television series 21 jump street (1987–1990). he had a supporting role in oliver stone's 1986 war film platoon and played the title character in the 1990 romantic fantasy edward scissorhands.",93.0,1207.0,,,,,,1087.0,0.0,0.0,27.0,everyone loves johnny depp (not amber heard) here is 3 reasons,,,,,,,,,, +919,https://www.youtube.com/watch?v=y_NB0YHaO38,0,0,{'Amanda Mc.'},1,youtube,video,original video,"hey beautiful people! february is only 1/2 over and so much has happened!! i also just heard young living has a $6 billion lawsuit filed against them now too!! let me know your thoughts in the comments below! +#antimlm #beachbody #lularoe #peloton #meangirls + +timestamps: +1:18 lularoe lawsuit +4:40 k saga drama +20:26 beachbody diversifies + +content creators mentioned in this video: +@camelia https://www.youtube.com/channel/ucxkov78mahsxgyttlpltiia +@not the good girl https://www.youtube.com/watch?v=gi5r-7ab42c&t=26s +@cruel world happy mind https://www.youtube.com/watch?v=ajuxol4rqje&t=2772s +@isabella lanter https://www.youtube.com/watch?v=llbwlib9jo8 + https://www.youtube.com/c/isabellalanter/community +@deanna mims https://www.youtube.com/c/deannamims6/community +lularoe lawsuit content: +@tiana liss https://www.youtube.com/watch?v=w7lcwiohtvs +roberta blevins: https://www.instagram.com/therealrobertablevins/ + her new podcast! https://www.instagram.com/lifeaftermlmpodcast/ + +beachbody: +@amber ny : https://www.youtube.com/watch?v=jxwvqgmpvl0 + +check out these instagram and podcast creators! +https://www.instagram.com/counselorhaley/ +https://www.instagram.com/antimlmbossbabe/ +https://www.instagram.com/detective_lovey/ +https://www.instagram.com/jessmuaofficial/ https://www.instagram.com/lifeaftermlmpodcast/ +https://www.instagram.com/mlmombie/ +https://www.instagram.com/antimlmadvocate/ +https://www.instagram.com/theantimlmceo/ + +sources: +https://www.atg.wa.gov/news/news-releases/lularoe-pay-475-million-resolve-ag-ferguson-s-lawsuit-over-pyramid-scheme +https://news.lularoe.com/news-articles/lularoe-announces-settlement-of-litigation-with-state-of-washington-attorney-generals-office +https://www.businesswire.com/news/home/20210210005414/en/the-beachbody-company-a-leader-in-digital-fitness-streaming-and-nutrition-solutions-to-become-publicly-traded-company +https://www.bloomberg.com/news/articles/2021-01-04/icahn-sells-600-million-herbalife-stake-gives-up-board-seats + +anti-mlm sources: +ftc independent statistical analysis on success with mlm: +https://www.consumer.ftc.gov/articles/0065-multi-level-marketing-businesses-and-pyramid-schemes + +the case for and against mlms: https://www.ftc.gov/sites/default/files/documents/public_comments/trade-regulation-rule-disclosure-requirements-and-prohibitions-concerning-business-opportunities-ftc.r511993-00008%c2%a0/00008-57281.pdf + +products used (not affiliated with any company): +maybelline face studio master prime hydrate + smooth +tart amazonian clay foundation in 16n +e.l.f. putty eye primer +tarte creaseless concealer 25s +e.l.f. makeup sponge +tarte park avenue princess contour +tarte pineapple of my eye eyeshadow pallete, colors: + -lei outer: corners of lid + -jet ski: center lid + -smoothie bar: crease +tarte blush in baja +purxrbk cafe disco color (in center lid), moo point (buffed on upper lid) +laura mercier translucent loose setting powder +nyx vinyl liquid liner +tarte lights, camera, lashes mascara +urban decay lipstick in naked +nyx butter gloss in madeleine +nyx bare with me setting spray + +view my tarte wishlist here: https://tartecosmetics.com/shop/my-wishlist + +**disclaimer** +this video is my opinion only, based on public information about a company and/or an individual representing a company. opinions expressed may be intended to educate and inform, but also serves for entertainment purposes. section 107 of the copyright act provides the statutory framework for determining whether something is a fair use and identifies certain types of uses—such as criticism, comment, news reporting, teaching, scholarship, and research—as examples of activities that may qualify as fair use. viewers are advised to investigate, research, and form their own opinions and make informed decisions based on their own due diligence before entering in contract with any business or individual discussed in this video. viewers are advised to not seek out the business' representatives (either mentioned or implied) in this video and speak hate or ill-intent to those individuals. +**i do not encourage or support bullying or harassment towards any individual mentioned or part of mlm businesses or the practice thereof.** +please be respectful to all, including in the comments. + +follow me! +ig: @_amanda_mc._ + + +video editing software powerdirector 16.0",281.0,4830.0,,,,,,4383.0,6.0,0.0,160.0,lularoe lawsuit + k's latest news + beachbody goes public | anti-mlm | valentine's grwm,,,,,,,,,, +920,https://www.youtube.com/watch?v=zkqvxf1Bl1c,0,0,{'Trend Craze'},1,youtube,video,original video,"#amberheard #ah #jd +amber heard finally apologies to johnny depp +subscribe to trend craze ➡ https://bit.ly/2ibhc0v + +amber heard apologises to johnny depp +the drama between johnny depp and amber heard has been playing out for quite a few years now, with johnny more often than not, existing on the losing end. truth be told, depp seems like the innocent one in this case, but amber’s lies constantly have helped her win the various cases against her. but has she apologized to johnny yet? tune in to find out more! +hello guys and welcome back to trend craze! + +watch next 👇 + +✅ icarly reboot reaction: jennette mccurdy reacts to the icarly reboot 2021 | trend craze +https://youtu.be/usga9c0jk28 + +✅ ariana grande reveals dark truth about nickelodeon | nickelodeon scandal +https://youtu.be/ndnosnbbifk + +trend craze - trend craze is the top place for trending pop culture, celeb drama, top 5, top 10, celeb news, and more! + +#amberheard #ah #jd #trendcraze",4.0,230.0,,,,,,222.0,2.0,0.0,2.0,amber heard finally apologies to johnny depp,,,,,,,,,, +921,https://www.youtube.com/watch?v=_8GmN2lTInA,0,0,{'Mr H Reviews'},1,youtube,video,original video,"amber heard appears to have lied about charity donations - her attorney confirms this + + + + +per boundingintocomics - a new set of documents presented by johnny depp and his legal team allege that amber heard lied about donating the entirety of her $7 million divorce settlement to charity, choosing to pocket most of the money instead. according to documents obtained by the daily mail, heard has only verifiably donated just $100,000 to the children’s hospital los angeles, one of two charitable organizations, alongside the american civil liberties union, that the aquaman star had vowed to donate her settlement to. + + +https://boundingintocomics.com/2021/01/08/johnny-depp-presents-new-documents-claiming-amber-heard-lied-about-7m-charity-donation/ + + + + +my website - https://www.productionhfilms.com/ + +support my new lovecraft film - https://www.gofundme.com/f/1wjly9r91c + +production h films socials - +https://twitter.com/hstudiofilm +https://www.instagram.com/productionhfilms/ + + + +#justiceleague #dc #amberheard + + +teespring - https://teespring.com/en-gb/stores/mr-h-reviews + +amazon affiliate link - https://amzn.to/2hljfzh + +those wanting to become a patron - https://www.patreon.com/mrhreviews + +follow me on twitter to interact with me and suggest future videos - https://twitter.com/mrhreviews + +for business and general inquiries - mrhreviews@gmail.com",1049.0,12335.0,,,,,,11024.0,12.0,0.0,250.0,amber heard appears to have lied about charity donations - her attorney confirms this,,,,,,,,,, +922,https://www.youtube.com/watch?v=TQnhYatNnuI,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"johnny depp wrecks the judge and amber heard on the road to appeal! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",4883.0,93872.0,,,,,,88466.0,33.0,0.0,490.0,johnny depp wrecks the judge and amber heard on the road to appeal!,,,,,,,,,, +923,https://www.youtube.com/watch?v=Zm83CVE_WXg,0,0,{'Viral Vision'},1,youtube,video,original video,"amber heard p*ssed warner bros limits her screen time on aquaman 2!? +the upcoming aquaman 2 movie is going to have a big spotlight on it in many ways. not the least of which is because this sequel comes off of the heels of its predecessor that became the first billion-dollar grossing movie in the dceu, which was a shock to everyone and many are hoping it’ll love up to that potential for greatness once again. however, the other reason that everyone is going to be watching it is the situation with amber heard. which could take an...interesting turn if reports are to be believed. we’ll break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone! a look at the situation with amber heard and aquaman 2 and how things might just go down if the current court case she’s in continues to showcase her.. do you think that a reduced screentime role could satisfy the angry fans out there? or do you think that nothing short of her removal will make them happy? do you think that so close to filming warner bros would dare do that? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",2484.0,85153.0,,,,,,81642.0,107.0,0.0,920.0,amber heard p*ssed warner bros limits her screen time on aquaman 2!?,,,,,,,,,, +924,https://www.youtube.com/watch?v=mTjAfHlS-E8,0,0,{'Low Carb Down Under'},1,youtube,video,original video,"the presenters from the second session of 'low carb international all stars' answer questions from the livestream. featuring ivor cummins, dr. doron sher, dr. david unwin, dr. ken berry and l. amber o'hearn. + +please consider supporting low carb down under via patreon. a small monthly contribution will assist in the costs of filming and editing these presentations and will allow us to keep producing high quality content free from advertising. for further information visit; https://www.patreon.com/lowcarbdownunder",1233.0,42199.0,,,,,,40753.0,26.0,0.0,187.0,low carb international all stars - q&a 2nd session,,,,,,,,,, +925,https://www.youtube.com/watch?v=q5oT9Lizm18,0,0,{'Uncommon Lanka'},1,youtube,video,original video,"#aquaman2​ #jasonmomoa​ # + +aquaman 2 2022 + +in 2018, james wan’s aquaman became a remarkably surprising smash hit. nobody really knew what to expect from it for multiple reasons, given that it was following the disappointing release of justice league; centered on a character who had never had his own live-action solo movie. naturally, the excitement that the project generated immediately led warner bros. to solidify a future for the franchise, and within a few weeks of aquaman’s release we learned about their plans to develop an aquaman 2. + +it’s typical for hollywood studios to try and produce sequels as quickly as they possibly can. after all, they don’t want to let the heat of a burgeoning franchise die down, and the more time that passes means there’s more opportunities for audiences to be distracted by other big properties. that being said, aquaman 2 is taking an extra minute to find its way to theaters, as warner bros. has announced that the blockbuster follow-up is currently scheduled to be released on december 22, 2022. + +so, why is aquaman 2 coming out about four years after its predecessor? for starters, producer peter safran has noted that the filmmakers behind the movie don’t feel the need to rush the project, believing that giving the sequel the most development time possible will ultimately be beneficial for the final product. but that’s not the only reason. not only is the film going to need some legitimate time to actually get made from a logistics standpoint (it’s not super easy creating those underwater environments), but there are also many other dc extended universe titles in the works that the studio is developing between now and december 2022. + +subscribe to moviecliks trailer to catch up all the new movie fanmade trailers just for you. subscribe now and turn the notification on to never miss any trailer from us. + + +aquaman, aquaman movie trailer, justice league, justice league post credits scene, justice league trailer, justice league aquaman, justice league superman returns, aquaman teaser, aquaman trailer, aquaman jason momoa, jason momoa, amber heard, superman vs justice league, wonder woman 2, shazam, infinity war trailer, star wars the last jedi, justice league deleted scenes,are they making a aquaman 2,is there gonna be a aquaman 2,will james wan director aquaman 2,who is aquaman's worst enemy,will there be a wonder woman 2,is there an end credit scene in aquaman,how long is the movie aquaman 2019,will there be another superman movie",1.0,63.0,,,,,,61.0,1.0,0.0,0.0,"aquaman 2 2022 trailer | jason momoa, amber heard",,,,,,,,,, +926,https://www.youtube.com/watch?v=i5Yig0_vVZA,0,0,{'Update News'},1,youtube,video,original video,"warner bros. amber heard has been fired from her role as mera in aquaman 2 due to breaking a clause in her contract, with emilia clark reportedly in line to take over from the actor. the australian entertainment site sausage roll, are reporting that heard ""is in terrible shape"", with the actor blaming the johnny depp situation and the current global pandemic for the condition of her health at this moment. unless you've been living under a rock for the last year, you've likely stumbled upon heard's highly publicised legal battle with ex-husband johnny depp. yet, despite many fans calling for the actor's sacking from the dceu, warner bros. have stood firm and backed heard throughout the process. however, it now appears the studio have decided to go in another direction in the wake of heard breaking a clause in her contract which states that she must be in ""good form"" physically in order to effectively play the part of the princess of xebel. though it is being reported that clarke has signed on to take over the role, renewing her on-screen partnership with fellow game of thrones star jason mamoa, the actor is well aware that heard could still be brought back into the project should she find a way to get her health back on track. that being said, many fans will likely be overjoyed at this development as a petition to get heard fired from the film has now passed 1 million signatures. warner bros. are still yet to confirm the story, but it's looking increasingly likely that heard's days as mera are coming to an end. clarke's involvement would mark her first appearance in a superhero project too, with the star having appeared in the star wars, terminator, and aforementioned game of thrones franchises up to this point. + + +all data is taken from the source: http://whatculture.com +article link: https://whatculture.com/comics/rumour-amber-heard-fired-from-aquaman-2-emilia-clarke-replaces-her-as-mera + + +#amberheard #newsweather #newstodayupdate #newsworld #bbcnewstoday #newstodayoncnn #",0.0,20.0,,,,,,20.0,0.0,0.0,0.0,rumour amber heard fired from aquaman 2 emilia clarke replaces her as,,,,,,,,,, +927,https://www.youtube.com/watch?v=VHq568KAx8w,0,0,{'Closhure'},1,youtube,video,original video,"johnny depp and ex-wife amber heard are both standing by their accusations of abuse toward each other after audio recordings surfaced of the then-couple arguing about physical altercations. + +the audio, shared by the daily mail and confirmed to usa today by depp's lawyer adam waldman as a real recording from 2015, includes heard and depp discussing an incident that got physical. + +🔥 if you loved the video, make sure to like 👍🏼 +🔥 smash that subscribe ❤️ button +🔥 click the notification bell 🔔 if you enjoyed this video! + +i do not take any ownership of the music displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes only. + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: https://support.google.com/youtube/an... + +tags: #amberheard #johnnydepp #10 yearsinprison",96.0,1913.0,,,,,,1775.0,3.0,0.0,39.0,johnny depp's wife amber heard faces 10 years in prison after scandal,,,,,,,,,, +928,https://www.youtube.com/watch?v=yhoQ8khhYZE,0,0,{'eHacker'},1,youtube,video,original video,"amber heard shills loreal on instagram! (with clip!) +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods",576.0,5203.0,,,,,,4282.0,7.0,0.0,338.0,amber heard shills loreal on instagram! (with clip!),,,,,,,,,, +929,https://www.youtube.com/watch?v=gu6OwyF5tf8,0,0,{'Rachel Oates'},1,youtube,video,original video,"reuploading to try and fix the name censoring. i received threats from the ex mentioned because of this video so i'm just trying to protect myself. please don't go look him up and don't go send him hate. he honestly just love attention so please just let him fade into irrelevancy where he belongs please. i've reported him to the police now and they'll be issuing him with a warning and, thankfully, this information will be available to any future partners of his who request information via clare’s law. + +--------------- + + +today we're going to look at the whole timeline of johnny depp and amber heard's relationship and discuss it from the perspective of someone who just got out of an abusive relationship themselves. from the first meeting, to their marriage, to the news articles, deposition, secret recordings and law suits... i'm going to try my best to cover everything and identify some of those red flags and harmful behaviours. + +sources: +- https://variety.com/2016/biz/news/johnny-depp-amber-heard-divorce-settlement-1201837685/ +- https://www.insider.com/johnny-depp-amber-heard-relationship-timeline-2020-7 +- https://www.standard.co.uk/news/uk/johnny-depp-amber-heard-court-case-moments-b39725.html +- https://www.etonline.com/news/190049_amber_heard_texts_from_2014_detail_alleged_assault_by_johnny_depp_exclusive +- https://www.washingtonpost.com/opinions/ive-seen-how-institutions-protect-men-accused-of-abuse-heres-what-we-can-do/2018/12/18/71fd876a-02ed-11e9-b5df-5d3874f1ac36_story.html +- https://www.rollingstone.com/movies/movie-news/amber-heard-johnny-depp-alleged-abuse-defamation-lawsuit-filing-821487/ +- https://www.dailymail.co.uk/news/article-7947733/amber-heard-admits-hitting-ex-husband-johnny-depp-pelting-pots-pans-tape.html +- https://www.youtube.com/watch?v=hmmtvsmxesc&ab_channel=celebrityinsight +- https://www.youtube.com/watch?v=cmxp-tlyqrw&ab_channel=metalmomma +- https://www.youtube.com/watch?v=lc4hf4w7qxa&ab_channel=hyperentertainment +- https://www.youtube.com/watch?v=aca0kwohtqq&ab_channel=incrediblyaverage +- https://www.smh.com.au/entertainment/celebrity/amber-heard-reportedly-arrested-for-assault-on-exgirlfriend-in-2009-20160608-gpe1l5.html +- https://www.youtube.com/watch?v=x7pwjy8g3gk&t=213s&ab_channel=truthseeker +- https://metro.co.uk/2021/01/08/johnny-depp-accuses-amber-heard-of-lying-about-7m-charity-donation-13872865/ + +big shout out to this channel where i got a lot of the clips of the audio recordings, etc. from. he covers this topic a lot: https://www.youtube.com/channel/ucg0c-n_mpyyoxyf4t3jmxnq + +--------------------------- +instagram: https://www.instagram.com/rachel0ates +merch: https://teespring.com/stores/racheloates +support my channel: https://www.paypal.me/rachel0ates +patreon: https://www.patreon.com/racheloates +my wishlist: https://www.amazon.co.uk/hz/wishlist/ls/2ki08m6gz5pjv?ref_=wl_share +kyra's wishlist: https://www.amazon.co.uk/hz/wishlist/ls/1hk86yx9a4hna?ref_=wl_share + +support my channel by buying on of these recommended products through these affiliate links: +uk: https://www.amazon.co.uk/shop/racheloates +usa: https://www.amazon.com/shop/racheloates + +--------------------------- +po box +rachel oates +unit 16588 +po box 6945 +london +w1a 6us + +-------------------------- +thank you to all my +patreon supporters this month! + +contrabanned +leah milsom +newbeski +dylan blair +scott varney +stefan nikolov +arnaldo van putten +caroline s. +joni miller +endorenna +kurt robicheaux +data jack +stuart bower +kevin conrad +alan stevens +sir michael moore, bt. + + +and... + +koen plate +kaito kid +lã­la koronaã­ou +lila k. +matthew vermulm +aleks copeland +julieseven +datheistz +naomi gatehouse +ian t +cmdydva +wolfavatar +anca +inesa vytyte +jeroen poels +malachi oswald +ct berchem +trae sprowles +peter kyrouac +liv’s pantyhose addiction +loren hart + + +and... + +michele +jacquelyn smale +john benson +mad scientist +pentaghast +daniel christensen +dave hardenbrook +maxim k +rachael smith +paul lamadeleine +jordan dundas +glori dithomas +nicholas mastrota +abby +sarah kelly +karla schnikow +annie co +elyse sauriol +nichola hargreaves +lubiniki +joanna han +charles r.l. power +hannes illy +princess arylin +alex hoing +alyssa p +joseph gast +emily corbett +stan zaytsev +lydia +tim c +marcus meitzler +paul +maggie wisk +cro-magnon gramps +hannah ledsom +michael wheatland +gully foyle +steven gernandt +brittany geren +mextli +robert aguero padilla +rampaging marshmallow +katie faust +gary g +james russell +andrew jones +sysosmaster +stacey peterson +ashley lynn waldron +stefan van den berg +mark rice +beth martin +katy vaughan +jimmy b. +flatterfuchs +lord of therring +rebecca lashua +chuong nguyen +chris cox +peter de vries +rachel b royer +andrew jennings +klaus-peter hammerschmidt +james curtis +james classen +john r +dean a. batha +matt + + +you guys are incredible!! ♥ + +--------------------------- + +patreon: https://www.patreon.com/racheloates + +don't feel like you have to donate, but please know i'm super-grateful to anyone who does ♥ + + +#justiceforjohnnydepp",4163.0,78615.0,,,,,,73884.0,77.0,0.0,491.0,[reupload] johnny depp vs. amber heard | the full story of a toxic relationship & abuse,,,,,,,,,, +930,https://www.youtube.com/watch?v=uwy7HdQvET8,0,0,{'DELCARAJO TV'},1,youtube,video,original video,"el día de hoy, la actriz amber heard (mera en aquaman y justice league) se decidió a responderme un tweet un tanto irónicamente... + +► tus 10 segundos ➥ https://tus10segundos.com/products/delcarajotv +► se parte del team delcarajo: +➥ https://youtube.com/channel/ucuwebhxve6c69jtbpiy-y8q/join +► tienda delcarajo ➥ http://delcarajo.net + +► sigueme en: +twitter ➥ http://twitter.com/juanitosay +instagram ➥ http://instagram.com/juanitosayoficial + +► contacto: say@delcarajo.net + + +* hey, friki delcarajo... ¿que haces tan abajo? el boton de like esta mas arriba ( ͡° ͜ʖ ͡°)",19617.0,199317.0,,,,,,177318.0,334.0,0.0,2048.0,el peor dia de mi vida: amber heard se ríe de mi en twitter 😵💔,,,,,,,,,, +931,https://www.youtube.com/watch?v=hV6kEpxd49k,0,0,"{""I'm Yk""}",1,youtube,video,original video,"thanks for watching ...:) +like 💜comment 💜share 💜 +& don't forget to subscribe ....🔔 + +*********************************************** + +scenes = _zack snyder's justice league ,the aquaman. + +::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: + + +"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" + +my instagram https://www.instagram.com/imyk14/ + +================================================== + +disclaimer (notice )_all these things are copyrighted.i just edited and published to audience for entertainment purpose only. all right reserved to the respected owner.",,,,,,,,430.0,,0.0,2.0,aquaman and mera //jason momoa and amber heard //full screen loving whatsapp status //_i'm yk//,,,,,,,,,, +932,https://www.youtube.com/watch?v=A1kOXoxgt18,0,0,{'Amberry'},1,youtube,video,original video,"thank you so much for 1 million subscribers. todays video we will be looking back at old memories like the day olive was born, how richicken and i met and phoeberry and i as kids. + + +thanks for watching! don't forget to subscriberry 🍓 and turn on your notifications 🔔 i always reply/heart comments at the start of every upload! + +🍓🦄follow me: +twitter: https://twitter.com/amberryyt +instagram :https://www.instagram.com/amberryphoeberry +roblox: https://www.roblox.com/users/275424983/profile +follow my roblox group: https://www.roblox.com/groups/3857126/amberry-group#!/about + + +🍓watch some of my roblox series: + +🍓bloxburg family series 👨👶👩: +https://www.youtube.com/watch?v=4zlluuvonho&list=pl8x5cms32pg8p3ztroazm9o1_-2rekwm3 + +🍓two broke sisters- poor to rich bloxburg🤷🙎: +https://www.youtube.com/watch?v=-ap5y791rn4&list=pl8x5cms32pg-y_jrcyqqx1myjc3ru4m5n + +🍓royale high👸: +https://www.youtube.com/watch?v=hishwzkr0hs&list=pl8x5cms32pg-38gc_a1pgrokgdqbmzzyv + + +what is roblox? +roblox is an online virtual playground and workshop, where kids of all ages can safely interact, create, have fun, and learn. it’s unique in that practically everything on roblox is designed and constructed by members of the community. roblox is designed for 8 to 18 year olds, roblox is kid friendly.pg, family friendly + no swearing but it is open to people of all ages. each player starts by choosing an avatar and giving it an identity. they can then explore roblox — interacting with others by chatting, playing games, or collaborating on creative projects. each player is also given their own piece of undeveloped real estate along with a virtual toolbox with which to design and build anything — be it a navigable skyscraper, a working helicopter, a giant pinball mac",154907.0,7442950.0,,,,,,7271086.0,4605.0,0.0,12352.0,the day olive was born... 1 million subscriber special | family roleplay,,,,,,,,,, +933,https://www.youtube.com/watch?v=Di7-u0awsp8,0,0,{'Film Streak'},1,youtube,video,original video,"aquaman spinoff ""the trench"" cancelled because of amber heard. +the drama between amber heard and johnny depp has had a lot of consequences for themselves, the people close to them, their careers but also for the movies that they are a part of! +having a lead role involved in so serious issues is not something most companies want and therefore both amber heard and johnny depp have lost multiple roles because of this. but this has also hurt the movies themselves and the new upcoming aquaman movie ""the trench"" has most likely been cancelled because that amber heard couldn't be a part of it. + +here on film streak we are all about the latest spill in hollywood! you can rest assure that we will bring you all the latest celebrity drama and gossip especially concerning you favorite actors! we´ll also make sure to keep you updated on the newest movie updates and releases – so if you are interested in anything that happens in hollywood, you should make sure to stay tuned! + +and there you have it guys! we hope you enjoyed the video! if you did please consider leaving a like and telling us what you though in the comments! + +so, if you are interested in anything related to hollywood, make sure to smash that subscribe button to see more of our content in the future! 🎬 https://bit.ly/3kzplqd + +#amberheard #amberheardfired #thetrenchcancelled #filmstreak",150.0,4164.0,,,,,,3937.0,14.0,0.0,63.0,"aquaman spinoff ""the trench"" cancelled because of amber heard",,,,,,,,,, +934,https://www.youtube.com/watch?v=i273Ym8PiiI,0,0,{'24h News'},1,youtube,video,original video,"guerre contre amber heard : pourquoi johnny depp assigne elon musk en justice +please subscribe: https://www.youtube.com/channel/uclh2ys1sv0gpfhadlneab_w?sub_confirmation=1 +source: https://www.closermag.fr/people/guerre-contre-amber-heard-pourquoi-johnny-depp-assigne-elon-musk-en-justice-1250298 +#guerre, #contreamberheardpourquoijohnnydepp, #assigneelonmusk, #justice",0.0,7.0,,,,,,7.0,0.0,0.0,0.0,guerre contre amber heard : pourquoi johnny depp assigne elon musk en justice,,,,,,,,,, +935,https://www.youtube.com/watch?v=BpYXhLOlGM0,0,0,{'All In One 》world Info'},1,youtube,video,original video,"amber heard’s latest interview on youtube has been disliked more than 451k times. the actress was recently interviewed by access hollywood, where she spoke about her new series the stand and what she had learned in 2020. there are over 131k comments on the video at the time of writing, many of which are showing support for heard’s ex-husband, johnny depp. + +besides reflecting on her takeaways from the year, heard also spoke about her new series — and why she thinks that it’s particularly timely. she spoke about how the series, which debuted on cbs all access in early december, follows the characters’ lives as they struggle to adapt to the new world they are living in. + +around the same time, amber heard recently that she was “excited to get started” work on aquaman 2 – and that she hopes production will be getting underway some time next year. she also responded to those who seemingly called for her to be removed from her role as mera, adding: “paid rumors and paid campaigns on social media don’t dictate [casting decisions] because they have no basis in reality. only the fans actually made aquaman and aquaman 2 happen. i’m excited to get started next year.”",20.0,235.0,,,,,,199.0,0.0,0.0,16.0,"another ""milestone"" of 451k dislikes: amber heard interview disliked by over 451k people on youtube",,,,,,,,,, +936,https://www.youtube.com/watch?v=r-RJnj777bI,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"amber heard steps in it again, and blames it on johnny depp! plus jds house gets broken into! + +let me know what you think! + +💕 don't forget to like & subscribe! 💕 + + + +backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + + +become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +if you want to support my channel, please check out my patreon and subscribe star below: + +patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp",882.0,13176.0,,,,,,12059.0,6.0,0.0,229.0,amber heard admits she lied! but blamed johnny! | johnny depp's home broken into & female arrest!,,,,,,,,,, +937,https://www.youtube.com/watch?v=YYBthbBmahM,0,0,{'Incredibly Incredible'},1,youtube,video,original video,"this video is a clip which was excluded from the cut-up, edited and leaked recording by johnny depp’s team in january. the full version was recorded by johnny depp and amber heard during their marriage (september 2015). the full recording is being used as evidence in the johnny depp v the sun uk libel case. depp decided to sue the sun for publishing an article where they brand him a ‘wife-beater’, for abusing his then wife, amber heard. + +when the cut-up/edited 46 minute version leaked in january by depp’s team, it was made to portray a certain narrative and was used as propaganda. it was leaked 6 months before the trial began and used to lead people and potential jurors to believe that it was somehow an official piece of evidence, which it was not. it was incomplete. + +if you’d like to read the official case documents, they can be found here: https://www.nickwallis.com/depp-trial + +this recording was obtained through courttv and can be found here: https://www.courttv.com/news/amber-heard-witness-statements-depp-blamed-the-monster-for-physical-verbal-abuse/ + +you can listen to the full recording here: https://youtu.be/k9pbrbmhi58 + +comments are disabled to combat abuse.",,,,,,,,1830.0,,0.0,,amber heard begging johnny depp to stop ditching her / audio,,,,,,,,,, +938,https://www.youtube.com/watch?v=EisiBPPUzh8,0,0,{'Come Geek Some'},1,youtube,video,original video,"appeal judge admits & agrees heard lied!! depp v ngn + +links: https://linktr.ee/comegeeksome + +join this channel to get access to perks: +https://www.youtube.com/channel/uc4ltvxoxgzobqqduv9ixowg/join + +current channel members +jodie galloway +lizz gordon +ghetto tv +scandi on a mission +agnes maccallum +flying without fear +ann-christin mortensen +caroline +tammytalksabout +aleksandra jarosz +lena stensgaard +tina flowers +dawn curry +truebliu nineleven +haley angie +loralie dee +ann brown +horae of peace +jasmine t. redfeather +amanda grout +emma p +nicole turner +enceladuswaters +dísa maria helgudóttir +georgina campbell +marianne erni +irene maiden +zara zohl +laura uk +mary scott +megan o'shea +johnny's girl +claire flavin-jones +lynn bain +jane ruddell +donald dolan +mary turpel +ahyoka ama +sally pascoe +shelley tennant +sunshine +ali bali +penguin 322 +jane durante +sabine möller +videnthecoldone +leah veneau +hanne lærke sommer +morning tea +juanita schutte +jennifer willis +lisa lambert +susan redden +cat meissner +broly the mighty +humble bee +sarah wells +christine b-r +zombqueeen +tammy lockley +michieee +stephanie davis +bonnieb +janette tammaro +wendy postma +maureen kinross +deborah melendy +roamer mgtow +madamebebo +claire jones +mary scott +adriana adams +sarah kat +patti_c +steve kass +john le +kimmhy depp +night train blues +harbenja +l c +gelth walker +laura uk +judith hodgson +lifeofsarcasm +clairmbear +moxxie moon +anne holyday +k. kae-linn allison +megan o'shea +sylvan + +hello and welcome to come geek some! for all things geek, like and subscribe to the channel! + +please ignore or flag spam, negative, or hateful comments. we're here to have a good time. thanks everyone, and enjoy :] + +if you would like to support the channel and help us grow! +donations: https://streamlabs.com/comegeeksome + +i'm an avid adobe premiere pro user and have been for quite some time! i would recommend the software to anyone (if they have the spare money a month) + +ps4 player with pc gameplay now and again. still not used to pc gaming! + +interact with us on twitter! https://twitter.com/comegeeksome1 +twitch: https://www.twitch.tv/geeksomegaming + +#johnnydepp #amberheard #judge",790.0,6591.0,,,,,,5634.0,5.0,0.0,162.0,appeal judge admits & agrees heard lied!! depp v ngn,,,,,,,,,, +939,https://www.youtube.com/watch?v=UeAiWcTkaqo,0,0,{'Daily News'},1,youtube,video,original video,"for the past year or so, pirates of the caribbean captain jack sparrow actor, johnny depp, and his ex-wife, amber heard, have gotten more than their fair share of negative press.",0.0,10.0,,,,,,10.0,0.0,0.0,0.0,amber heard reportedly fired from ‘aquaman’ for reasons unrelated to depp,,,,,,,,,, +940,https://www.youtube.com/watch?v=KLRBJ6ejt2I,0,0,{'#JohnnyDeppIsRacist'},1,youtube,video,original video,,0.0,,,,,,,1.0,0.0,0.0,,you can learn to judge for yourself!! (amber heard playlist!!),,,,,,,,,, +941,https://www.youtube.com/watch?v=yIPmdBuVE-U,0,0,{'Fly Movie Trailers'},1,youtube,video,original video,,32.0,12372.0,,,,,,12329.0,10.0,0.0,1.0,"aquaman 2 bande annonce (2021) jason momoa, amber heard",,,,,,,,,, +942,https://www.youtube.com/watch?v=jKBoWuwodKM,0,0,{'DELCARAJO TV'},1,youtube,video,original video,"► anonimo ➥ https://tus10seg.com/1020418 +► mexicano en filipinas ➥ https://tus10seg.com/1020582 + +00:00 cumpleaños elizabeth olsen +00:58 españa quiere registro de no inyectados +02:00 ¿cara delevigne en pareja con jaden smith? +03:18 la caja de belle delphine +03:41 kendall jenner y el photoshop +05:16 entrevista a lindsay lohan con david letterman +06:56 ninja ¿cancelado? +11:34 viaje a japon +12:22 amber heard, johnny depp, elon musk y emilia clarke + +► tus 10 segundos ➥ https://tus10segundos.com/products/delcarajotv +► se parte del team delcarajo: +➥ https://youtube.com/channel/ucuwebhxve6c69jtbpiy-y8q/join +► tienda delcarajo ➥ http://delcarajo.net + +► sigueme en: +twitter ➥ http://twitter.com/juanitosay +instagram ➥ http://instagram.com/juanitosayoficial + +► contacto: say@delcarajo.net + + +* hey, friki delcarajo... ¿que haces tan abajo? el boton de like esta mas arriba ( ͡° ͜ʖ ͡°)",18847.0,315819.0,,,,,,294824.0,681.0,0.0,1467.0,elon musk expone a amber heard y la despiden de aquaman 2: emilia clarke sera mera,,,,,,,,,, +943,https://www.youtube.com/watch?v=hLPZl5xCPN0,0,0,{'BRUCE'},1,youtube,video,original video,"#mera #meraaquaman #amberheard #aquaman #nca #whatsappstatus + + + + +mera whatsapp status, mera whatsapp status koi na dekhe, mera whatsapp status sab kaise dekhe, mera whatsapp status kon kon dekhta hai kaise pata kare, mera whatsapp status koi download na kar sake, mera whatsapp status tamil, mera whatsapp status nahi dikh raha hai, mera whatsapp status koi save na kar sake, mera whatsapp status kisi ko na dikhe, mera whatsapp status kis kisne dekha +mera aquaman whatsapp status, princess mera aquaman whatsapp status +mera aquaman status +mera aquaman, mera aquaman real name, mera aquaman whatsapp status, mera aquaman status, mera aquaman kiss, mera aquaman song, mera aquaman actress, mera aquaman movie, mera aquaman scene, mera aquaman 2 +aquaman mera whatsapp status, princess mera aquaman whatsapp status +amber heard whatsapp status, amber heard whatsapp status tamil, amber heard whatsapp status full screen, amber heard whatsapp status play date, amber heard whatsapp status telugu, amber heard whatsapp status aquaman, amber heard whatsapp status tamil fullscreen, johnny depp amber heard whatsapp status, amber heard hot whatsapp status, amber heard hd whatsapp status +amber heard status, amber heard status video, johnny depp amber heard status, amber heard whatsapp status, amber heard whatsapp status tamil, amber heard play date status, amber heard aquaman whatsapp status, amber heard whatsapp status full screen, amber heard hot status, amber heard aquaman status +amber heard full screen whatsapp status, amber heard whatsapp status tamil fullscreen +aquaman mera full screen whatsapp status +nca whatsapp status, nca whatsapp status full screen, nca whatsapp status lyrics, nca whatsapp status black screen, nca whatsapp status song, nca whatsapp status tamil, nca whatsapp status ringtone, nca whatsapp status telugu, nca whatsapp status love, nca whatsapp status video +andro nca, andro nca song, andro nca ringtone, andro nca whatsapp status, andro nca remix, andro nca status, andro nca lyrics, andro nca 8d, andro nca live, andro nca song whatsapp status",1787.0,21731.0,,,,,,19868.0,63.0,0.0,13.0,mera aquaman whatsapp status | amber heard edit #shorts #mera #amber #heard,,,,,,,,,, +944,https://www.youtube.com/watch?v=FaCVD_0bw2c,0,0,{'Multiple Contents'},1,youtube,video,original video,"hey guyzzz, we are here for you all. welcome to our channel please like and subscribe our channel. so we can make more intresting and beautiful videos for multiple content family :) + +...................................................................................... + + +actress amber heard sued her ex-husband johnny depp claiming he had verbally and physically abused her. depp has since made an effort to fight back, delivering her a defamation lawsuit after evidence of his innocence emerged in the form of a leaked recording from 2015, and a statement from heard’s hairstylist. but in a surprise twist, heard could be facing not just millions of dollars in this case, but also three years in jail. + + +note : copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use. + + +#amberheardfacesprisontime +#aquamanstar +#amberheard",189.0,5881.0,,,,,,5670.0,3.0,0.0,19.0,amber heard faces prison time for defamation of johnny depp #amberheardfacesprisontime #aquamanstar,,,,,,,,,, +945,https://www.youtube.com/watch?v=LxqBr_H46Z0,0,0,{'Ella Dice'},1,youtube,video,original video,"despido de amber heard de aquaman 2 y sustitución por emilia clarke resulta falso esta es la verdad! + +►► siguenos en facebook: https://www.facebook.com/ella-dice-100259742102632/ +►►sigue a tucosmopolis: https://www.youtube.com/c/tucosmopolis +►los mejores chismes de la farándula: https://www.youtube.com/channel/uch3p5m6y7e_raipa6f3uzfa + +#kyliejenner #hollywood",1330.0,44947.0,,,,,,43243.0,76.0,0.0,298.0,despido de amber heard de aquaman 2 y sustitución por emilia clarke resulta falso esta es la verdad!,,,,,,,,,, +946,https://www.youtube.com/watch?v=xlL2DiqlGIg,0,0,{'FilmIsNow Movie Bloopers & Extras'},1,youtube,video,original video,"magic mike xxl ""the moves of magic mike xxl"" featurette +directed by gregory jacobs and starring channing tatum, joe manganiello, matt bomer, adam rodriguez, amber heard... + +three years after mike bowed out of the stripper life at the top of his game, he and the remaining kings of tampa hit the road to myrtle beach to put on one last blow-out performance. + +#magicmikexxl #behindthescenes. + +subscribe and click the notification 🔔 here: http://bit.ly/subextra + +🛒 check out our new merch store! : http://bit.ly/exshop +🎥 filmisnow movie trailers : http://bit.ly/fintrailers +🌍 filmisnow movie trailers international : http://bit.ly/finintex +🏃‍♂️ filmisnow action movie trailers : http://bit.ly/finactionex +👪 filmisnow family movie trailers : http://bit.ly/finfamex +🎶 chillout music zone : http://bit.ly/chilloutex + +some of the best and most funniest movie moments happen behind the scenes. #filmisnowextra & movie bloopers channel gives you the latest and best behind the scenes footage, gag reel, vfx breakdown, interviews, featurettes and deleted/alternate scenes. we give you the before, during and after that goes into making movies.",2533.0,300408.0,,,,,,297752.0,76.0,0.0,47.0,magic mike xxl (2015) | the moves of magic mike xxl featurette,,,,,,,,,, +947,https://www.youtube.com/watch?v=KLzri0EPn0I,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard attacks her fans - and fails! they're backing depp! + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",3140.0,44708.0,,,,,,41083.0,25.0,0.0,460.0,amber heard attacks her fans - and fails! they're backing depp!,,,,,,,,,, +948,https://www.youtube.com/watch?v=OZDU8V8EiLg,0,0,{'The HollyVibe'},1,youtube,video,original video,"12 celebrities who defended johnny depp against amber heard +there is a lot going on in the world of johnny depp right now. but despite all the things that have been said, there are a lot of celebrities who have come out of the woodwork if you will to defend him and say how good of a guy he is. but who would do such a thing? allow us to show you. be sure to like the video and subscribe to the channel! +#johnnydepp #amberheard #johnnydeppamberheard +and there you have it, everyone, a look at the celebrities who have happily spoken up for johnny depp and defended his character both as a friend, as a man, and as a loving partner and father. do these testimonies further help you understand why johnny depp may be innocent in all of this? do you think that he is innocent? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +welcome tothe hollyvibe. we make interesting videos about hollywood in english. we give you a closer look in the lives of celebrities like kanye west, ed sheeran, the rock, jay z, selena gomez, kylie jenner, kim kardashian, rihanna and 100s more. + +we tell you interesting things about these hollywood celebrities that you may have never heard before. + +please subscribe to our channel to stay up to date with interesting facts about hollywood celebs. + +cheers!",9.0,120.0,,,,,,111.0,0.0,0.0,0.0,12 celebrities that defended johnny depp against amber heard | the hollyvibe,,,,,,,,,, +949,https://www.youtube.com/watch?v=JEd9yrIec9s,0,0,{'Clownfish TV'},1,youtube,video,original video,"amber heard is being accused of skipping out on donating $7 million to charity, including $3.5 million to a children's hospital. heard claimed under oath she had donated all of her johnny depp divorce settlement money to charity, but this doesn't seem to be true. so what else did she lie about...? + +🤡🐠📺 clownfish tv channels - +💬 clownfish tv (geek commentary) - https://www.youtube.com/c/clownfishtv +🇪🇸 clownfish tv en español (spanish dub) - https://www.youtube.com/channel/uchlb7rolzvap0hvcw3ldgfq +🎮 clownfish tv gaming (video games) - https://www.youtube.com/channel/ucirglgyil5uevdeltx33ehw +🎨 clownfish animation (art and animation) - http://www.youtube.com/c/clownfishanimation + +follow clownfish tv on social media - +► twitter - http://twitter.com/realclownfishtv +► facebook - http://facebook.com/clownfishtv +► instagram - http://instagram.com/realclownfishtv +► d-rezzed - http://d-rezzed.clownfishtv.com + +clownfish tv covers pop culture news on movies, anime, cartoons, comic books, gaming, tv and more. hosted by kneon and geeky sparkles. + +business inquiries can be sent to shoutout [at] clownfishtv.com + +some music and sound fx courtesy of epidemic sound - http://www.epidemicsound.com/ + +#amberheard #johnnydepp #aquaman2 #mera #piratesofthecaribbean",2907.0,45062.0,,,,,,41484.0,27.0,0.0,644.0,amber heard lied about giving millions to charity?!,,,,,,,,,, +950,https://www.youtube.com/watch?v=zjiAIuYCeV8,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"johnny depp's lawyer adam waldman was suspended from twitter for facts! this censorship is ridiculous! + +let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +☆other platforms☆ + + +•backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + +☆support the channel☆ + +•become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +•if you want to support my channel, please check out my patreon and subscribe star below: + +•patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp #twitter",288.0,2113.0,,,,,,1736.0,2.0,0.0,87.0,twitter protects liars! | johnny depp's information being censored!,,,,,,,,,, +951,https://www.youtube.com/watch?v=WdMBTN9qEAo,0,0,{'Flixet'},1,youtube,video,original video,"in this video, we will discuss the rumor going on regarding amber heard of failing the physical exam for aquaman 2. + +subscribe for more : http://bit.ly/32rc7vi +_____________________________________________ + +amber heard has been fired from aquaman 2 after failing a physical examination for her role and will be replaced by game of thrones actress emilia clarke, a media outlet reported on sunday. watch this video till the end to know more about it. + + +music in this video : + +track: odessa — liqwyd & scandinavianz +music provided by audio library plus +watch: https://youtu.be/jny-dp3lgcg",75.0,1095.0,,,,,,999.0,1.0,0.0,20.0,amber heard failed her physical exam for aquaman 2?,,,,,,,,,, +952,https://www.youtube.com/watch?v=7oKlkBNMmlU,0,0,{'Demi Jack'},1,youtube,video,original video,"welcome back to this week in pop culture the show where we discuss movies and tv shows. +this week there rumours that amber heard has been fired from aquaman 2 +as well rumours that she hasn't been fired. + they vary from she gain weight so fired what she did do johnny deep +so fired or that she in fact not fired. +well i don't know what to think on this one but in my honest opinion +i think amber heard should be allowed to act as well as johnny deep +should be allowed to act couse it just fair + + + +link to the article in the video https://www.cinemablend.com/news/2563614/has-amber-heard-actually-been-fired-from-aquaman-2-heres-the-latest + + + + + +#amberhead #aquaman2 #amberheardfired + + + +like and subscirbe if you enjoyed + + +demi jack twitter: https://twitter.com/demijacked",2.0,14.0,,,,,,11.0,0.0,0.0,1.0,is amber heard fired from aquaman 2 - this week in pop culture,,,,,,,,,, +953,https://www.youtube.com/watch?v=c8aJQ1MLlEE,0,0,{'Heiße Nachrichten 24H'},1,youtube,video,original video,"als zeuge geladen: johnny depp hofft im rosenkrieg mit amber heard auf elon musk + +die anwälte möchten, dass musk...",0.0,3.0,,,,,,3.0,0.0,0.0,0.0,als zeuge geladen: johnny depp hofft im rosenkrieg mit amber heard auf elon musk,,,,,,,,,, +954,https://www.youtube.com/watch?v=FCc0V3MEcGc,0,0,{'FilMonger Entertainment'},1,youtube,video,original video,"please watch: ""tom holland spends 1 million dollar on shopping | spider-man: no way home"" +https://www.youtube.com/watch?v=3ubohwubxm8 --~-- +whom would you like to see as mera if amber heard is fired? let us know in the comments section down below. + +please show your love by sharing this video with your friends and family.😊👍 + +please submit your talent videos to: filmartsyofficial@gmail.com + +please support us on patreon: http://patreon.com/filmartsy​ + +follow us for instant updates: +twitter: https://twitter.com/filmartsy​ +facebook: https://www.facebook.com/filmartsy​ +instagram: https://www.instagram.com/filmartsyofficial/ +pinterest:https://www.pinterest.com/filmartsy/​ +reddit: https://www.reddit.com/user/filmartsy​official/ +website: http://filmartsy.com​ + +filmartsy entertainment is all about films. this channel gives you the latest updates on films, behind the scenes, deleted scenes, bloopers, making of film, vfx analysis, celebrity interviews, cast funny moments, and much more. so, please subscribe to increase your knowledge about films. thank you!😘",199.0,10251.0,,,,,,9968.0,9.0,0.0,75.0,amber heard has reportedly been fired as mera from aquaman 2 | johnny depp 2021,,,,,,,,,, +955,https://www.youtube.com/watch?v=PuACxDm4nAY,0,0,{'Trend Craze'},1,youtube,video,original video,"johnny depp speaks out about amber heard | johnny depp interview (trend craze) + +this week, american actor johnny depp lost a libel suit he filed in london, suing the newspaper the sun for running an article that called him a ""wife beater,"" a reference to his relationship with ex-wife amber heard. it was an ugly case, dragging both actors' private lives into the spotlight. and it was a complicated case; each accused the other of abuse. but there was a clear winner, other than the tabloid paper: domestic violence victims. + +the two debate the degree to which heard injured depp. at one point, heard tells depp she was hitting him: ""babe, you're not punched. i don't know what the motion of my actual hand was, but you're fine. i did not hurt you, i did not punch you, i was hitting you."" + +but depp went a step further in may 2019, saying that ""while mixing prescription amphetamines and non-prescription drugs with alcohol,"" heard ""hit, punched and kicked me. she also repeatedly and frequently threw objects into my body and head, including heavy bottles, soda cans, burning candles, television remote controls and paint thinner cans, which severely injured me."" + +»» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» » »» »» »» »» »» »» + +do you know all the things about johnny depp? feel free to let us know below! + +also, if this video helpful to you, don't hesitate to leave a like, and hit that subscribes button for more high-quality content! + +»» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» » »» »» »» »» »» »» + +▲ last week's videos ▼ + +celebrity look alike who are total strangers | celebrity doppelgangers lookalike you won't believe +https://www.youtube.com/watch?v=qjrgfj0jyaw + +kate yup: what really happened? | kate yup mukbang asmr | kate yup update +https://www.youtube.com/watch?v=9a2r53arkgk + +»» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» » »» »» »» »» »» »» +#johnnydepp #depp #speakout + +tags: trend craze,trendcraze,johnny depp,depp,speak out,johnny depp interview,amber heard,amber heard johnny depp,johnny depp amber heard,amber heard johnny depp fight video,amber heard interview,amber heard channel,johnny depp amber heard audio,johnny depp and amber heard,justice for johnny depp,johnny depp and amber heard fight,johnny depp amber heard fight,amber heard deposition,amber heard audio,johnny depp wife,joe rogan johnny depp,johnny + +»» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» »» » »» »» »» »» »» »» + +right notice: the copyright laws of the united states recognizes a “fair use” of copyrighted content. section 107 of the u.s. copyright act states: “notwithstanding the provisions of sections 106 and 106a, the fair use of a copyrighted work, including such use by reproduction in copies or phono records or by any other means specified by that section, for purposes such as criticism, comment, news reporting, teaching (including multiple copies for classroom use), scholarship, or research, is not an infringement of copyright. ” this video and our youtube channel in general may contain certain copyrighted works that were not specifically authorized to be used by the copyright holder (s), but which we believe in good faith are protected by federal law and the fair use doctrine for one or more of the reasons noted above.",1.0,113.0,,,,,,112.0,0.0,0.0,0.0,johnny depp speaks out about amber heard | johnny depp interview (trend craze),,,,,,,,,, +956,https://www.youtube.com/watch?v=kZRBR7BQ17M,0,0,{'DC Geek House'},1,youtube,video,original video,"#amberheard #theflashmovie #sashacalle #mera #dceu #aquaman2 #emiliaclarke #legionofsuperheroes #supergirl #batman #scarecrow #johndiggle #theflash #batmanbeyond #arrowverse + +¡nuevo vídeo de noticias! por un lado más detalles sobre el regreso de diggle al arrowverse/cwverse, un encargado de ""batman beyond"" pide por el regreso de la serie animada, rumores sobre posibles películas del espantapájaros y la legión de super-héroes, y rumores sobre mera en el cine de dc. + +----------------------------------------------------------------------------------------------------------------------------------------------- +blog: https://eluniversodccomics.blogspot.com/ +facebook: https://www.facebook.com/dcgeekhouse +twitter: https://twitter.com/universodccomic +instagram: https://www.instagram.com/universodccomics11/ +copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use. +copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use.",32.0,198.0,,,,,,163.0,0.0,0.0,3.0,"#dcnews amber heard sigue como mera, ¿pelis de la legión y el espantapájaros? diggle, batman beyond",,,,,,,,,, +957,https://www.youtube.com/watch?v=U0B2yDgI6w0,0,0,{'InformOverload'},1,youtube,video,original video,"amber heard accused of lying about charity donation +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +johnny depp has just accused amber heard of pocketing the 7 million dollar settlement from their 2016 divorce. according to depp, ms. heard has lied about giving the money to charity and today on the channel were going to try and make sense of these accusations to see if theres any validity to it. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#amberheard #johnnydepp #amberheardvsjohnnydepp #libelcase #divorce #settlement #amber #depp #justiceforjohnny #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +johnny rogers: https://www.instagram.com/thejohnnyrogers/ + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +dylan lamovsek: https://twitter.com/uptownduck00 + +📱instagram: https://www.instagram.com/informoverload +📱twitter: https://twitter.com/informoverload +✉️email | contact: informoverload@gmail.com",1777.0,27615.0,,,,,,25502.0,27.0,0.0,309.0,amber heard accused of lying about charity donation,,,,,,,,,, +958,https://www.youtube.com/watch?v=QgMabpFX9OU,0,0,{'Film Streak'},1,youtube,video,original video,"""you saved me"" johnny depp thanks his supporters for defending him (video) +a few months ago, american actor, johnny depp, lost his libel case in london. in the case, he was suing the tabloid, the sun, for labeling him in an article they had published after his divorce with his ex-wife amber heard. although things did not go as planned for johnny depp, he is still very grateful to have a lot of people taking his side. +hey there. welcome to our youtube channel. in today’s video, we will dive into johnny depp’s case and see how he warned his fans about amber heard and their reaction to all that is currently happening. so, be sure to watch this video until the end. +johnny depp started off his career on a very high note. he began his career in the 1980s and slowly rose to fame, and started acting alongside hollywood’s major actors. he has won various titles and nominations and was once the tenth highest-grossing actor worldwide. + +here on film streak we are all about the latest spill in hollywood! you can rest assure that we will bring you all the latest celebrity drama and gossip especially concerning you favorite actors! we´ll also make sure to keep you updated on the newest movie updates and releases – so if you are interested in anything that happens in hollywood, you should make sure to stay tuned! + +and there you have it guys! we hope you enjoyed the video! if you did please consider leaving a like and telling us what you though in the comments! + +here are some links to some of our other videos that you might find interesting as well: +""forgive me"" justin bieber apologies to haily bieber (ig live video): https://www.youtube.com/watch?v=u-m_q7fs91i +emilia clarke reaction before replacing amber heard in aquaman 2! https://www.youtube.com/watch?v=pyxp9wxhuww +johnny depp officially rehired | back in a new pirates of the caribbean 6 movie? https://www.youtube.com/watch?v=utozmdfngvk +elon musk speaks against amber heard & defends johnny depp! +https://www.youtube.com/watch?v=woo2bftrrl4 + +so, if you are interested in anything related to hollywood, make sure to smash that subscribe button to see more of our content in the future! 🎬 https://bit.ly/3kzplqd + +#justiceforjohnny #johnnydepp #deppthanksfans #filmstreak",1362.0,41750.0,,,,,,39976.0,39.0,0.0,373.0,"""you saved me"" johnny depp thanks his supporters for defending him (video)",,,,,,,,,, +959,https://www.youtube.com/watch?v=LkYIXgrLU8A,0,0,{'The Amber Ruffin Show'},1,youtube,video,original video,"the amber ruffin show. streaming on peacock https://pck.tv/3poiao8 +reserve your spot in the live studio audience for the amber ruffin show at https://1iota.com/show/1210/the-amber-ruffin-show + +like most americans, amber ruffin was glued to the news this week watching that insane series of events unfold. a mob of trump-supporting terrorists stormed the u.s. capitol on wednesday, in an effort to overturn a fair and legal election and subvert democracy. it has honestly been a lot to take in, and amber’s personal feelings have ranged from rage to devastation to embarrassment. we’re gonna do our best to talk about it tonight, and to process it, and then we’re gonna push it aside and try to have some fun. sound good? + +show synopsis: amber showcases her signature smart-and-silly take on the news of the week, responding to it all with a charming, late-night mix of seriousness, nonsense and evening gowns.",5302.0,73179.0,,,,,,67608.0,39.0,0.0,230.0,terrorists storm the capitol with no consequences: week in review | the amber ruffin show,,,,,,,,,, +960,https://www.youtube.com/watch?v=1bJg204eb2A,0,0,{'What Trend'},1,youtube,video,original video,"celebrities who spoke up against amber heard lies + +on may 23, 2016, amber heard filed for divorce from johnny depp, citing physical abuse as one of the reasons she had to go through the divorce. and thus began a long chain of events that would eventually lead most of the world to conclude that amber heard was a pathological liar.",17.0,654.0,,,,,,633.0,1.0,0.0,3.0,celebrities who spoke up against amber heard lies,,,,,,,,,, +961,https://www.youtube.com/watch?v=igqhrXfkiEw,0,0,{'Doctor Soup'},1,youtube,video,original video,"we will be discussing the huge hypocrisy of amber heard, and how she stands for this ""woke"" and ""ant-discriminatory"" activism--yet does not practice it whatsoever. + +amber should never be an advocate for a single group, person etc. she abused her husband johnny depp and continues to abuse many people around her, by not being brought to justice.",239.0,3010.0,,,,,,2709.0,2.0,0.0,60.0,racist amber heard is a hypocrite! live!,,,,,,,,,, +962,https://www.youtube.com/watch?v=3Vywz8T4_M4,0,0,{'The Spotlight'},1,youtube,video,original video,"8 times johnny depp tried to warn us about amber heard... + +subscribe to the spotlight 👉 https://bit.ly/3txagy1 + +watch next: ▶️ + +https://www.youtube.com/watch?v=yvpybrarags + +https://www.youtube.com/watch?v=h6ag6p31kbo&t=37s + +https://www.youtube.com/watch?v=wadtlgsw2ls&t=185s + + +------------------------------------------------------------------------------------------------------------------------ + + +related videos:👇 + +https://www.youtube.com/watch?v=gshctsd8hng&t=117s + +https://www.youtube.com/watch?v=j1uxydayri4&t=39s + +https://www.youtube.com/watch?v=yz-ovteanw4 + +#8: the divorce in 2016 +the reasons she provided for her taking this decision involved her accusing depp of being an abuser, which was in fact quite shocking to his fans as well as the people who worked with depp, as this side of johnny was never witnessed by them. initially, everyone was siding with amber, but eventually, the truth about heards violent nature came out. at the time of the divorce between the two celebs, depp was hushed and his word meant nothing as opposed to ambers. when amber provided the court with such reasons, depp denied these accusations and even stated that all this was being done by amber in her best interests, and not his. + +#7: the lawsuit in 2019 +the messes the two of them were drowning in were further worsened by the onset of a lawsuit. and no, this time it wasn’t filed by amber, but in fact against her! amber heard expressed her feelings about johnny depp, using explicit content in an article published by the washington post, injuring depp’s reputation, which led to the beginning of the 50 million dollar suit against amber heard. + +#6: leaks of audio 2015 +the audio leaks seemed to be the turning point for depp’s ill fate as this was one of the most solid forms of proof that helped enable him to be proved as the innocent in the messy trial.what did the leaked audio messages contain? the conversations between the two were as toxic as their marriage. it involved a lot of content that went along the lines of them being involved in domestic violence, her being the main abuser. + +#5: severed fingertip +if amber truly was the one to have faced being physically harmed why was depp’s finger left severed? according to various sources, including johnny depp himself, amber heard injured depp’s finger due to a heated argument that broke out between the two of them, resulting in him having to rush to the emergency room to get it fixed. in an interview, she claims he was the one who would constantly hurl things at her, when in fact later on it was proved it was just quite the opposite that was happening behind closed doors. + +#4: depp's bruised face 2020 & amber's fake bruises +to what extent this woman went to prove her innocence is quite disgusting we must say. at one point, amber had exposed her scarring and bruising on social media to damage depp. on investigating further into amber’s bruises, they seemed to be fake as the next day she made an appearance with no trace of even a single scratch on her. + +#3: premiere of alice through the looking glass +depp did a fabulous job in the movie alice through the looking glass. his fans were quite enlightened with his presence on the day of its premiere, but the same cannot be said about johnny depp! unfortunately, we all assumed his speech to include his dark humor which he constantly brings out from time to time but indeed many believe it to be a cry for help. he mentioned being in pain, being tired, and wanting to go home. + + +#2: career 2016 onwards +it is quite a well-known fact that once someone is surrounded by constant negativity, this not only takes a toll on their mental health but also starts affecting their professional life too. depp met amber on the sets of the rum diary, and both were happily married then. depp fell into amber’s trap, both ending their marriages and marrying each other a few years later. depp was quite a huge hit in hollywood. everyone wanted to hire him. the array of films he was getting by the year was massive and all he was doing at every award function was hoarding awards. it is quite evident that following 2016, things for him took a turn downhill professionally. + +#1: mother +depp’s mother was quite well known for her difficult nature. apparently, it was said johnny was the only person who could tolerate her cruel nature. it was till her very end that he stood by her side and tended to all of her needs. if depp could respect such a woman till her last breath, why would he ever harm someone who he claimed to have loved? there is no answer to that question by anyone but stands as a self-explanatory form of evidence to prove depp was not the kind of man to hurt any woman, especially amber. clevver news amber heard aquaman 2 celebrity news johhny depp case amber heard audio emilia clarke aquaman 2 informoverload + +#johnnydepp #amberheard #johnnydeppcase #amberheardcase #piratesofthecaribbean #amberheardfired #johnnydeppfired #aquaman2 #emiliaclarke #jasonmomoa",92.0,2519.0,,,,,,2411.0,0.0,0.0,16.0,8 times johnny depp tried to warn us about amber heard!!,,,,,,,,,, +963,https://www.youtube.com/watch?v=buSAIbP7dnA,0,0,{'Crazed Culture'},1,youtube,video,original video,"johnny depp responds to amber heard's apology... (court case updates!!!) +all that has taken place between amber heard and johnny depp has painted a very dark and sad story for millions all over the especially, for the well loved actor, johnny depp. as time goes on people have hoped that there would be some light at the end of the tunnel, but it appears that the end is nowhere near and as each new event gets revealed the situation only appears to get worse and worse. throughout the majority of this scandal things have only gone badly for johnny depp, but could all these bad times finally be coming to an end, allow to break it down for you but first be sure to like the video and subscribe to the channel below. + +click here to enter the giveaway! +https://www.youtube.com/crazedculture?sub_confirmation=1 + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e + +#amberheard #johnnydepp #justiceforjohnnydepp",2080.0,85992.0,,,,,,83262.0,190.0,0.0,460.0,johnny depp responds to amber heard's apology... (court case updates!!!),,,,,,,,,, +964,https://www.youtube.com/watch?v=-oiY6WtFejA,0,0,{'Celeb Happened'},1,youtube,video,original video,"emilia clarke speaks out on being amber heard's replacement in aquaman 2 + +after johnny depp was fired from the fantastic beasts franchise back in november, fans across the world raised their voice for warner bros’ seemingly unfair decision. however, it now seems, according to a new rumor, that the studio has finally cleared its stance on allegations of domestic abuse by replacing amber heard with game of thrones alumnus emilia clarke for the role of mera in the upcoming aquaman 2. + +back in 2016, the tumultuous love-affair of johnny depp and amber heard took an ugly turn as heard filed a divorce case citing verbal and physical abuse. as the high-profile case attracted considerable attention, both parties went blazing out with evidence and witnesses. make sure to watch the whole video and see the full details about this casting! in addition, do us a favor and like the video and subscribe and turn on the notification bell. we’ll see you in the next video! + +#aquaman2 +#emiliaclarke +#amberheard + +related videos: + +emilia clarke speaks out on being amber heard's replacement in aquaman 2!!! +https://www.youtube.com/watch?v=1nli4ahi6v4 + +emilia clarke speaks out about replacing amber heard in aquaman 2!! +https://www.youtube.com/watch?v=h6ag6p31kbo + +emilia clarke's thoughts on being amber heard's replacement in aquaman 2 | flixet +https://www.youtube.com/watch?v=i7gfs45bcwa + +amber heard is officially replaced by emilia clarke in aquaman 2! +https://www.youtube.com/watch?v=1gphbmhdbeo + +amber heard officially gets replaced by emilia clarke in aquaman 2!!! +https://www.youtube.com/watch?v=k-okrp92nlq + +i do not take any ownership of the music displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes only.",46.0,2410.0,,,,,,2328.0,13.0,0.0,23.0,emilia clarke speaks out on being amber heard's replacement in aquaman 2,,,,,,,,,, +965,https://www.youtube.com/watch?v=0Su09ec8hvw,0,0,{'ComicBookCast2'},1,youtube,video,original video,"the cbc is an online news outlet & community for nerds of all types. our mission is to deliver content that helps you embrace marvel, dc comics, star wars & other genre films that we all love in a unique way and having a few good laughs in-between. we are dedicated to giving you honest opinions, analytical discussions, and various entertainment. + +become a member ▶▶ https://bit.ly/2zrtl3v +visit out our site at ▶▶ https://www.cbcyt.com + +subscribe now | https://www.youtube.com/comicbookcast2?sub_confirmation=1 + +connect with cbc: +facebook | https://www.facebook.com/thecbcyt +soundcloud | https://soundcloud.com/comicbookcast + +music: +royalty free music by http://audiomicro.com/royalty-free-music +sound effects by http://audiomicro.com/sound-effects + + +important: all images and/or video used is property of their rightful owners. if you would like direct the credit on something specific please contact us through our email and we will respond as soon as we can. + +many of our thumbnails, video images & art are from creators online + +artwork for thumbnails credit [all on instragram] +dgalexkovalenko @ https://www.instagram.com/dgalexkovalenko +cvialet_art @ https://www.instagram.com/cvialet_art +rafagrassetti @ https://www.instagram.com/rafagrassetti/ +britedit @ https://www.instagram.com/britedit/ +spdrmnkyxxiii @ https://www.instagram.com/spdrmnkyxxiii/ +adam_sean_arts @ https://www.instagram.com/adam_sean_arts/ +ultraraw26 @ https://www.instagram.com/ultraraw26/ +erathrim20 @ https://www.instagram.com/erathrim20/ +datrintiart @ https://www.instagram.com/datrintiart/ +lukaswerneck @ https://www.instagram.com/lukaswerneck/ +bosslogic @ https://www.instagram.com/bosslogic/ +psychboz @ https://www.instagram.com/psychboz/ +bobby_art @ https://www.instagram.com/bobby_art/ +marvefx @ https://www.instagram.com/marvefx/ +pabloruizzx @ https://www.instagram.com/pabloruizzx/ +apexform @ https://www.instagram.com/apexform +artoftimetravel @ https://www.instagram.com/artoftimetravel/ +saarukan.psd @ https://www.instagram.com/saarukan.psd +awedope.arts @ https://www.instagram.com/awedope.arts/ +venomhology @ https://www.instagram.com/venomhology/ +jackson_caspersz @ https://www.instagram.com/jackson_caspersz +mizuriau @ https://www.instagram.com/mizuriau/ +lodgiko @ https://www.instagram.com/lodgiko/ +valentinromeroart @ https://www.instagram.com/valentinromeroart +marischabecker @ https://www.instagram.com/marischabecker + +if we use you for thumbnails or in videos and did not list credit contact us and we will fix it as soon as possible, thank you (email please @ comicbookcast2@gmail.com) for credit, thank you!",300.0,7559.0,,,,,,7131.0,45.0,0.0,83.0,amber heard talks zack snyder's cut of justice league & ignores fan backlash,,,,,,,,,, +966,https://www.youtube.com/watch?v=llZFuH_PT-Q,0,0,{'eHacker'},1,youtube,video,original video,"amber heard and elon musk in mexico. did it happen? +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com + +want paid promo spots? send me a mail or dm on to the info. above! (starting as low as $5! note via: paypal) + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods + +for those interested in why i dislike and criticise disney star wars (link below): + +https://disneystarwarsisdumb.wordpress.com/",349.0,3778.0,,,,,,3328.0,4.0,0.0,97.0,amber heard and elon musk in mexico. did it happen?,,,,,,,,,, +967,https://www.youtube.com/watch?v=lAn081CY4Ac,0,0,{'Lost Beyond Pluto'},1,youtube,video,original video,"related videos + + +can amber get charged with perjury? https://youtu.be/6z2xx9n2b1c + + +amber fights to keep evidence out of court +part 1 https://youtu.be/96nbtgwoty0 +part 2 https://youtu.be/v4qoaaunlpy + + +uk appeals process https://youtu.be/vzq89nk9t-0 + + + +social media + + +patreon: https://www.patreon.com/lostbeyondpluto + + +instagram: https://www.instagram.com/lostbeyondpluto + + +twitter: https://twitter.com/lostbeyondpluto + +tumblr: https://lostbeyondpluto.tumblr.com/ + +soundcloud: https://soundcloud.com/lost-beyond-pluto + +music videos: + +blue eyes: https://www.youtube.com/watch?v=wm2-kyp18ww + +once a liar: https://youtu.be/bgwc09ptuhm + + + +stars intro theme by eva grace",5088.0,90316.0,,,,,,84276.0,44.0,0.0,908.0,johnny depp v amber heard: the legal consequences of the charity donation lie,,,,,,,,,, +968,https://www.youtube.com/watch?v=GHDg_qQD-2o,0,0,{'Qwazar77'},1,youtube,video,original video,so with new evidence now it looks really not good for someone and thats good a little bit of justice is great and very needed at this dark time. it would be amazing if she got what she deserved,46.0,668.0,,,,,,613.0,0.0,0.0,9.0,amber heard donation fraud accusations look really bad,,,,,,,,,, +969,https://www.youtube.com/watch?v=DZZy4JEQCjo,0,0,{'Trending Now'},1,youtube,video,original video,"despite some recent rumors that amber heard has been fired from aquaman 2, this now doesn’t appear to be the case. according to insider daniel richtman, talk that emilia clarke, who’s been linked to the role of mera before, is set to replace heard, has no basis in truth. and although this news may not be taken as positively by some people as it will be by others, it seems that heard’s immediate career prospects and personal life are going to be shadowed by these sorts of stories for a while yet. + +of course, in recent weeks, richtman has also reported that the actress is angry at warner bros. for bringing in another female lead, reducing her screen time in the aquaman sequel. however, she’s apparently set to get a pay rise for her part in the movie, too, so it’s hard to really know what’s going on behind the scenes on the film. meanwhile, campaigns to boycott it rumble on in the background, with the actress’ legal battles with ex-husband johnny depp also set to resume this year. + +mera will next be seen as a supporting figure in zack snyder’s justice league cut, and there’s even been talk that she could be upgraded to a more prominent presence in the league following the events of that picture. furthermore, heard can currently be found in the new version of the stand on cbs all access, wherein she appears as nadine cross, one of the more villainous figures on the show. + +given how the heard-depp controversy isn’t going away anytime soon, it’s hard not to see aquaman 2 receiving a lot of scrutiny as it gradually heads into production. the studio have continued to back the actress in the last year, though, and it seems that she’s still very much in contention for other major roles in hollywood, despite negative online campaigns. for now, then, we can probably rule out a mera recasting.",2.0,40.0,,,,,,38.0,0.0,0.0,0.0,amber heard reportedly fired from another movie role latest update,,,,,,,,,, +970,https://www.youtube.com/watch?v=4eJReVwFlkw,0,0,"{""Rob's Rules""}",1,youtube,video,original video,special guests come geek some and colonel kurtz join me to discuss the lapd body cam footage. amber’s heard gets busted for lying !!,240.0,2767.0,,,,,,2481.0,0.0,0.0,46.0,🔴 livestream amber heard exposed ! lapd body cam footage discussion !,,,,,,,,,, +971,https://www.youtube.com/watch?v=kdHyHjezr4I,0,0,{'Curious Edits'},1,youtube,video,original video,#shorts,13006.0,213886.0,,,,,,200598.0,209.0,0.0,73.0,amber heard | aquaman | new whatsapp status | full screen 🔥,,,,,,,,,, +972,https://www.youtube.com/watch?v=KEE01aan5tg,0,0,{'Revista Tú México'},1,youtube,video,original video,johnny depp y amber heard vivieron una relación tan tóxica que hasta el momento los sigue atormentando.,11.0,363.0,,,,,,349.0,2.0,0.0,1.0,"johnny depp y amber heard: matrimonio tóxico, violencia, maltrato y demandas",,,,,,,,,, +973,https://www.youtube.com/watch?v=ovDuksV6aOo,0,0,{'R.L Cantale'},1,youtube,video,original video,"nothing happened in may 21th but she went out with her friends on may 22th ,so lets say she may be covering the ""bruise"" with her hair still where is the lip and nose injury ??? there is no dark lipstick on her because no need to cover anything that did not happened !! jeeez + +#amberheard #johnnydeppcase #domesticviolenceoax #amberheardoax",3.0,63.0,,,,,,58.0,0.0,0.0,2.0,copy of amber heard and footage from the lapd at heard/ depp residence . nothing they found nothing!,,,,,,,,,, +974,https://www.youtube.com/watch?v=GFu1NXFvxNk,0,0,{'RK Outpost Live'},1,youtube,video,original video,"subscribe to my main channel! https://www.youtube.com/channel/ucp5gbsmw84nlljmlnqa09sq + +subscribe to my gaming channel! https://www.youtube.com/channel/uczpejpnj-0lzcatumuklkng + +become a channel member for cool perks and emotes! https://www.youtube.com/channel/ucp5gbsmw84nlljmlnqa09sq/join + +check out my twitch! https://www.twitch.tv/rkoutpost + +check out my merch store! https://teespring.com/stores/rk-outpost + +interested in becoming a patron? thank you so much, check out the details here! +https://www.patreon.com/rkoutpost + +a huge thank you to the following patrons!: +master level: +teresa martin - https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw +george bd lucas/storyman - https://www.youtube.com/channel/uchizgbjrr4oeos0vehttdzq +lostjedi22 - https://twitter.com/lostjedi22 +culture casino - https://www.youtube.com/channel/uc74ji7vceygwkifvs5tabna +biggles mets - https://www.twitch.tv/biggles_mets +open-airlock policy - https://www.youtube.com/channel/ucpnvybj_uzopq2njfbuoblq +joshua sam - +hate mongering verbal terrorist of the toxic brood - https://twitter.com/toxicbrood +knight level: +mexican ironman - https://twitter.com/mikecanulsj?s=20 +neo valentine - https://twitter.com/neovalentine +anne d larkin +trace xl - https://twitter.com/trace_xl +the geek blend - https://www.youtube.com/channel/ucd8zayrfetcwqpvy2snrxzg +daniel hymes - https://www.twitch.tv/lavenderrock253 +mike jackson - +darksidedroids - https://www.twitch.tv/darksidedroids +padawan level: +whatanasswhatabitchwhatacuck - https://www.youtube.com/channel/ucxgcrvfbtf2jaw-lnlwpleg +rosetta allen - https://www.youtube.com/channel/uctfyn9gqmmumqws3cgaqgsw +bionic bellybutton - https://twitter.com/bionicbbutton?s=20 +rc from the nyc - https://www.instagram.com/cruzfucius/?hl=en +riff magos - https://www.youtube.com/user/riffmagos +thicckaren - https://twitter.com/thicckaren2020 +afk bard - https://www.youtube.com/user/w07v3r3dux +r r- +mynerdyhome - https://www.youtube.com/user/stephcalzone +lethal lightning - https://www.youtube.com/channel/uchfjrszuj0jlkzflkbabitg +raging ryno - https://www.youtube.com/channel/ucha1ecx1e6m2mj9knu-s83g +optimus prune - +douglas almon - https://twitter.com/douglasalmon +ally-c +geeky pixie - https://www.youtube.com/channel/ucj0puofgyrdimx8sweleteg +minorconviction - instagram.com/minorconviction + +want to send me something? that's awesome! + +ryan kinel - rk outpost +po box 211376 +chula vista, ca 91921 + +get rk outpost tanks and tees here: https://www.teamshopsaga.com/rkoutpost + +come join my awesome community on discord: +https://discord.gg/nsedeqp + +for some awesome geek and nerd shaker cups and fitness accessories check out performa!: +http://www.performa.com?aff=103 +use code kinel15 for 15% off! + +check out and subscribe to these other channels that i'm a part of! + +geeks and gamers: +https://www.youtube.com/channel/ucmvvqiafsgwzrfplxiaig8g + +sports wars: +https://www.youtube.com/channel/ucgcw1ivvbzwugopnqsbussq + +gaming with geeks: +https://www.youtube.com/channel/ucsxv5aagfpkis-w0m_5rxjq + +check out my twitter: https://twitter.com/kinelryan +check out my instagram: https://www.instagram.com/ryan_kinel/ + +#amberheard #emiliaclarke #aquaman2",144.0,1509.0,,,,,,1328.0,1.0,0.0,36.0,"report says amber heard is out for aquaman 2, replaced by emilia clarke as mera!",,,,,,,,,, +975,https://www.youtube.com/watch?v=kdTKeqyrOFQ,0,0,{'Target Hacking'},1,youtube,video,original video,"latest science and technology video dekhne ke liye channel ko subscribe kijiye. + for more apdate like , subscribe , and share + thank you dosto",1506.0,24383.0,,,,,,22821.0,39.0,0.0,17.0,amber heard edit | creative images whatsapp status | #amberheard#mera#aquaman#shorts,,,,,,,,,, +976,https://www.youtube.com/watch?v=uZxSwrKXe-4,0,0,{'Stevie J Raw'},1,youtube,video,original video,"amber heard's friend rocky pennigton provided this witness statement against johnny depp in the uk trial stating over and again that amber heard told her what happened but she didn't see johnny depp actually do anything. + +johnny depp will have justice soon enough. + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join + +tubebuddy - https://www.tubebuddy.com/steviejreviews + +art of elysium donation page - https://www.pledge.to/the-art-of-elysium + +justice for johnny depp t-shirts (proceeds go to charity): +design 1 - https://t.co/uycndh9ebj?amp=1 +design 2 - https://t.co/hdmq0wicke?amp=1 +design 3 - https://t.co/lqmeoidmje?amp=1 +design 4 - https://t.co/lkteqqdxhg?amp=1 + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#justiceforjohnnydepp #johnnydepp #amberheard",353.0,3602.0,,,,,,3099.0,1.0,0.0,149.0,rocky pennington witness statement - johnny depp v amber heard,,,,,,,,,, +977,https://www.youtube.com/watch?v=MbQEuuA-xqQ,0,0,{'Grandmaster SupermanWarMac8894'},1,youtube,video,original video,"#news #johnnydepp # amberheard + +patreon +https://www.patreon.com/user/creators?u=27641110 + +enjoy the video peeps!!! 😎✌🌟",2.0,15.0,,,,,,12.0,0.0,0.0,1.0,johnny depp got justice! amber heard got fired???,,,,,,,,,, +978,https://www.youtube.com/watch?v=itLIyM99u2U,0,0,{'Celebrity Insider'},1,youtube,video,original video,"as the messy divorce of johnny depp and amber heard continues, it becomes clear who has had his back since the beginning. joe rogan now, after always standing behind johnny, speaks on johnny depp being fired from movies and defends him yet again. +quite often it seems like no one believed johnny to begin with, but joe always stood up for him, even though he received a huge amount of backlash for his actions. + +what do you think? why didn't more people stand up for johnny? + +leave a comment to let us know :) + +subscribe to our instagram to stay up to date on the run: +instagram: https://www.instagram.com/celebrity23insider/ + +subscribe to celebrity insider on youtube to get the newst stories about the famous and for the funniest, most exciting and bizarre facts about their past.",580.0,23890.0,,,,,,23179.0,28.0,0.0,103.0,amazing: joe rogan on johnny depp being fired from movies & defends him,,,,,,,,,, +979,https://www.youtube.com/watch?v=FOYAyE3XL58,0,0,{'Charlie Chats'},1,youtube,video,original video,"10 celebrities that tried to warn us about amber heard + +after amber heard accused ex-husband johnny depp of committing domestic violence during their marriage, multiple celebrities with ties to johnny depp have come forward in his defense. depp’s other ex-wife and mother of his two children, vanessa paradis, depp’s ex-fiancé winona ryder, and his former co-star penelope cruz have all testified in the actor’s defense. + +it should be noted that though all three women insist depp was never violent in their presence, the only ones for certain who know the intimate details of heard and depp’s marriage are depp and heard. and there are other celebrities who tried to warn us about amber heard. make sure to watch the whole video and see which celebrities have come forward to warn us about the actress. in addition, do us a favor and like the video and subscribe and turn on the notification bell. we’ll see you in the next video! + +#hollywood +#amberheard +#johnnydepp + +related videos: + +donald trump jr.'s tweet about chris cuomo is turning heads +https://www.youtube.com/watch?v=giq64zmc0jk + +strange things everyone just ignores about meghan markle +https://www.youtube.com/watch?v=-0-gjedrkbo + +the real ellen - the bitter truth behind the daytime icon +https://www.youtube.com/watch?v=_dvag5i55yc + +i do not take any ownership of the music displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes only.",27.0,725.0,,,,,,694.0,1.0,0.0,3.0,10 celebrities that tried to warn us about amber heard,,,,,,,,,, +980,https://www.youtube.com/watch?v=bkp98m33d98,0,0,{'Debi Dooms'},1,youtube,video,original video,"paralegal reacts to johnny depp vs amber heard + +i am a big fan of antphrodite, a pop culture psychic here on youtube. when i saw he made a video predicting the outcome of johnny depp vs. amber heard, i knew i had to react to it!! what are your thoughts on his reading and his predictions? + +@antphrodite original video (please go subscribe, i love his content!! he does lots of videos on serious topics, true crime etc): https://www.youtube.com/watch?v=ljokwuzo7go&t=817s + +email: debidooms@gmail.com +instagram: www.instagram.com/debidooms ; www.instagram.com/debidoesmakeup +tiktok: debidooms + +support my channel (and demonetized content) by buy buying me a coffee! *no pressure* : https://ko-fi.com/debidooms + +music by ryan little - greatest of ease - https://thmatc.co/?l=4d478279 + +links to youtubers covering this case! tell them i sent you: + + @lost beyond pluto (lawyer): https://www.youtube.com/channel/ucop24og-ylluvup4yrj2cja + @incredibly average (investigator): https://www.youtube.com/channel/ucg0c-n_mpyyoxyf4t3jmxnq + @spiritually empowered coaching (psychological analysis): https://www.youtube.com/channel/ucseatdlh3kfgl17dnarfw2g + @thatumbrellaguy : https://www.youtube.com/user/granularheaven + @nerdette's newsstand (sweetheart): https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw + @entertainment hacker : https://www.youtube.com/channel/uceooml4pfam9klphvavt2kq + @darth news (hilarious): https://www.youtube.com/channel/uclx_ir8_yvikdfvutdmaztw + @yellowflash 2 : https://www.youtube.com/channel/ucmrprnybjhgvby3rm0k4p5w + @popcorned planet : https://www.youtube.com/user/secretsaucetv + +disclaimer:: this video is all my opinion. please do not take anything i say as fact and come to your own conclusions based on the evidence presented. everything stated is alleged and my own opinion which is a direct result of my research on this case. + +key words: johnny depp vs. amberheard, johnny depp, amber heard, johnny depp vs. ngn, the sun newspaper, murdoch, elon musk, tesla, james franco, johnny depp amber heard defamation, amber heard tmz, johnny depp amber heard defamation case, johnny depp amber heard trial, incredibly average, lost beyond pluto, paralegal, justice for johnny depp, depphead + +#johnnydeppvsamberheard #johnnydepp #amberheard #johnnydeppvsngn #elonmusk #tesla #johnnydeppamberhearddefamation #incrediblyaverage #lostbeyondpluto #paralegal #justiceforjohnnydepp #thatumbrellaguy #nerdettesnewstand #darthnews #justiceforjohnnydepp #metoo #yellowflash #yellowflash2 #spirituallyempoweredcoaching #adamwaldman #libel #defamation #uklaw #uktrial #amberheardvsjohnnydepp",93.0,1467.0,,,,,,1264.0,3.0,0.0,107.0,paralegal reacts to psychic prediction of johnny depp vs. amber heard by @antphrodite,,,,,,,,,, +981,https://www.youtube.com/watch?v=G-_hCQijQGE,0,0,{'InformOverload'},1,youtube,video,original video,"meghan markle's sister predicts divorce, the weeknd boycotts grammys, a-rod back with jennifer lopez +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +samantha markle, megan markle's estranged half-sister says meghan and harry are headed for divorce, the weekend announces he will be boycotting the grammys amid after hours snub, and alex rodriguez says that he and jennifer lopez are still hanging out after news of breaking off their engagement hits the internet. + +00:00 - intro +00:20 - meghan markle's sister predicts divorce +01:28 - the weeknd boycotts grammys +02:52 - a-rod back with j-lo +03:54 - reading comments + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#meghanmarkle #princeharry #divorce #samanthamarkle #theweeknd #boycott #grammys #arod #jlo #jenniferlopez #prediction #breakup #engagement #meghanmarklesister #meghanmarklefamily #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 #celebritygossip #influencergossip #celebritytea #influencertea + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +johnny rogers: https://www.instagram.com/thejohnnyrogers/ + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +matthew holmgren: https://www.instagram.com/matthew.holmgren/ + + +📱instagram: https://www.instagram.com/informoverload +📱facebook: https://www.facebook.com/informoverload/ +📱twitter: https://twitter.com/informoverload +📱reddit: https://www.reddit.com/user/informoverloadreddit +✉️email | contact: informoverload@gmail.com",660.0,12789.0,,,,,,11999.0,34.0,0.0,96.0,"meghan markle's sister predicts divorce, the weeknd boycotts grammys, a-rod back with jennifer lopez",,,,,,,,,, +982,https://www.youtube.com/watch?v=pNm0n2G5LfM,0,0,{'Viral Vision'},1,youtube,video,original video,"amber heard contract officially cancelled !?!(latest update) +amber heard has been the focus of many debates over the last year or so, and no, not in a good way. in fact, she has been the focus of petitions and outcries to get her out of hollywood. and one of the biggest examples of this is via movements to get her removed from aquaman 2. while this may seem childish, it may be closer to happening than they think. we’ll break it all down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you go, everyone. a look at amber heard and how she might be soon to leave the role of mera in aquaman 2. what do you think warner bros is going to do in terms of aquaman 2? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",1383.0,37397.0,,,,,,35625.0,63.0,0.0,326.0,amber heard contract officially cancelled !?!(latest update),,,,,,,,,, +983,https://www.youtube.com/watch?v=y83jefF05Rc,0,0,{'Fire Amber Heard'},1,youtube,video,original video,at least i'm uploading i'm thinking of quiting,4.0,14.0,,,,,,10.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 41,,,,,,,,,, +984,https://www.youtube.com/watch?v=Dgn4Gz9YFr0,0,0,{'Elizabeth Gearhart'},1,youtube,video,original video,"amber dawn shopay, global angel, https://www.globalangel.com, purchase with a purpose. each purchase allows you to pay it forward to a charity on a local and a global level. + +with each purchase you make, 25% of the sale will go to a charity of your choice. +all products are made in the usa and 100% of your purchase is tax deductible. + +our story +compassion with a heart +amber dawn shopay established global angel in 2018 in order to fulfill her desire to give back. she was inspired while on a trip to mexico with her father, after meeting a group of young kids playing soccer in a dirt field. they told her their greatest wish was to have grass on which to play. + +amber couldn’t get the kids out of her mind and this set into motion a series of ideas about how to raise both money and awareness, on a local and global level. it was actually quite simple - every area of the world has a need…and produces a product. what if one could benefit the other? + +the happy result is global angel, a platform designed to offer high-quality goods that give back to the world, in just the way you choose. you pick the product; you pick the cause, because we’re more than just an online shopping destination. we’re a far-reaching, communal effort of compassion. + +how it works +show us your heart +the hardships of our world can be pretty overwhelming leaving many people, places, creatures and causes in desperate need of an angel - it’s often confusing knowing where to begin. + +global angel has streamlined the giving process by creating a platform allowing you to choose how you want to give back. we’ve assembled a thoughtfully curated and ever-growing list of charities from around the world, many of which you may recognize and some that you might be interested in learning more about. + +through the purchase of global angel products, we can effect change together leaving a positive and lasting impression in our wake. please join us in leaving a legacy that matters…one angel at a time. + +our mission +citizens of the world +global angel inc is a 501(c)3 private, non-profit organization that creates a platform and products that give people the power and inspiration to effect positive change globally. choose your product. choose your charity...every single time! +​ +save your invoice as every purchase is completely tax deductible! as kathy calvin said....“giving is not just about making a donation. it is about making a difference.” + +#globalangel #amberdawnshopay #nonprofitcharity #purchasewithapurpose #firesidedirectory #elizabethgearhart",1.0,10.0,,,,,,9.0,0.0,0.0,0.0,"amber dawn shopay, global angel, purchase with a purpose and give back to the world.",,,,,,,,,, +985,https://www.youtube.com/watch?v=quGE_VO9tow,0,0,{'Renin__A_Z'},1,youtube,video,original video,"#amberheard +#mera +#aquaman +#whatsappstatus +#fullscreen +#60fps +#azeditz +#reninaz #hd +#latest +#trending +#viral +#famous +#best +#edit +#4k +#1080p +#fullhd +#ultrahd +#uhd +#renin",257.0,5451.0,,,,,,5189.0,3.0,0.0,2.0,mera | amber heard | aquaman | az_editz | whatsapp status | fullscreen | 60fps | #shorts,,,,,,,,,, +986,https://www.youtube.com/watch?v=CYNJKoha2W0,0,0,{'AA Creations'},1,youtube,video,original video,#johnnydeppwithwife #whatsappstatus #captainjacksparrow,4813.0,219988.0,,,,,,215055.0,53.0,0.0,67.0,johnny depp cool entry | johnny depp and his ex-wife amber heard | johnny depp whatsapp status,,,,,,,,,, +987,https://www.youtube.com/watch?v=R_lk4xK_OPY,0,0,{'Fire Amber Heard'},1,youtube,video,original video,life advice - die,1.0,9.0,,,,,,7.0,1.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 33,,,,,,,,,, +988,https://www.youtube.com/watch?v=PI9oIvzsyFI,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",3254.0,42977.0,,,,,,39364.0,25.0,0.0,334.0,amber heard takes a massive hit as coverage is now allowed!,,,,,,,,,, +989,https://www.youtube.com/watch?v=BDz_Z9nlLZg,0,0,{'DHR2 Productions '},1,youtube,video,original video,"original video: https://m.youtube.com/watch?v=j_xof43vv8w&feature=youtu.be + +instagram: https://www.instagram.com/devindadudehughes6864 + +twitter: https://twitter.com/dhr2p?s=09 + +#johnnydepp #amberheard +amber heard's lawyers quit & expose her (interview) reaction!!! + +-~-~~-~~~-~~-~- +please watch: ""shazam 2 battle of the gods teaser trailer reaction!!!"" +https://www.youtube.com/watch?v=r28xtcboebs + +looking for to this movie gotta watch the first one tho before i watch this second one hit me up on instagram and twitter for promoting this trailer reaction. +-~-~~-~~~-~~-~-",110.0,2501.0,,,,,,2351.0,2.0,0.0,38.0,amber heard's lawyers quit & expose her (interview) reaction!!!,,,,,,,,,, +990,https://www.youtube.com/watch?v=dwLFizMJ440,0,0,{'Amber Heard'},1,youtube,video,original video,"been a minute since i did a live cover, anyways here is my cover of ""drivers license"" by olivia rodrigo, hope you enjoy! + +music +music by hoax - indian summer - https://thmatc.co/?l=f9b6322b +music by fiji blue - butterflies - https://thmatc.co/?l=4614bba0 +drivers license piano instrumental - https://www.youtube.com/watch?v=zbao4xdpdck&list=pluvptgpvlavzcnplbefkfabtq1jkeihfc&index=47 + +links +insta - amberhearrd, amberlaurenmusic, dispoamber +spotify - ambxrheard +tik tok - amberhearrd + +faq's +how old are you? 20 +what camera do you use? iphone 8 plus, canon g7x marx 2 or canon powershot elph 350 hs +what editing software do you use? imovie and garageband",15.0,262.0,,,,,,238.0,0.0,0.0,9.0,drivers license - olivia rodrigo (cover by amber heard),,,,,,,,,, +991,https://www.youtube.com/watch?v=GWUMe-u9zKE,0,0,{'Viral Vision'},1,youtube,video,original video,"""you saved me"" johnny depp thanks his supporters for defending him against amber heard (video) + + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",191932.0,4103449.0,,,,,,3890345.0,2904.0,0.0,18268.0,"""you saved me"" johnny depp thanks his supporters for defending him (video)",,,,,,,,,, +992,https://www.youtube.com/watch?v=Axcjv9YqYns,0,0,{'Crazed Culture'},1,youtube,video,original video,"disney officially rehires johnny depp after case with amber heard!!! +since the issue started it has been nothing, but full of drama and everyday the drama only seems to continue more and more. many are beyond excited to see that amber heard is truly being exposed for all of the lies she has been telling, but that is not all that has been brought to light when it comes to the situation with johnny depp. this case just goes to show that some will do anything for money and that really says something about amber heard's character. johnny depp was accused first of many things from amber heard as she went and shared with the washington post, but thankfully the judges in court have asked for more than just word of mouth. but allow us to break down everything else that has happened up until this point, but first be sure to like the video and as always subscribe to the channel! +click here to enter the giveaway! +https://www.youtube.com/crazedculture?sub_confirmation=1 + +and there you have, a more recent look into the scandal with amber heard and johnny depp. will johnny depp ever be able to have his regular career back? is amber heard going to be exposed for all that she has done? will this case ever really come to an end? let us know what you think in the comments down below! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e + +#johnnydepp #amberheard #justiceforjohnnydepp",4175.0,97609.0,,,,,,92390.0,160.0,0.0,884.0,disney officially rehires johnny depp after case with amber heard!!!,,,,,,,,,, +993,https://www.youtube.com/watch?v=bCyvmpiZnpg,0,0,{'I Stand By Johnny Depp'},1,youtube,video,original video,"there are a lot or rumors floating around the web, youtube and other social media that game of thrones star emilia clarke will replace amber heard as mera in aquaman 2. some of these stories are just click bait and don't really explain the situation. in this video i explain why, at this point, amber cannot be fired from the movie regardless of the public outcry and petitions to do so.",2.0,22.0,,,,,,20.0,0.0,0.0,0.0,why petitions to fire amber heard from aquaman 2 are useless right now.,,,,,,,,,, +994,https://www.youtube.com/watch?v=PzlaRG0KnSY,0,0,{'Debi Dooms'},1,youtube,video,original video,"paralegal reacts to amber heard + +i saw this video on amber heard's story and thought i would share.. because it is quite bizarre. this was supposed to go in another video but thought i would share! is this a sponsored post? is she trashing this energy drink because she doesn't like the people behind it? is she drunk? i notice she referred to one of them tasting like ""drug water""... how would she know what that tastes like lol. what are your thoughts + +email: debidooms@gmail.com +instagram: www.instagram.com/debidooms ; www.instagram.com/debidoesmakeup +tiktok: debidooms + +support my channel (and demonetized content) by buy buying me a coffee! *no pressure* : https://ko-fi.com/debidooms + +music by ryan little - greatest of ease - https://thmatc.co/?l=4d478279 + +links to youtubers covering this case! tell them i sent you: + + @lost beyond pluto (lawyer): https://www.youtube.com/channel/ucop24og-ylluvup4yrj2cja + @incredibly average (investigator): https://www.youtube.com/channel/ucg0c-n_mpyyoxyf4t3jmxnq + @spiritually empowered coaching (psychological analysis): https://www.youtube.com/channel/ucseatdlh3kfgl17dnarfw2g + @thatumbrellaguy : https://www.youtube.com/user/granularheaven + @nerdette's newsstand (sweetheart): https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw + @entertainment hacker : https://www.youtube.com/channel/uceooml4pfam9klphvavt2kq + @darth news (hilarious): https://www.youtube.com/channel/uclx_ir8_yvikdfvutdmaztw + @yellowflash 2 : https://www.youtube.com/channel/ucmrprnybjhgvby3rm0k4p5w + @popcorned planet : https://www.youtube.com/user/secretsaucetv + +disclaimer:: while i am a paralegal, i am not your paralegal and nothing contained within this video is to be considered legal advice, i will not accept any legal liability for any actions taken as a result of my videos. please do not try this at home. i do not make my videos to provide legal instruction, they are merely for entertainment purposes. this video is all my opinion and i am providing commentary. please do not take anything i say as fact and come to your own conclusions based on the evidence presented. everything stated is alleged. i encourage you to voice your opinion, even if it differs from mine, all i expect is that you be kind and refrain from harassing me or any of my subscribers. + +key words: johnny depp vs. amberheard, johnny depp, amber heard, johnny depp vs. ngn, the sun newspaper, murdoch, elon musk, tesla, james franco, johnny depp amber heard defamation, amber heard tmz, johnny depp amber heard defamation case, johnny depp amber heard trial, incredibly average, lost beyond pluto, paralegal, justice for johnny depp, depphead + +#johnnydeppvsamberheard #johnnydepp #amberheard #johnnydeppvsngn #elonmusk #tesla #johnnydeppamberhearddefamation #incrediblyaverage #lostbeyondpluto #paralegal #justiceforjohnnydepp #thatumbrellaguy #nerdettesnewstand #darthnews #justiceforjohnnydepp #metoo #yellowflash #yellowflash2 #spirituallyempoweredcoaching #adamwaldman #libel #defamation #uklaw #uktrial #amberheardvsjohnnydepp",154.0,3991.0,,,,,,3709.0,12.0,0.0,116.0,"amber heard drinks ""drug water?"" is she okay?!",,,,,,,,,, +995,https://www.youtube.com/watch?v=-t-1wygFTWs,0,0,{'Colonel Kurtz'},1,youtube,video,original video,"marilyn manson's former personal assistant speaks out ( marilyn manson innocent / allegations / evan rachel wood / amber heard / johnny depp ) + +i interview the lovely paula, a good friend and former personal assistant of marilyn manson. she's known him for almost two decades and tells us about him. she also gives her view of the abuse allegations against him (she's on his side) and discusses her experiences with johnny depp and amber heard. + +at approximately the 1:13:00 mark, she and i begin discussing johnny depp and amber heard. paula knew them and was present at the infamous 2015 thanksgiving dinner that was discussed in the uk trial. she has some interesting things to say about amber! :) + +paula's instagram: https://www.instagram.com/paulababy1/ + +for more videos on manson allegations, see my channel. i spend hours investigating and debunking the allegations in thoughtful documentaries. here's one: https://www.youtube.com/watch?v=rymnw3rnqha&t + +if you appreciated this interview, please tip/donate. every little bit--even a dollar--is so appreciated and you'll get a thank you email from me and exclusive content that i send to my patreon and paypal donors. for example, this interview aired a day early on patreon, and i'm putting out two exclusive videos in the next two weeks. + +(paypal membership not required to tip there--just need a credit card.) + +tip jar: https://www.paypal.com/donate?hosted_button_id=z65d3ull278sw +patreon: https://www.patreon.com/colonelkurtz?fan_landing=true +bitcoin wallet: 3mdstdvxdhc1vgzijqcounxk7afxttg9ar",4663.0,140581.0,,,,,,132642.0,625.0,0.0,2651.0,marilyn manson's former personal assistant exclusive interview (we talk johnny depp and amber too),,,,,,,,,, +996,https://www.youtube.com/watch?v=FJfsZWATvh0,0,0,{'Flixet'},1,youtube,video,original video,"in this video, we shared how amber heard kind of destroyed johnny depp's career. + +subscribe for more : http://bit.ly/32rc7vi +_______________________________________________ + +now that johnny depp has lost a british libel case when a judge declared the tabloid label ""wife beatr"" was mostly true, what happens to his heretofore boffo hollywood career? + +music in this video : + +track: odessa — liqwyd & scandinavianz +music provided by audio library plus +watch: https://youtu.be/jny-dp3lgcg",29.0,514.0,,,,,,465.0,3.0,0.0,17.0,this is how amber heard ruined johnny depp's career | flixet,,,,,,,,,, +997,https://www.youtube.com/watch?v=yW4n-_5knbI,0,0,{'John Campea'},1,youtube,video,original video,"watch john's new documentary, ""movie trailers: a love story"" available now worldwide at http://www.vimeo.com/ondemand/movietrailers and also available in the us and uk on amazon video. + +watch the full episode this clip is from here: +https://youtu.be/0ddmftm_u3k + +support or submit your question for the current or next show 24/7 here: +https://streamelements.com/movieblogtv/tip + +viewer question: benji m - hello john and rob. first of all john, thank you for all the wandavision coverage, my wife and i are obsessed. anyway, i know you debunked the amber heard getting fired rumor based on that forbes article, but i keep seeing more and more sites reporting it. is it possible she was actually fired? what do you think? + +leave a question when you tip at https://streamelements.com/movieblogt... and it will be answered on the show, or the next show we do. + +support john on patreon! http://www.patreon.com/johncampea + + +john’s gear links + +main cameras +sony a6400 - https://amzn.to/2vsmmyx +sony a6600 - https://amzn.to/3bbfivl +canon xc15 - https://amzn.to/3abgzy8 + +mic pre-amps +cloudlifter - https://amzn.to/3ckgvra + +good cheaper cameras john uses +canon vixia r800 - https://amzn.to/2yfa8zi +logitech c920 webcam - https://amzn.to/3eiul8m + +main microphones +rode procaster - https://amzn.to/3cum1at + +good cheaper mics john uses sometimes +audio-technica atr2100x (usb and xlr) - https://amzn.to/34fsiid +blue yeti (usb) - https://amzn.to/2xyvzb8 + +lapel mic +fifine (usb) - https://amzn.to/2vvzocw + +shotgun mics +rode videomic go (small on camera mic) - https://amzn.to/34a3yx0 +rode ntg2 (main studio mic) - https://amzn.to/2rekh6d +sennheiser mke 600 (main studio mic) - https://amzn.to/3eo5boy + +soundboard/mixer +rodecaster pro (main) (usb) - https://amzn.to/2rzozfc +behringer xenyx 1204usb (backup board) - https://amzn.to/2yf8vzn + +streaming software +wirecast pro +wirecast control surface - https://amzn.to/34dzjrg + +lights +nanlite lumipad 25 (main studio lights) - https://amzn.to/2xaevxd +neewer ring light (secondary lights) - https://amzn.to/2rdroap +falconeyes f7 pocketlite (background color lights) - https://amzn.to/3embgnt +selfie ring - (guest light) - https://amzn.to/3a6esoz + +show notes computer +ipad pro 2020 - https://amzn.to/34alhca + + +submit your topic or question for the john campea show here: +http://www.thejohncampeashow.com/contact + +follow john on instagram: +http://www.instagram.com/johncampea",498.0,17987.0,,,,,,17259.0,34.0,0.0,196.0,the hollywood reporter debunks amber heard firing rumor… again,,,,,,,,,, +998,https://www.youtube.com/watch?v=yeTS2Fx6nPg,0,0,"{""MTV's Teen Mom""}",1,youtube,video,original video,"amber portwood has faced a lot on teen mom — here’s a look back at where things started, how they evolved, and where they stand now. + +#teenmomog #teenmom2 #mtv + +subscribe to teen mom: http://bit.ly/2oem0oo + +a decade after it all began, catelynn, maci, amber, and cheyenne of teen mom og continue to share their families' triumphs and struggles with the world. on teen mom 2, jade joins kailyn, leah, briana and chelsea as the moms navigate parenting, family dynamics, their careers and their love lives. teen mom: young + pregnant chronicles the lives of ashley, brianna and kayla, along with two new moms kiaya and rachel. their stories continue tuesdays on mtv! + +more from teen mom: +like teen mom on facebook: http://bit.ly/2ypp8er +follow teen mom on twitter: http://bit.ly/2m8mqei +teen mom instagram: http://bit.ly/2kmfvfq + +#mtv is your destination for the hit series wno, vma, jersey shore, the challenge, how far is tattoo far?, teen mom and much more!",3002.0,387427.0,,,,,,383338.0,221.0,0.0,866.0,the evolution of amber | teen mom og,,,,,,,,,, +999,https://www.youtube.com/watch?v=emRPlqnYCHI,0,0,{'Viral Vision'},1,youtube,video,original video,"amber heard threatens johnny depp's son on social media!!!? +now, a new social media message indicates that she was willing to depp’s son! we’ll break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, a look at the newest twist in the case. what do you think of this new development? if this is a real thing, do you think she’s gone and threatened others in johnny’s family personally? what are your thoughts on amber heard after hearing this? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",3061.0,86628.0,,,,,,82476.0,239.0,0.0,852.0,amber heard threatens johnny depp's son on social media!!!?,,,,,,,,,, +1000,https://www.youtube.com/watch?v=OSGKKkhGa8Y,0,0,{'Clownfish TV'},1,youtube,video,original video,"has amber heard been caught lying about johnny depp again? new police body cam footage shows that depp and heard's apartment was not destroyed when the police arrived as heard claimed. amber heard is seemingly not fired from aquaman 2 either, as she posted about how filming will start soon on instagram. hmmm. + +🤡🐠📺 clownfish tv channels - +💬 clownfish tv (geek commentary) - https://www.youtube.com/c/clownfishtv +🇪🇸 clownfish tv en español (spanish dub) - https://www.youtube.com/channel/uchlb7rolzvap0hvcw3ldgfq +🎮 clownfish tv gaming (video games) - https://www.youtube.com/channel/ucirglgyil5uevdeltx33ehw +🎨 clownfish animation (art and animation) - http://www.youtube.com/c/clownfishanimation + +follow clownfish tv on social media - +► twitter - http://twitter.com/realclownfishtv +► facebook - http://facebook.com/clownfishtv +► instagram - http://instagram.com/realclownfishtv +► d-rezzed - http://d-rezzed.clownfishtv.com + +clownfish tv covers pop culture news on movies, anime, cartoons, comic books, gaming, tv and more. hosted by kneon and geeky sparkles. + +business inquiries can be sent to shoutout [at] clownfishtv.com + +some music and sound fx courtesy of epidemic sound - http://www.epidemicsound.com/ + +#amberheard #aquaman2 #johnnydepp #mera #dccomics #dceu #johnnydepp #justiceforjohnnydepp",2801.0,38822.0,,,,,,35455.0,15.0,0.0,551.0,amber heard caught lying again? heard not fired from aquaman 2?!,,,,,,,,,, +1001,https://www.youtube.com/watch?v=pLYxM0ztStg,0,0,{'Film Streak'},1,youtube,video,original video,"""i lied"" amber heard apologies to johnny depp (ig live video) +the case between amber heard and johnny depp is one that people are following all over the world. the anticipation builds day by day while fans of the actors wait for the official court hearing. amber heard is starting to create a pretty bad name for herself, but now might be the time for an offical apology to johnny depp. a lot of other celebrities have been dragged into this mess - one is the tesla billionaire, elon musk (for some interesting reasons). and it does not seem like elon musk is quite done in this case, as depp is not done dealing with him. + +if you enjoyed the video make sure to like on the video and consider subscribing! + +check out these videos for more insights in the johnny depp and amber heard case: +johnny depp officially rehired | back in a new pirates of the caribbean 6 movie? https://www.youtube.com/watch?v=utozmdfngvk +emilia clarke reaction before replacing amber heard in aquaman 2! https://www.youtube.com/watch?v=pyxp9wxhuww + +#amberheardlied #johnnydepp #justiceforjohnny #amberheardapology #filmstreak",2385.0,328377.0,,,,,,321607.0,3906.0,0.0,479.0,"""i lied"" amber heard apologies to johnny depp (ig live video)",,,,,,,,,, +1002,https://www.youtube.com/watch?v=lX6caRyWx_8,0,0,{'eHacker'},1,youtube,video,original video,"amber heard and stephen king's stand bombed rotten tomatoes! live! discuss! +quick live! +@enterhacker on twitter",368.0,3509.0,,,,,,3060.0,5.0,0.0,76.0,amber heard and stephen king's stand bombed rotten tomatoes! live! discuss!,,,,,,,,,, +1003,https://www.youtube.com/watch?v=9u_qim224oI,0,0,{'Doctor Soup'},1,youtube,video,original video,"amber heard is after disney and the lapd! i am so excited to have my special guests stevie j raw and sec on! heard continues to spew ridiculous allegations and subpoeanas! + +links: +twitter: https://twitter.com/home +instagram: https://www.instagram.com/shelbyyoutu... +virtual tip jar: https://www.paypal.com/donate/?hosted... + +stevie j raw: https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w + +sec:https://www.youtube.com/channel/ucseatdlh3kfgl17dnarfw2g",367.0,3882.0,,,,,,3449.0,3.0,0.0,63.0,desperate amber heard attacks disney and lapd!,,,,,,,,,, +1004,https://www.youtube.com/watch?v=gW1V_05b4us,0,0,{'Robart Lio Aquaman Bots'},1,youtube,video,original video,"social bots astroturfing. how bots incite hate. sign petition bot on remove amber heard from aquaman 2. signs 1,200x3+780, 2vpses = over 4,000 in 6 hours. get past recaptcha & ips. use other bots for sharing and writing to fake a movement. not blocked with ""hatewomen + hatelgbt"" in names. +uses alabama, usa and australia ips in video. +*pac-man included since people seeing bots and reacting is like pac-man endlessly eating! +case study is sad as it never stops. + +hate groups are usually poor... +causes an investigation to know more. + +how to make social bots for astroturfing and fake news: + +creating vpses (virtual machines) can be done on physical computer. +proxies can be created. +$100 for 1 million ipv6 autoscript +as time goes on, signing consistent. +amber heard is political. +learn astroturfing in real-time with no one ever stopping it, ever, and no reports! + +""fake grassroots activity on social media – also known as “astroturfing” – has become a fact of political life around the globe. "" + +change.org never adds recaptcha. +change thinks sharing means that caused. proxies ips. bots can follow links. +$2.99 to solve recaptcha for 1000 requests at 2captcha. +takes 30 seconds longer with to sign than 4 seconds. +could have been 5-10 times less signatures if change.org had added if followed news reports on bots. some targets like her never get protection. + +petition has been reported 20-30 times over years. +change.org likely will never add recaptcha, so cannot even test speed change. +it can sign forever. +even with comments closed from hate, they never put on recaptcha. +so, time to expose it for a warning if you're a target of hate campaigns. +fyi bots are called agents + +shows postings on reddit and account creation there by 2captcha. +accounts can be old. +best to create own emails and use sms-verification. +people start to follow when they see numbers. +the more time goes on, the more proxies and accounts they can create. +data & hardware, auto-script based. + +""astroturfing, twitter bots, amplification: inside the online influence industry"": https://tech.newstatesman.com/feature/astroturfing-twitter-bots-amplification-inside-online-influence-industry + +""polish astroturfers attack… astroturfing +coordinated twitter campaign accuses others of coordination"" +(i'm not a bot, they create bots aka don't have any support from any individuals). +https://medium.com/dfrlab/polish-astroturfers-attack-astroturfing-743cf602200 + +create proxies in azure: https://stackoverflow.com/questions/55719256/create-proxies-in-azure +""create proxies using azure for a bot that i have developed."" +""i create few virtual vm's (two linux and two windows based)."" + +anti-women, violence against women, and racism on reddit: +controversial reddit communities +-- (if we can stop wall street, with trading forex bots, then we can stop warner bros): https://en.wikipedia.org/wiki/controversial_reddit_communities +""the huffington post interpreted the report as saying the subreddit was a hate group in 2012:"" https://www.huffingtonpost.ca/kyle-bachan/mens-right-movement_b_1341913.html + +digital forensic research lab by the atlantic council: https://medium.com/dfrlab +https://www.atlanticcouncil.org/programs/digital-forensic-research-lab + +use a real analyst: dfrlabs + +every hate group has a benefactor. the easiest way for hate groups to get attention is online today! + +""the overloader, the trendsetter, and the auto troll: + +the overloader: this is a bot that literally floods an online conversation with its comments. it posts the same statements over and over again, causing other posts to get pushed out of sight. the overloader is only really effective if it works with other bots. +when a botnet overloads a post with likes and comments, human users quickly lose control of the discussion. this makes it then impossible to exchange content this way. + +the trendsetter: trendsetters also work best in teams: if a large number of social bots seize a hashtag together, they can easily spread posts relating to the topic of the hashtag. if the topic ends up trending on twitter or facebook, it might be picked up by the press. + +this way, the trendsetter bot distorts the actual relevance of the chosen topic area: they ensure that marginal phenomena act like groundbreaking trends, or small groups like large social movements. + +the auto troll: it tries to distract users who express themselves on a certain topic and tries to involve them in a conversation. it usually does this with contradictory statements, which causes the user to retaliate. + +this distracts the user from the original conversation, and the new conversation becomes polemic and heated. with this method, bots can easily prevent users from exchanging content."" +https://www.ionos.com/digitalguide/online-marketing/social-media/social-bots + + +for educational, self-defense, and consumer warning purposes! + +#bots #aquaman #politics #coding #python #amberheard #julianassange #donaldtrump #selfdefense #warnerbros #movie #jasonmamoa",8.0,205.0,,,,,,184.0,7.0,0.0,6.0,"bots sign petitions & incite hate - amber heard, aquaman, change.org petition bots, warner bros",,,,,,,,,, +1005,https://www.youtube.com/watch?v=o7UJ_-Hknaw,0,0,{'What Trend'},1,youtube,video,original video,"amber heard goes to jail for 10 years for johnny depp accusations?! + +are you one of those who fantasize about the luxurious and prosperous life of celebrities? well, you need to think twice because that's not the case for all famous stars. moreover, some celebrities like to keep their personal life private while others have to face scandals and rumors every day. + +#amberheard #johnnydepp #jail",13.0,382.0,,,,,,364.0,0.0,0.0,5.0,amber heard goes to jail for 10 years for johnny depp accusations?!,,,,,,,,,, +1006,https://www.youtube.com/watch?v=aB7HS_L2AxY,0,0,{'K K Beats'},1,youtube,video,original video,amber heard beautiful 😍 entry // aquaman // status video mass entry-level,7.0,174.0,,,,,,167.0,0.0,0.0,0.0,amber heard beautiful 😍 entry // aquaman // status video mass entry-level,,,,,,,,,, +1007,https://www.youtube.com/watch?v=pk4FCnbehCM,0,0,{'Viral Vision'},1,youtube,video,original video,"amber heard faces 10 years in prison for pocketing charity donations from johnny depp +one of the ongoing things about the case between johnny depp and amber heard is the fact that the two are calling out everything the two have done in the far past or recent past. nothing is off the table and everything regards to trying to win the case against one another. amber heard has been going after johnny’s antics in movies and now, johnny is pulling out something from her past and using it big-time against her. we’ll break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone! a look at the donation issue that amber heard had and johnny depp called out. as well as other elements of the case. what do you personally think this will do to the case between depp and heard? or do you think it won’t do anything at all? what do you think these two will try to do to each other next in order to gain an upper hand? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",33541.0,832467.0,,,,,,792306.0,1069.0,0.0,5551.0,amber heard faces 10 years in prison for pocketing charity donations from johnny depp,,,,,,,,,, +1008,https://www.youtube.com/watch?v=Ut40yEFetK8,0,0,{'Viral Vision'},1,youtube,video,original video,"10 celebrities who defended johnny depp against amber heard +the drama between johnny depp and amber heard has been ongoing for years now! but as of recently, it’s been getting very very intense and some celebrities have had a lot to say about it! allow me to break it down for you. but first be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, a look at the various celebrities who have gone on to weigh in on the johnny depp/amber heard situation in one form or another. can you believe who has gone on and said various things about these two? do you think that more celebs will weigh in before this is all over? whose side do you think will come out on top? or, do you think that this is a situation in which “no one wins”? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",4571.0,122220.0,,,,,,116848.0,89.0,0.0,712.0,10 celebrities who defended johnny depp against amber heard,,,,,,,,,, +1009,https://www.youtube.com/watch?v=I9_l6pPpXvU,0,0,{'Stevie J Raw'},1,youtube,video,original video,"the aclu helped amber heard, a self confessed abu$er but did amber heard actually donate? +was it elon musk that donated on her behalf? + +chla donation page - https://www.justgiving.com/fundraising/justiceforjohnnydepp + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join +art of elysium donation page - https://www.pledge.to/the-art-of-elysium + +justice for johnny depp t-shirts (proceeds go to charity): +design 1 - https://t.co/uycndh9ebj?amp=1 +design 2 - https://t.co/hdmq0wicke?amp=1 +design 3 - https://t.co/lqmeoidmje?amp=1 +design 4 - https://t.co/lkteqqdxhg?amp=1 + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#justiceforjohnnydepp #amberheard #aclu",320.0,3242.0,,,,,,2886.0,3.0,0.0,33.0,aclu helped amber the abu$er! did amber heard donate?,,,,,,,,,, +1010,https://www.youtube.com/watch?v=uZ74CssYG-Q,0,0,{'Catadora de contenido'},1,youtube,video,original video,"ayúdenme y compartan los videos para llegar a mas personas +#amberheard +#acuaman2 +#despido +gracias por los sub muchachos + + !! vamos por esos 200k suscribance y activen la campanilla + +💪🏼 🏆 mis redes sociales 🏆 + + ❤ instagram personal : https://www.instagram.com/acevedo_suarez?r=nametag + 👥 discord: https://discord.gg/nnp5hqyy + ----------------------------------------------------------------------------- +👕 correo de contacto / negocios: negocioscompumania@gmail.com 🤑 + +donaciones al creador : https://www.paypal.me/juliethpaolaacevedo + -----------------------------------------------------------------------------",5.0,185.0,,,,,,173.0,2.0,0.0,5.0,amber heard despedida de aquaman 2 (verdad o fake) todo lo que debes saber,,,,,,,,,, +1011,https://www.youtube.com/watch?v=WlCalnytpTw,0,0,{'Best Films'},1,youtube,video,original video,"""zack snyder's justice league"" +production companies: atlas entertainment, cruel & unusual films, dc comics, dc entertainment, dune entertainment, lensbern productions, warner bros. + +warnermedia© +#zacksnydersjusticeleague​​ +#dceu​​​ +#snydercut​​​ +#restorethesnyderverse​​​ +#istandwithzacksnyder​​​ +#zacksnyder​​​ +#thesnydercut",41.0,2438.0,,,,,,2350.0,33.0,0.0,14.0,mera (amber heard) in zack snyder’s justice league,,,,,,,,,, +1012,https://www.youtube.com/watch?v=mrKm6WQeIlY,0,0,{'HERELUXLIFE'},1,youtube,video,original video,"amber heard reaction to hollywood officially cancelling her! +when amber heard admitted that she was a victim of abuse from her marriage with her ex-husband actor johnny depp his career took a u-turn from success and fame. even though there was no evidence, the media chose to believe heard, and the most prominent film studios followed suit. these accusations resulted in johnny depp losing some of his most notable roles. you wouldn’t think how hollywood people are now treating the two of their most incredible artists! +the accusations first rose in 2016, when the #metoo and #believeallwomen movements were fresh on the hollywood press and film producers' minds. when amber heard came forth with a bruise and accused her, then, husband johnny depp of physically abusing her, the hollywood press and film industry took her side without questioning it. + +if you enjoyed the video, make sure to leave a like and tell us what you thought in the comments! + +here are some of our videos that you might also like: +johnny depp is broke after amber heard controversy! https://www.youtube.com/watch?v=xsu3nomjhb4 + +want more? then check out these videos from similar creators: +amber heard contract officially cancelled !?!(latest update): https://www.youtube.com/watch?v=pnm0n2g5lfm +jason momoa speaks on amber heard being replaced from aquaman 2!? https://www.youtube.com/watch?v=shobyc9vqxm + +thanks for watching! consider subscribing if you want more similar content in the future! + +#amberheard #amberheadcancelled #justiceforjohnny #hereluxlife",20.0,409.0,,,,,,383.0,0.0,0.0,6.0,amber heard reaction to hollywood officially cancelling her!,,,,,,,,,, +1013,https://www.youtube.com/watch?v=7VwtikRLYSM,0,0,{'Cindy Briden'},1,youtube,video,original video,official court documents state that amber heard said that johnny depp headbutted her and broke her nose. here is the proof of whether that is true or not.,9.0,121.0,,,,,,105.0,1.0,0.0,6.0,bruises amber heard sustained by johnny depp headbutting her!!!!!,,,,,,,,,, +1014,https://www.youtube.com/watch?v=tyLdpl7QY9s,0,0,{'Doctor Soup'},1,youtube,video,original video,#justiceforjohnnydepp #shelbysoup,327.0,2367.0,,,,,,1977.0,7.0,0.0,56.0,ridiculous article backfires onto amber heard; lies exposed!,,,,,,,,,, +1015,https://www.youtube.com/watch?v=2er6IKWT_7o,0,0,{'Flixet'},1,youtube,video,original video,"in today’s video, we are going to share jason momoa’s thought on amber heard and johnny depp abuse controversy. + +subscribe for more : http://bit.ly/32rc7vi +_______________________________________________ + +the me too is a social movement which got which was first used in 2006. it is particularly for all the people who have faced sexual harassment and sexual abuse. many celebrities and common people claimed to have been harassed and abused. + +music in this video : + +track: odessa — liqwyd & scandinavianz +music provided by audio library plus +watch: https://youtu.be/jny-dp3lgcg",129.0,8508.0,,,,,,8166.0,150.0,0.0,63.0,jason momoa's thought on amber heard and johnny depp abuse controversy | flixet,,,,,,,,,, +1016,https://www.youtube.com/watch?v=_YetT1JEvV4,0,0,{'Mannix'},1,youtube,video,original video,"amber heard loses against johnny depp in another twist in this court case of the century. + + + + + new video on second channel: https://bit.ly/mannixplus + +follow me on twitter @sirmannix",2174.0,29018.0,,,,,,26505.0,53.0,0.0,286.0,instant regret! amber heard gets destroyed! huge win for johnny depp!,,,,,,,,,, +1017,https://www.youtube.com/watch?v=pSUfdKKZOb0,0,0,{'Come Geek Some'},1,youtube,video,original video,"wb sabotaging zack snyder? saying he supports heard? + +over the past 4 years, zack snyder has gone through a lot of turmoil. after fans pleaded and petitioned worldwide to get the snyder cut of justice league, hbo max did it. they funded him and its ready to go. + +warner bros has tried to sabotage zack snyder in the media and online through ""scoopers"" since he left justice league and supported the fans. + +now, what better way to get him more heat and hate, than to say ""he supports heard and told us we should keep her"". lets look into it. + +join this channel to get access to perks: +https://www.youtube.com/channel/uc4ltvxoxgzobqqduv9ixowg/join + +current channel members +jodie galloway +lizz gordon +ghetto tv +scandi on a mission +agnes maccallum +flying without fear +ann-christin mortensen +caroline +tammytalksabout +aleksandra jarosz +lena stensgaard +tina flowers +dawn curry +truebliu nineleven +haley angie +loralie dee +ann brown +horae of peace +jasmine t. redfeather +amanda grout +emma p +nicole turner +enceladuswaters +dísa maria helgudóttir +georgina campbell +marianne erni +irene maiden +zara zohl +laura uk +mary scott +megan o'shea +johnny's girl +claire flavin-jones +lynn bain +jane ruddell +donald dolan +mary turpel +ahyoka ama +sally pascoe +shelley tennant +sunshine +ali bali +penguin 322 +jane durante +sabine möller +videnthecoldone +leah veneau +hanne lærke sommer +morning tea +juanita schutte +jennifer willis +lisa lambert +susan redden +cat meissner +broly the mighty +humble bee +sarah wells +christine b-r +zombqueeen +tammy lockley +michieee +stephanie davis +bonnieb +janette tammaro +wendy postma +maureen kinross +deborah melendy +roamer mgtow +madamebebo +claire jones +mary scott +adriana adams +sarah kat +patti_c +steve kass +john le +kimmhy depp +night train blues +harbenja +l c +gelth walker +laura uk +judith hodgson +lifeofsarcasm +clairmbear +moxxie moon +anne holyday +k. kae-linn allison +megan o'shea +sylvan + +hello and welcome to come geek some! for all things geek, like and subscribe to the channel! + +please ignore or flag spam, negative, or hateful comments. we're here to have a good time. thanks everyone, and enjoy :] + +if you would like to support the channel and help us grow! +donations: https://streamlabs.com/comegeeksome + +i'm an avid adobe premiere pro user and have been for quite some time! i would recommend the software to anyone (if they have the spare money a month) + +ps4 player with pc gameplay now and again. still not used to pc gaming! + +interact with us on twitter! https://twitter.com/comegeeksome1 +twitch: https://www.twitch.tv/geeksomegaming + +#zacksnyder #amberheard #justiceleague",244.0,2194.0,,,,,,1925.0,1.0,0.0,24.0,wb sabotaging zack snyder? saying he supports heard?,,,,,,,,,, +1018,https://www.youtube.com/watch?v=IXzzBvJZTaI,0,0,{'eHacker'},1,youtube,video,original video,"stephen king praises amber heard on twitter and gets huge backlash! fans lost! +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com + +want paid promo spots? send me a mail or dm on to the info. above! (starting as low as $5! note via: paypal) + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods + +for those interested in why i dislike and criticise disney star wars (link below): + +https://disneystarwarsisdumb.wordpress.com/",840.0,10515.0,,,,,,9276.0,19.0,0.0,380.0,stephen king praises amber heard on twitter and gets huge backlash! fans lost!,,,,,,,,,, +1019,https://www.youtube.com/watch?v=f1Gu4oQ0_w4,0,0,{'The Amber Ruffin Show'},1,youtube,video,original video,"the amber ruffin show. streaming on peacock https://pck.tv/3poiao8 +reserve your spot in the live studio audience for the amber ruffin show at https://1iota.com/show/1210/the-amber-ruffin-show + +last sunday, oprah interviewed meghan markle and prince harry about their experience stepping back from the royal family. and a lot of the interview was about the pain meghan has suffered at the hands of the british press. they are truly evil to her. that whole country talks about meghan like she stole their man, which, uhh, we guess she did. now, we look at meghan markle, and we see a nice lady in well-tailored clothes. but when the press writes about that same woman, all of a sudden, she’s “difficult,” “not appropriate,” “unsuitable as a wife,” and favorite, “uppity.” wonder why they chose that word… + +show synopsis: amber showcases her signature smart-and-silly take on the news of the week, responding to it all with a charming, late-night mix of seriousness, nonsense, and evening gowns. + +#peacocktv #theamberruffinshow #meghanmarkle",16709.0,244712.0,,,,,,225641.0,1075.0,0.0,1287.0,calling meghan markle “uppity” is just another dog whistle | the amber ruffin show,,,,,,,,,, +1020,https://www.youtube.com/watch?v=0aG_Doj-_Ek,0,0,{'Trinity University'},1,youtube,video,original video,"ashley blaine featherson is an actress, singer, and producer who currently stars in the critically acclaimed netflix original series, dear white people. a force of talent on screen, featherson brings that same level of passion and energy to her off-screen messages of empowerment, hard work, and self-discovery, and acceptance. + +though she notes that positivity does not come easily, especially as a black actress, featherson's positivity is infectious and is felt in every interaction with her. she attributes her confident outlook on life due to divine alignment with her purpose: changing the world through her artistry and serving as a resource for women of color. + +after dear white people debuted in 2017, variety described featherson as ""pitch-perfect,"" and tv guide said the actress ""is the comic force of the show."" in volumes 2 and 3, featherson continued to steal scenes and reviews. with her stunning cover of erykah badu's classic, ""tyrone,"" she is also the only cast member featured on the soundtrack. + +recognizing a lack of mirrors for girls of color, ashley co-created the groundbreaking web series hello cupid alongside emmy-winner lena waithe. vulture selected hello cupid as one of the best web series of 2014 and the boston globe went further, declaring the series, and ashley, deserving of emmys. + +in 2019, featherson again stood out and was hailed for her starring role in the macro produced series, leimert park, at sundance. she also starred in amber tamblyn's directorial debut, paint it black, the 2016 abc pilot, drew, and guest-starred in fox's glee. + +featherson received her bfa in musical theater from howard university, and she currently resides in los angeles, ca. + +the 2021 mlk jr. commemorative lecture is cosponsored by trinity university and the city of san antonio mlk jr. commission. + +this event is part of the martin luther king, jr. commission's dream week. + +use the live chat to ask questions for the speaker. + +learn more about trinity university here: https://trinity.edu/",19.0,439.0,,,,,,420.0,0.0,0.0,0.0,martin luther king jr. commemorative lecture featuring ashley blaine featherson,,,,,,,,,, +1021,https://www.youtube.com/watch?v=AFqCdli4p-s,0,0,"{""It's Ñitin{Ñk}""}",1,youtube,video,original video,"💓amber heard || aquaman || 4k || full screen hd status + + +#shorts #amber_heard #aquaman #itsñitin #ironman​ #marvel​ #avengers​ #captainamerica​ #spiderman​ #tonystark​ #triathlon​ #thor​ #avengersendgame​ #hulk​ #mcu​ #robertdowneyjr​ #blackwidow​ #marvelcomics​ #endgame​ #swimbikerun​ #infinitywar​ #thanos​ #triathlete​ #captainmarvel​ #tomholland​ #triathlontraining​ #ironmantraining​ #marvelstudios​ #avengersinfinitywar​ #run​ #chrisevans​ #running​ #loki​ #shorts + + +important notice :- these all things are copyrighted we just doing for promotional we just edited and published to audience for entertainment purpose only 👁️all rights to above music label co.& no copyright infringement intended 👁️ + + + +copyright disclaimer under section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favour of fair use.",32.0,695.0,,,,,,628.0,29.0,0.0,6.0,💓amber heard || aquaman || 4k || full screen hd status,,,,,,,,,, +1022,https://www.youtube.com/watch?v=FXnbE5CgsMk,0,0,{'Doctor Soup'},1,youtube,video,original video,"amber heard and johnny depp continue to go at it. we all know the true perpetrator, depp is innocent, heard not. learn more in this video. + + + +twitter: iamdrsoup +other awesome channels: +sec +stevie j raw +come geek some +lost beyond pluto + +#doctorsoup #johnnydeppamberheard",2688.0,81032.0,,,,,,77605.0,61.0,0.0,678.0,amber heard says shut up to depp supporters! she goes crazy on twitter!,,,,,,,,,, +1023,https://www.youtube.com/watch?v=jEt1J6Xtoak,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard attacks the police! tries to ruin them for exposing her depp lies! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #johnnydepp #amberheard",3787.0,60269.0,,,,,,55711.0,23.0,0.0,748.0,amber heard attacks the police! tries to ruin them for exposing her depp lies!,,,,,,,,,, +1024,https://www.youtube.com/watch?v=YAcdzMRadhQ,0,0,{'Baggage Claim'},1,youtube,video,original video,"amber heard played the entire world, selling falsehoods about johnny depp but inevitably the truth came out. meghan markle is trying to do the same thing and establish herself as the survivor or racism and bullying at the hand of the royal family and many people are buying into her claims. but why? why do people end up believing amber heard and meghan markle? + +in this video, i dive into how these women used our desire for justice against us. + +***** +disclaimer - the content of this and all of my videos are my opinions based on detailed research that i have performed. please do you own research before you make up you own mind. + +***** + +other videos you will like - +* what ""the me you can't see"" tells us about meghan & harry's relationship | is it narcissistic abuse? - https://youtu.be/-xtg6gjib3y +* what does meghan markle want? analysis of the oprah interview with prince harry and meghan markle - https://youtu.be/a1ylghytasc +* the 5 stages of a relationship with a narcissist (whats going on with prince harry and meghan markle - https://youtu.be/gy5fa57w70a +* what is wrong with prince harry? | how harry changed completely! (2020) is meghan to blame? - https://youtu.be/iiz-vwokhvi +* everything wrong with harry and meghan (how to tell if you're in a relationship with a narcissist) - https://youtu.be/7aahvg9cuo0 +* how william & kate make their marriage work | prince harry & meghan markle vs prince william & kate - https://youtu.be/_ukicmdyluy +* the problem with meghan markle (2020) | social climber or humanitarian? - https://youtu.be/gqp9vqnnfts +* what went wrong with princess diana and charles | was it all charles's fault? - https://youtu.be/vrrcfzaubx +* meghan markle and archie | how narcissists use their children (whats going on with archie?) - https://youtu.be/selszjrbig4 + + +****** +gear used - +* microphone - https://amzn.to/2ig2hnb +* pop filter - https://amzn.to/3mzrcul +* sandisk 32gb memory card - https://amzn.to/32kl46e +* external ssd (2tb) - https://amzn.to/3l0tgxk + +tools i use for my videos - +* keyword research | tubebuddy| - https://www.tubebuddy.com/baggageclaim +* video editing | finalcutpro x | - https://www.apple.com/final-cut-pro/ +* downloading youtube clips | airy | - https://www.airy-youtube-downloader.com + +and make sure you subscribe to my channel + +****** +disclaimer - +links included in this description might be affiliate links. if you purchase a product or service with the links that i provide i may receive a small commission. there is no additional charge to you! thank you for supporting my channel so i can continue to provide you with free content each week! + +all materials in these videos are used for educational purposes and fall within the guidelines of fair use. no copyright infringement is intended. if you are or represent the copyright owner of materials used in this video and have a problem with the use of said material, please send me an email at baggagehelp@gmail.com",21401.0,451271.0,,,,,,426303.0,819.0,0.0,2748.0,why people believe amber heard and meghan markle's lies - understanding the victimhood game (2021),,,,,,,,,, +1025,https://www.youtube.com/watch?v=xv_1gjyQLcg,0,0,{'eHacker'},1,youtube,video,original video,"amber heard gone as mera rumors never stop! | plus words from and article author +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods + +for those interested in why i dislike and criticise disney star wars (link below): + +https://disneystarwarsisdumb.wordpress.com/",375.0,2245.0,,,,,,1723.0,4.0,0.0,143.0,amber heard gone as mera rumors never stop! | plus words from and article author,,,,,,,,,, +1026,https://www.youtube.com/watch?v=njXNoCBMz-0,0,0,{'Watch Tonight'},1,youtube,video,original video,"amber heard admits to hitting johnny depp in leaked audio + +#amberheard​ #johnnydepp + +johnny depp amber heard audio, +johnny depp amber heard interview, +johnny depp amber heard video, +johnny depp amber heard court, +johnny depp amber heard apology, +johnny depp amber heard fight, +johnny depp amber heard recording, +johnny depp amber heard explained, +johnny depp amber heard audio reaction, +johnny depp amber heard abuse, +johnny depp amber heard audio finger, +johnny depp amber heard audio tape, +johnny depp amber heard analysis, +johnny depp amber heard what happened, +johnny depp amber heard argumenttop 8 coolest spaceships in science fiction movies - https://youtu.be/3frmsfdmx0a + +bad-ass lifestyle of keanu reeves - 2020 - https://youtu.be/iwhpllzcay4 + +any suggestion or advice on improving our videos are always welcome. +any issue with content please contact us on - avinasht24id@gmail.com +hope you having wonderful day. + +thanks for watching +subscribe for more......",27.0,806.0,,,,,,766.0,0.0,0.0,13.0,amber heard johnny depp arguing leaked audio | full conversation,,,,,,,,,, +1027,https://www.youtube.com/watch?v=ThQLHll34y0,0,0,{'Stevie J Raw'},1,youtube,video,original video,"just a chill stream to discuss all topics johnny depp v amber heard including her continued attempts to have twitter give out johnny depp supporter isps. + +join me and let's talk! + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join +art of elysium donation page - https://www.pledge.to/the-art-of-elysium + +justice for johnny depp t-shirts (proceeds go to charity): +design 1 - https://t.co/uycndh9ebj?amp=1 +design 2 - https://t.co/hdmq0wicke?amp=1 +design 3 - https://t.co/lqmeoidmje?amp=1 +design 4 - https://t.co/lkteqqdxhg?amp=1 + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#justiceforjohnnydepp #johnnydepp #amberheardisaliar",438.0,4567.0,,,,,,4001.0,4.0,0.0,124.0,chill stream - johnny depp | amber heard v twitter,,,,,,,,,, +1028,https://www.youtube.com/watch?v=HZWt-aMsfJ4,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"amber heard's newest instagram post gives us more insight into whose supporting a known abuser. let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +☆other platforms☆ + + +•backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + +☆support the channel☆ + +•become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +•if you want to support my channel, please check out my patreon and subscribe star below: + +•patreon: +https://www.patreon.com/user?u=21542407 + +#shorts #justiceforjohnnydepp #amberheard #johnnydepp #loreal",626.0,16640.0,,,,,,15461.0,199.0,0.0,354.0,"amber heard thinks she's ""worth it"" | #shorts",,,,,,,,,, +1029,https://www.youtube.com/watch?v=coNTGGCZkkw,0,0,{'Multiple Contents'},1,youtube,video,original video,"hey guyzzz, welcome to our channel please like and subscribe our channel. so we can make more intresting and beautiful videos for multiple content family :) + +........................................................................................ + +the marriage of amber heard and johnny depp not only ended in divorce but has led to a nasty legal battle after heard had accused depp of being violent and abusive. on the other hand, depp has come out with his own allegations and a tape has surfaced to reveal that heard had assaulted depp. as per reports, heard could easily face up to three years in prison if she is found guilty of manipulating or faking evidence against her former husband. a case in point would be the one incident in which heard had described how depp had given her two black eyes while the two were arguing. + + +note : copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use. + + +#amberheardnews +#johnnydepp",255.0,6756.0,,,,,,6416.0,5.0,0.0,80.0,amber heard faces 3 years in jail | faking evidence against johnny depp. #amberheardnews #johnnydepp,,,,,,,,,, +1030,https://www.youtube.com/watch?v=iX63Sqkr8sE,0,0,{'This Happened'},1,youtube,video,original video,"amber heard's assisstant finally exposes her for lying + +amber heard went from being called a hero of the feminist movement to the most hated woman in showbiz. +after she first accused her former husband johnny depp of being physically aggressive towards her, few people dared to doubt her words. +both fans and celebrities were racing to offer their support for amber while at the same time calling for johnny to be cancelled for good. +but over the past few years, evidence against amber has piled mountain high and amber has now completely lost the public support she once enjoyed. +the fans and many of amber’s fellow celebrities are now convinced amber fabricated her accusations against johnny and orchestrated an elaborate hoax in an attempt to ruin his career. + + +subscribe for celeb drama: http://youtube.com/channel/ucylyoo597nuffyjs_hwhubq?sub_confirmation=1 + +#thishappened #amberheard #johnnydepp",5464.0,255744.0,,,,,,249161.0,101.0,0.0,1018.0,amber heard's assisstant finally exposes her for lying,,,,,,,,,, +1031,https://www.youtube.com/watch?v=cJSYaF3HIXc,0,0,{'The Bloody Aardvarks'},1,youtube,video,original video,"whole foods employees suing have lawsuit thrown out, wallstreetbets tries to make a superbowl ad, new russian body armor, amber heard lying again, swiss man uses fake money to pay for his lady of the night habit, ukrainian influencer tattoos her cat and a morgan wallen update. this is your daily news without the libtard propaganda. + +get free crypto with my link - https://www.coinbase.com/join/dwyer_u7 +theres a rotating offer for signing up but as i type this its $10 worth of free bitcoin when you sign up. + +1 - https://www.businessinsider.in/retail/news/whole-foods-employees-claims-about-being-punished-for-wearing-black-lives-matter-face-masks-have-been-dismissed-by-a-federal-judge/articleshow/80722427.cms +2 - https://mashable.com/article/reddit-wallstreetbets-gamestop-robinhood-super-bowl-ad/ +3 - https://futurism.com/the-byte/russia-combat-suit-survive-50-caliber-bullets +4 - https://www.pinknews.co.uk/2021/02/05/amber-heard-marilyn-manson-sexual-assault-evan-rachel-woods/ +5 - https://www.dailymail.co.uk/news/article-9227111/swizterland-convicts-man-spent-10-000-prostitutes-using-fake-money-printed-himself.html +6 - https://weartv.com/news/local/report-okaloosa-county-teacher-coach-accused-of-having-sexual-relationship-with-student#:~:text=(wear%2dtv)%20%e2%80%94%20an,student%20by%20an%20authority%20figure. +7 - https://thefederalistpapers.org/us/criminal-probe-launched-greta-thunberg-accidentally-reveals-told-post +8 - https://www.dailydot.com/irl/elena-iwanickaya-animal-abuse-tattoo/ +9 - https://www.rollingstone.com/music/music-news/morgan-wallen-sales-racial-slur-1124242/ + +socials + instagram +bloodyaardvarks + reddit +r/thebloodyaardvarks + fb group +facebook.com/groups/tardvark + discord +https://discord.gg/qyzfuwd",4.0,38.0,,,,,,30.0,2.0,0.0,2.0,daily news - morgan wallen | whole foods blm lawsuit | wallstreetbets superbowl ad | tattooed cat +,,,,,,,,,, +1032,https://www.youtube.com/watch?v=ewn882io1HE,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"see johnny depp take over amber heard's role as mera in aquaman! let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +☆other platforms☆ + +•backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + +☆support the channel☆ + +•become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +•if you want to support my channel, please check out my patreon and subscribe star below: + +•patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp #aquaman #shorts",376.0,6301.0,,,,,,5801.0,15.0,0.0,109.0,see johnny depp take over amber heard's role as mera in aquaman! | #shorts,,,,,,,,,, +1033,https://www.youtube.com/watch?v=pZR2_v4UpgI,0,0,{'This Happened'},1,youtube,video,original video,"amber heard’s lawyer exposes her for ruining johnny depp + +has amber heard been finally exposed? johnny depp and amber heard’s highly-publicized legal battle has been going on for years, with no end in sight. +however, a lot of people have recently come out of the woodwork and offered evidence in support of johnny’s version of events. +after nearly having his career ruined and being fired from several big-budget projects, johnny is now being backed by disney, who has reportedly rehired him for his role as captain jack sparrow in the upcoming pirates of the caribbean movie. + +#amberheard #johnnydepp",40895.0,1638010.0,,,,,,1591019.0,609.0,0.0,5487.0,amber heard’s lawyer exposes her for ruining johnny depp,,,,,,,,,, +1034,https://www.youtube.com/watch?v=rr64Wsvk3yo,0,0,{'The Amber Heard Playlist!!'},1,youtube,video,original video,https://www.hollywoodreporter.com/features/hes-radioactive-inside-johnny-depps-self-made-implosion,,,,,,,,124.0,,0.0,,did amber heard donate the divorce settlement? (amber heard playlist!),,,,,,,,,, +1035,https://www.youtube.com/watch?v=g9R4THBjUhk,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"amber heard took to twitter to .... be hypocritical over the johnny depp situation.... again! let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +other platforms: + +💫backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + +💫support the channel: + +become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +if you want to support my channel, please check out my patreon and subscribe star below: + +patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp #aquaman #aquaman2",634.0,8214.0,,,,,,7328.0,8.0,0.0,244.0,amber heard lectures others on her experience with johnny depp!,,,,,,,,,, +1036,https://www.youtube.com/watch?v=4K7PmaRdRuc,0,0,{'JoeysPokeShop'},1,youtube,video,original video,"like subscribe comment below is this the same girl from justice league or is this a different actors +why does her voice sound different in the 2 movies?",0.0,8.0,,,,,,8.0,0.0,0.0,0.0,"amber heard- mera from aquaman, is she the same as justice league??",,,,,,,,,, +1037,https://www.youtube.com/watch?v=lNWkaHKhGl4,0,0,{'Douglas Nelson'},1,youtube,video,original video,"source: https://boundingintocomics.com/2021/02/27/rumor-amber-heard-fired-from-aquaman-2-over-breach-of-contract/ + +spare some change in the tip jar here: +https://www.paypal.me/mrnailsin + +night knight comic book: +https://indyplanet.com/night-knight-1 + +for t-shirts,hats,pins,etc check out the mr nailsin store here: +https://www.zazzle.com/the_mr_nailsin_store/products +https://teespring.com/stores/the-mr-nailsin-shop +https://society6.com/mrnailsin + +hear the mr nailsin show podcast here: +http://radiomisfits.com/podcasts/the-mr-nailsin-show/ + +https://www.bitchute.com/channel/mrnailsin/ +https://www.youtube.com/user/mrnailsin +https://rumble.com/user/mrnailsin +thanks!",4.0,21.0,,,,,,15.0,0.0,0.0,2.0,the nailsin ratings:amber heard fired from aquaman 2?!,,,,,,,,,, +1038,https://www.youtube.com/watch?v=NcdEnfvZPEY,0,0,{'All In One 》world Info'},1,youtube,video,original video,"johnny depp got the proof that aquaman actress amber heard did not donate her $7 million to the charity fund,that she got from the settlement with depp.",8.0,110.0,,,,,,102.0,0.0,0.0,0.0,"""liar"" amber heard: johnny depp gets that amber heard did not donate $7 million for charity",,,,,,,,,, +1039,https://www.youtube.com/watch?v=44liFFWh2ow,0,0,"{""Mr. Zod's Fandom Zone""}",1,youtube,video,original video,"amber heard responds to claim she failed to donate $7 million johnny depp divorce settlement here is the link to the article + +https://www.eonline.com/amp/news/1225154/amber-heard-responds-to-claim-she-failed-to-donate-s7-million-johnny-depp-divorce-settlement + +pirates’ star #johnnydepp reportedly cast in tim burton’s #beetlejuice2 + +https://insidethemagic.net/2021/01/johnny-depp-beetlejuice-2-ad1/ + +#justiceleagues #rayfisher responds to news he's no longer the #dceu #cyborg + +https://screenrant.com/cyborg-dceu-future-ray-fisher-warner-bros-response/amp/ + +#joaquinphoenix reportedly returning as #joker for multiple movies + +https://wegotthiscovered.com/movies/joaquin-phoenix-reportedly-signed-joker-movie/amp/?__twitter_impression=true + +#knightrider movie reboot hasn't won #davidhasselhoffs approval quite yet + +https://movieweb.com/knight-rider-movie-reboot-david-hasselhoff-responds/ + +popculturepb channel https://youtu.be/vavx2pirnoi + +purpminded420 channel https://youtu.be/dftkdmrngr0 + +cybernetichusky channel https://youtu.be/ivwjzatrkps + +prophets of geek culture https://youtu.be/ivwjzatrkps",42.0,289.0,,,,,,235.0,1.0,0.0,11.0,late night talks blockbuster (#amberheardisaliar responses to charity scandal),,,,,,,,,, +1040,https://www.youtube.com/watch?v=KhgM-PLc-vk,0,0,{'Popcorned Planet'},1,youtube,video,original video,"new evidence for johnny depp catches amber heard in more lies! her credibility is toast, she's caught lying again under oath! - just more good news for johnny depp + +s u p p o r t t h i s. c h a n n e l: +subscribe, donate & follow us here: https://linktr.ee/andysignore + +and join our community to become a popcorned planeteer, to really become a part of the team and get exclusives scoops & perks! +https://www.youtube.com/channel/uccdicbo4cle4s1wbxjjsusg/join + +popcorned planet offers nerd news on movies, tv, marvel, dc, star wars, disney, ufos, and pop culture outrage incluyding justice for johnny depp coverage. created and hosted by andy signore (creator of screenjunkies, honest trailers, moviefights, hugging the cactus, movie world, man at arms and more). popcornedp lanet is your one stop place for movie talk, movie scoops, and pop culture commentary. + +c o n t a c t / b u s i n e s s : popcornedplanet@gmail.com",2617.0,41376.0,,,,,,38121.0,33.0,0.0,605.0,amber heard caught lying again! johnny depp's new evidence!,,,,,,,,,, +1041,https://www.youtube.com/watch?v=D_4FyvAVUvg,0,0,{'Podcast Now'},1,youtube,video,original video,"a lot of rumors are swirling that emilia clarke will be playing mera in aquaman 2, taking the place of amber heard. let's talk about what it means if that were to happen! let me know what you think and make sure to subscribe to the channel for more content!! #amberheard #emiliaclarke #aquaman2 + +follow us on twitch - https://www.twitch.tv/podcastnow + +subscribe to my second channel!! -https://www.youtube.com/channel/ucwl_77_rksghvimkpjcb3xw + +join our discord server! - https://discord.gg/c2de68m + +follow me on twitter - https://twitter.com/podcastnow15",142.0,2310.0,,,,,,2109.0,8.0,0.0,51.0,amber heard recast in aquaman 2? - emilia clarke playing mera! - rumor,,,,,,,,,, +1042,https://www.youtube.com/watch?v=zdCfaPt2OUo,0,0,{'Charlie Chats'},1,youtube,video,original video,"amber heard is no longer in aqua man 2 (here's why) + +after amber heard accused ex-husband johnny depp of committing domestic violence during their marriage, multiple celebrities with ties to johnny depp have come forward in his defense. depp’s other ex-wife and mother of his two children, vanessa paradis, depp’s ex-fiancé winona ryder, and his former co-star penelope cruz have all testified in the actor’s defense. + + +it should be noted that though all three women insist depp was never violent in their presence, the only ones for certain who know the intimate details of heard and depp’s marriage are depp and heard. and there are other celebrities who tried to warn us about amber heard. make sure to watch the whole video and see which celebrities have come forward to warn us about the actress. in addition, do us a favor and like the video and subscribe and turn on the notification bell. we’ll see you in the next video! + + +#hollywood +#amberheard +#johnnydepp + + +related videos: + + +amber heard officially fired from aquaman 2 role! (reactions) +https://www.youtube.com/watch?v=qbcexsvjbrm + + +top 10 celebrities who tried to warn us about amber heard +https://www.youtube.com/watch?v=ofo6smjgjhc + + +amber heard officially gets replaced by emilia clarke in aquaman 2!!! +https://www.youtube.com/watch?v=k-okrp92nlq + + +i do not take any ownership of the music displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes displayed in this video. ownership belongs to the respected owner(s). used u",33.0,926.0,,,,,,886.0,1.0,0.0,6.0,amber heard is no longer in aqua man 2 (here's why),,,,,,,,,, +1043,https://www.youtube.com/watch?v=SnBP4ZyETD0,0,0,{'TheQuartering'},1,youtube,video,original video,"the #1 way to support this channel is backing me on subscribestar +https://www.subscribestar.com/thequartering + +become a youtube member! it's the #2 best way to support! +https://www.youtube.com/channel/ucfwe_odi1ytbdjkzusi1nag/join + +follow me +parler-https://parler.com/profile/thequartering/ +twitter-https://twitter.com/thequartering +discord-https://discord.gg/d3tnuwdvzm +subreddit-http://reddit.com/r/thequartering +politics channel -https://www.youtube.com/channel/uc577sigte1cjpdosladwndw +odysee- https://odysee.com/@thequartering:1 +bitchute- https://www.bitchute.com/channel/1t4g52b7i3ox/",19111.0,185672.0,,,,,,164957.0,161.0,0.0,1443.0,amber heard busted finally! huge win for johnny depp!,,,,,,,,,, +1044,https://www.youtube.com/watch?v=Fpy2Urtgdbo,0,0,{'YellowFlash 2'},1,youtube,video,original video,"huge news in the ongoing dispute between johnny depp and amber heard! today, new footage has dropped proving that heard fabricated her statement under oath! + +how to support +►check out my store: https://teespring.com/stores/yellowflash-merch +►check out my patreon: https://www.patreon.com/yellowflashcomics + +where to find me +►check out my twitch: https://www.twitch.tv/yellowflashtwo +►follow me on twitter: @yellowflashguy +►follow me on minds: https://www.minds.com/yellowflash/ +►follow me on odysee: https://odysee.com/@yellowflash:8?r=ebxc2ze5cbcuihj7wkc7kcageacisrvk +►follow me on bitchute: https://www.bitchute.com/channel/bwecegsvy8ab/ +►follow me on parler: https://parler.com/profile/yellowflash +#amberheard #johnnydepp #justiceforjohnnydepp",5063.0,54125.0,,,,,,48362.0,17.0,0.0,683.0,johnny depp vindicated! new body cam footage proves amber heard fabricated evidence under oath!,,,,,,,,,, +1045,https://www.youtube.com/watch?v=fiMHnccBJC0,0,0,{'Trendy Vert'},1,youtube,video,original video,"10 celebs who defended johnny depp against amber heard! +in this video, trendy vert showcases 10 celebrities who stop up for johnny depp and defended him against amber heard and the accusations of her! learn about what emilia clarke, elon musk, jason momoa, and more thought about the whole situation and how they praise johnny depp for everything... + +💜 if you enjoyed this video make sure to leave a like and a comment telling us what you thought! + +if hollywood and the latest entertainment news are some of your interests, then you should make sure to subscribe to our channel! we are not only spilling the latest tea with drama, celebrity scandals, and celebrity gossip, but we are also making news related and top 10 videos on your favorite celebrities: https://www.youtube.com/channel/ucsacqwrcnu0hhtininsywcw?sub_confirmation=1 + +trendy vert is all about the most trending news! make sure to subscribe to us to stay updated on your favorite celebrities as well as any updates on the latest youtube and tiktok drama! + +#johnnydepp #amberheard #emiliaclarke #jasonmomoa #elonmusk #trendy vert",171.0,11464.0,,,,,,11216.0,38.0,0.0,39.0,"10 celebs who defended johnny depp against amber heard! (emilia clarke, elon musk, jason momoa)",,,,,,,,,, +1046,https://www.youtube.com/watch?v=b8on3oR-N0o,0,0,{'Popcorned Planet'},1,youtube,video,original video,"amber heard gets roasted on her birthday! + +s u p p o r t t h i s. c h a n n e l: +subscribe, donate & follow us here: https://linktr.ee/andysignore + +and join our community to become a popcorned planeteer, to really become a part of the team and get exclusives scoops & perks! +https://www.youtube.com/channel/uccdicbo4cle4s1wbxjjsusg/join + +popcorned planet offers nerd news on movies, tv, marvel, dc, star wars, disney, ufos, and pop culture outrage incluyding justice for johnny depp coverage. created and hosted by andy signore (creator of screenjunkies, honest trailers, moviefights, hugging the cactus, movie world, man at arms and more). popcornedp lanet is your one stop place for movie talk, movie scoops, and pop culture commentary. + +c o n t a c t / b u s i n e s s : popcornedplanet@gmail.com",1464.0,20115.0,,,,,,18305.0,32.0,0.0,314.0,amber heard gets roasted on her birthday!,,,,,,,,,, +1047,https://www.youtube.com/watch?v=mmj6023H0Ik,0,0,{'Drama Depot'},1,youtube,video,original video,"amber heard has been fired from aquaman! (justice for johnny depp) + +subscribe if you haven’t already!: +https://www.youtube.com/channel/ucdmaixbd8irpaazct4xj63a?sub_confirmation=1 + +in this video, we breakdown amber heard has been fired from aquaman (justice for johnny depp). be sure to subscribe to drama depot. thanks for watching this video: amber heard has been fired from aquaman (justice for johnny depp) + +related videos: + +amber heard faces 10 years in prison for accusations against johnny depp!!! +https://www.youtube.com/watch?v=uvshwtghmts + +the real reason amber heard could end up behind bars +https://www.youtube.com/watch?v=6qegxqmswl8 + +top 10 celebrities who defended johnny depp +https://www.youtube.com/watch?v=uj9kutxlulw + +amber heard facing 10 years in prison for fake johnny depp accusations!? +https://www.youtube.com/watch?v=tybocw3gqzc + +amber heard officially fired from aquaman 2 role! (reactions) +https://www.youtube.com/watch?v=qbcexsvjbrm + +#amber #heard #aquaman",6.0,204.0,,,,,,192.0,3.0,0.0,3.0,amber heard has been fired from aquaman! (justice for johnny depp),,,,,,,,,, +1048,https://www.youtube.com/watch?v=fff3cz6uSZM,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"jason momoa and amber heard ruin aquaman 2! warner has to miss depp! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",4858.0,102933.0,,,,,,96510.0,208.0,0.0,1357.0,jason momoa and amber heard ruin aquaman 2! warner has to miss depp!,,,,,,,,,, +1049,https://www.youtube.com/watch?v=nF2trly23ww,0,0,{'FilmiBeat'},1,youtube,video,original video,"amber heard has been fired from jason momoa's blockbuster film aquaman 2, know why. know more about that in this video. + +youtube: https://goo.gl/qlauzb + +follow us on twitter +https://twitter.com/filmibeat + +like us on facebook +https://www.facebook.com/ + +visit us: http://www.filmibeat.com/ +#aquaman #amberheard #jasonmomoa #amberheard #aquaman2 #aquaman2 #johnnydepp +-------------------------------------------------------------------------------------------------------------- + +subscribe to filmibeat channel for latest updates on movies and related videos. + +you tube: https://goo.gl/qlauzb + +follow us on twitter +https://twitter.com/filmibeat + +like us on facebook +https://www.facebook.com/filmibeat + +visit us: http://www.filmibeat.com/ + +download app: https://play.google.com/store/apps/details?id=in.oneindia.android.tamilapp",6.0,639.0,,,,,,631.0,2.0,0.0,0.0,"amber heard को jason momoa की blockbuster film aquaman 2 से किया बहार, जानिए क्यों | filmibeat",,,,,,,,,, +1050,https://www.youtube.com/watch?v=MY_dmZnbReI,0,0,{'Ping Pong Flix'},1,youtube,video,original video,"amber heard replaced by emilia clarke for aquaman 2? + +welcome back to the ping pong flix show for all up to date entertainment topics in dc, marvel, star wars, godzilla, power rangers, and more! my name is chris wong-swenson and i'm a youtube journalist discussing, reporting, and speculating on all genre films and shows in the entertainment industry! also an associate producer for zack snyder's justice league! + +main content: +👉daily show premieres at 5am est +👉saturday night live chat q&a at 10:30pm pst + +🌭support my channel and join as a member to get access to perks and extra content🌭 +click here to join 👉https://www.youtube.com/c/pingpongflix/join + +follow me on twitter: http://www.twitter.com/pingpongflix +follow me on instagram: http://www.instagram.com/pingpongflix +follow me on facebook: http://www.facebook.com/pingpongflix +follow me on linkedin: http://www.linkedin.com/company/ping-pong-flix-show + +subscribe for daily entertainment news👉 https://www.youtube.com/c/pingpongflix?sub_confirmation=1 + +teespring store 👉 https://teespring.com/stores/ping-pong-flix-merchandise + +check out my amazon store 👉 https://www.amazon.com/shop/chriswong-swenson + +you can send me mail to: + +chris wong-swenson +po box 11618 +honolulu, hi 96828 + +intro/outro -- ""epic song"" by box cat games + +------------------------------------------- +intro/outro music by 95turbosol – final stand: https://www.youtube.com/watch?v=c0k9hwff85k +music provided by royalty free music: https://www.youtube.com/royaltyfreezone +music used: for you king by ender güney https://www.youtube.com/c/ncmepicmusic +licensed under creative commons attribution 3.0 https://creativecommons.org/licenses/... +epic game/hybrid/soundtrack/tactical/war music: alex lisi - special operations. +follow alex lisi +-youtube: http://youtube.com/c/alexlisireal?sub... +------------------------------------------- + +copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing.",350.0,5637.0,,,,,,5078.0,12.0,0.0,197.0,amber heard replaced by emilia clarke for aquaman 2?,,,,,,,,,, +1051,https://www.youtube.com/watch?v=S8Nemf3D4Tc,0,0,{'John Campea'},1,youtube,video,original video,"watch john's new documentary, ""movie trailers: a love story"" available now worldwide at http://www.vimeo.com/ondemand/movietrailers and also available in the us and uk on amazon video. + +watch the full episode this clip is from here: +https://youtu.be/zsqruls5kkm + +support or submit your question for the current or next show 24/7 here: +https://streamelements.com/movieblogtv/tip + +viewer question: the juan and only - hi john and rob, hope everything's well. so forbes twitter account just posted an article about emilia clarke selling a fancy house, but they casually wrote the following: ""she also signed on to replace amber heard as mera in aquaman 2."" how reliable is this coming from forbes, as no other source is mentioned? your thoughts on emilia as mera? live long and prosper! + +leave a question when you tip at https://streamelements.com/movieblogt... and it will be answered on the show, or the next show we do. + +support john on patreon! http://www.patreon.com/johncampea + + +john’s gear links + +main cameras +sony a6400 - https://amzn.to/2vsmmyx +sony a6600 - https://amzn.to/3bbfivl +canon xc15 - https://amzn.to/3abgzy8 + +mic pre-amps +cloudlifter - https://amzn.to/3ckgvra + +good cheaper cameras john uses +canon vixia r800 - https://amzn.to/2yfa8zi +logitech c920 webcam - https://amzn.to/3eiul8m + +main microphones +rode procaster - https://amzn.to/3cum1at + +good cheaper mics john uses sometimes +audio-technica atr2100x (usb and xlr) - https://amzn.to/34fsiid +blue yeti (usb) - https://amzn.to/2xyvzb8 + +lapel mic +fifine (usb) - https://amzn.to/2vvzocw + +shotgun mics +rode videomic go (small on camera mic) - https://amzn.to/34a3yx0 +rode ntg2 (main studio mic) - https://amzn.to/2rekh6d +sennheiser mke 600 (main studio mic) - https://amzn.to/3eo5boy + +soundboard/mixer +rodecaster pro (main) (usb) - https://amzn.to/2rzozfc +behringer xenyx 1204usb (backup board) - https://amzn.to/2yf8vzn + +streaming software +wirecast pro +wirecast control surface - https://amzn.to/34dzjrg + +lights +nanlite lumipad 25 (main studio lights) - https://amzn.to/2xaevxd +neewer ring light (secondary lights) - https://amzn.to/2rdroap +falconeyes f7 pocketlite (background color lights) - https://amzn.to/3embgnt +selfie ring - (guest light) - https://amzn.to/3a6esoz + +show notes computer +ipad pro 2020 - https://amzn.to/34alhca + + +submit your topic or question for the john campea show here: +http://www.thejohncampeashow.com/contact + +follow john on instagram: +http://www.instagram.com/johncampea",1613.0,57674.0,,,,,,55460.0,71.0,0.0,530.0,emilia clarke replacing amber heard in aquaman 2 report,,,,,,,,,, +1052,https://www.youtube.com/watch?v=UKsyrTPQOEU,0,0,{'Saklı Kumanda'},1,youtube,video,original video,"amber heard ve johnny depp çifti magazinin gündeminden düşmüyor. peki çiftin arasında neler yaşandı? johnny depp ve amber heard ses kayıtlarında neler var? johnny depp karayip korsanları serisinden neden kovuldu? amber heard aquaman filminde olacak mı? johnny depp fantastik canavarlar serisinden neden ayrıldı? mahkemede neler yaşandı? tüm bu sorulara cevap veriyorum! + +instagram: https://instagram.com/sakli.kumanda +twitter: https://twitter.com/sakli_kumanda +facebook: https://www.facebook.com/saklikumanda",356.0,11430.0,,,,,,10966.0,6.0,0.0,102.0,johnny depp ve amber heard arasında neler yaşandı?,,,,,,,,,, +1053,https://www.youtube.com/watch?v=gfUMuDPxhts,0,0,{'Yes Scoop!'},1,youtube,video,original video,"tesla’s and paypal ceo and ex-boyfriend of amber heard elon musk is defending johnny depp against amber heard! + +subscribe to never miss a yes scoop! ► https://bit.ly/39ks2rl + + +@yes scoop! + +#elonmusk #johnnydepp #amberheard",52.0,1596.0,,,,,,1524.0,2.0,0.0,18.0,elon musk defends johnny depp over amber heard,,,,,,,,,, +1054,https://www.youtube.com/watch?v=2kHLubss76A,0,0,{'The Amber Heard Playlist!!'},1,youtube,video,original video,,,,,,,,,40.0,,0.0,,you can learn to judge for yourself!! (amber heard playlist!!),,,,,,,,,, +1055,https://www.youtube.com/watch?v=PAK7tlGFRgU,0,0,{'Popcorned Planet'},1,youtube,video,original video,"don't believe the rumors... amber heard is not making a mera series for hbo max - exclusive. lets break down how rumors like these get started. #justiceforjohnnydepp + +s u p p o r t t h i s. c h a n n e l: +subscribe, donate and follow andy here: https://linktr.ee/andysignore + +and join this channel to get access to perks: +https://www.youtube.com/channel/uccdicbo4cle4s1wbxjjsusg/join + + +f o l l o w m y f r i e n d s: +jody’s corner: https://www.youtube.com/channel/uc4ukkunzwgbjyesalvqdqcg +nerd report: https://www.youtube.com/user/nukethefridgetv +the planet of nerds with stef, chris & kev - https://www.youtube.com/channel/ucqdpgnhfwqt-ujeqkwinkda +adan @ nerdtots: https://www.youtube.com/channel/ucpeik5xccv2hgfqrnna074g +damian''s indie horror trailer the other side: https://www.youtube.com/channel/ucir9krgjjkz3vbbrgqtmt6wa +darth daddy lunga's the grey council - https://www.youtube.com/channel/uc2zzqsodtynawkug8ww--qw + +a b o ut t h i s c h a n n e l : +@popcornedplanet offers passionate takes on all things movies, tv & pop culture, created and led by andy signore (creator of screenjunkies, honest trailers, moviefights, man at arms and more) you can learn about andy’s journey here: https://www.youtube.com/watch?v=3wgofa4a0um + +andy also launched hugging the cactus, a channel & series detailing the dangers of cancel culture, stories of redemption and life experience, which you can learn more here: http://www.uncanceled.com or subscribe at: http://youtube.com/huggingthecactus + +c o n t a c t / b u s i n e s s : +popcornedplanet@gmail.com",453.0,5545.0,,,,,,4924.0,28.0,0.0,140.0,amber heard is making mera series for hbo max?! - fact check / exclusive,,,,,,,,,, +1056,https://www.youtube.com/watch?v=i3x_TuQigw8,0,0,{'Colonel Kurtz'},1,youtube,video,original video,"amber heard psychological analysis: documentary / biography +in this video about amber heard, i analyze interesting moments from past interviews and make some new and (hopefully) original psychological observations to entertain you. i also discuss her relationships with johnny depp and others as well as the court case pending with johnny depp. + +part 2 of my amber heard analysis: https://www.youtube.com/watch?v=y6guttoge7m&t=1772s + +please subscribe for more celebrity and pop culture videos like this one. my next video will be on a different celebrity topic. + +here's my patreon and tip jar: + +tip jar: https://www.paypal.com/donate?hosted_button_id=z65d3ull278sw +patreon: https://www.patreon.com/colonelkurtz?fan_landing=true +bitcoin wallet: 3mdstdvxdhc1vgzijqcounxk7afxttg9ar",2222.0,76788.0,,,,,,72999.0,123.0,0.0,1444.0,amber heard analysis: interviews and psychological documentary bio,,,,,,,,,, +1057,https://www.youtube.com/watch?v=au4IeJ6HJ00,0,0,{'Keeley Talks'},1,youtube,video,original video,,95.0,1295.0,,,,,,1163.0,3.0,0.0,34.0,amber heard being pressured by warner bros.?!?,,,,,,,,,, +1058,https://www.youtube.com/watch?v=6-6bRaotgDg,0,0,{'Film Streak'},1,youtube,video,original video,"zack snyder speaks on amber heard´s ban from all dc movies! +zach snyder has announced that amber heard isn't going to be in any future dc movies because of her controversy with her ex husband johnny depp. allegedly she has faked most of the accusations against johnny, which has cost both of them a lot of both time, money and energy. +many did not see amber heard in the new trailer for ""justice league: the snyder cut"" and they were hyper-happy about it. + +hbo max released the newest trailer for zack snyder's ""justice league"" on sunday march 14, 2020, and it received a lot of praises, with many saying it was better than what was released in 2017. however, many also noticed that heard's name wasn't in the credits and they didn't see her in the trailer, making some wonder if heard has been removed from the movie. + +but fans got thunder-struck when they saw that amber heard is still part of zack snyder's ""justice league'' 4 hours cut. what a trick there snyder. + +here on film streak we are all about the latest spill in hollywood! you can rest assure that we will bring you all the latest celebrity drama and gossip especially concerning you favorite actors! we´ll also make sure to keep you updated on the newest movie updates and releases – so if you are interested in anything that happens in hollywood, you should make sure to stay tuned! + +and there you have it guys! we hope you enjoyed the video! if you did please consider leaving a like and telling us what you though in the comments! + +here are some links to some of our other videos that you might find interesting as well: +""i lied"" amber heard apologies to johnny depp (ig live video): https://www.youtube.com/watch?v=plyxm0ztstg +emilia clarke reaction before replacing amber heard in aquaman 2! https://www.youtube.com/watch?v=pyxp9wxhuww +johnny depp officially rehired | back in a new pirates of the caribbean 6 movie? https://www.youtube.com/watch?v=utozmdfngvk +elon musk speaks against amber heard & defends johnny depp! +https://www.youtube.com/watch?v=woo2bftrrl4 + +so, if you are interested in anything related to hollywood, make sure to smash that subscribe button to see more of our content in the future! 🎬 https://bit.ly/3kzplqd + +#amberheardfired #amberheadcancelled #amberheardcareerover #filmstreak",871.0,72976.0,,,,,,70884.0,507.0,0.0,714.0,zack snyder speaks on amber heard´s ban from all dc movies!,,,,,,,,,, +1059,https://www.youtube.com/watch?v=1O9bRqmktNQ,0,0,{'Viral Vision'},1,youtube,video,original video,"amber heard reportedly fired from another movie role (latest update) +valentine’s day was a big day for a whole host of reasons. but one of the biggest of all was that of the release of the snyder cut trailer. something that has been wanted for a long time the new trailer showcased both new and old footage and the various changes that were made to this original cut when a certain director took over the project. however, amber heard was not in the trailer, or credits. and many are happy about that. so did amber heard just get fired yet again from another movie role? we’ll break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e + +and there you have it, everyone! a look at whether amber heard has really been removed from the snyder cut. do you think she might actually be removed from it? do you think that the movement to get her removed from aquaman 2 will come through? or do you think wb is just going to go and keep her in for money and appearances sake? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel!",2943.0,93212.0,,,,,,89186.0,96.0,0.0,987.0,amber heard reportedly fired from another movie role (latest update),,,,,,,,,, +1060,https://www.youtube.com/watch?v=PR0sfDvIJZE,0,0,{'Larsavision Tv'},1,youtube,video,original video,"todo parece indicar que amber heard quedó fuera de la cinta “aquaman 2” y que en su lugar quedará la actriz emilia clarke, de acuerdo con la revista forbes. keith flamer, periodista que trabaja para la publicación, dijo que clarke firmó para reemplazar a amber heard como mera en la cinta “aquaman 2”.",37.0,1345.0,,,,,,1282.0,3.0,0.0,23.0,¡¡amber heard fuera de aquaman!! 😲😲,,,,,,,,,, +1061,https://www.youtube.com/watch?v=gQpr2HIXABs,0,0,{'My Review - Aaron Fischer'},1,youtube,video,original video,"big dceu news: +-superman being rebooted by jj abrams and written by a guy who hates america +- is amber heard really fired from aquaman 2? +- is zack snyder's justice league really the end? + +#dceu #jjabrams #zacksnydersjusticeleague",1.0,37.0,,,,,,34.0,0.0,0.0,2.0,dceu update - jj abrams rebooting superman - amber heard fired from aquaman 2??,,,,,,,,,, +1062,https://www.youtube.com/watch?v=ZYhqagUdvUk,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"join this channel to get access to perks: +https://www.youtube.com/channel/ucg2qylhnyyxksvv6ve11ijw/join",111.0,955.0,,,,,,790.0,2.0,0.0,52.0,🔴 livestream was amber heard fired ? the australia incident revisited.,,,,,,,,,, +1063,https://www.youtube.com/watch?v=AKlM3CjxR2Q,0,0,{'The Gossipy'},1,youtube,video,original video,"amber heard thanks fans for their support | the gossipy + +welcome tothe gossipy. we make interesting videos about hollywood in english. we give you a closer look in the lives of celebrities like kanye west, ed sheeran, the rock, jay z, selena gomez, kylie jenner, kim kardashian, rihanna and 100s more. + +in hollywood, there are many stars that have ruined their own careers. these celebrities will do things that destroy their reputation and expose their true selves. + +in the case of amber heard, this situation is entirely different. her destruction has been more of a “slow burn."" because she’s tried so hard to convince people she’s a good girl and a victim, but is not getting exposed as actually something else entirely. + +amber's life has taken a downward spiral but she now takes time to thank her fans for their support. all while, johnny depp rebuilds his reputation that amber heard tried to destroy. + +allow us to break it all down. be sure to like the video, hit the like button and notification bell, and subscribe to the channel! + +#amberheard #johnnydepp #johnnydeppamberheard + +we tell you interesting things about these hollywood celebrities that you may have never heard before. +subscribe - https://www.youtube.com/channel/ucamaieynotgj-dmjp8dpepq?sub_confirmation=1 +''the channel goal is to get all the you tube play buttons"". so please do subscribe to our channel to be a part of the gossipy community, it is really important to grow together as a family and "" we promise you, we will not let you down"". + +cheers!",2.0,55.0,,,,,,52.0,0.0,0.0,1.0,amber heard thanks fans for their support | the gossipy,,,,,,,,,, +1064,https://www.youtube.com/watch?v=gjffswi7M_Q,0,0,{'Bollygrad i Trailers'},1,youtube,video,original video,"this is our conceptual trailer officially created for entertainment purpose. + +aquaman is a 2018 american superhero film based on the dc comics character of the same name. distributed by warner bros. pictures, it is the sixth film in the dc extended universe (dceu). the film was directed by james wan, from a screenplay by david leslie johnson-mcgoldrick and will beall. it stars jason momoa as aquaman, who sets out to lead the underwater kingdom of atlantis and stop his half-brother, king orm from uniting the seven underwater kingdoms against the surface world. amber heard, willem dafoe, patrick wilson, dolph lundgren, yahya abdul-mateen ii, ludi lin, temuera morrison, and nicole kidman appear in supporting roles. + +development began in 2004 but did not gain traction until man of steel was released in 2013. in august 2014, beall and kurt johnstad were hired to write competing scripts. wan signed on as director in april 2015, and in july 2016, the film moved forward with beall's screenplay. the main cast was confirmed through 2016 and early 2017. principal photography began in australia in may 2017, taking place at village roadshow studios on the gold coast, queensland, with additional production teams in canada, italy and morocco. filming concluded the following october. several vendors provided visual effects, ranging from high-detail hair simulations to the creation of cgi animals and locations. + +aquaman premiered in london on november 26, 2018, and was released in the united states on december 21. it grossed about $1.148 billion worldwide, making it the highest-grossing dceu film, the highest-grossing film based on a dc comics character (surpassing 2012's the dark knight rises), the fifth highest-grossing film of 2018, and 20th highest of all-time at the time. the critical consensus on rotten tomatoes says the film ""delivers energetic action with an emphasis on good old-fashioned fun"".[9] the sequel, aquaman 2, is set for release in december 2022, and the spin-off, the trench, is in development, an animated television miniseries title aquaman: king of atlantis set during with the events of the film for hbo max. + +#bollygradstudioz #conceptualtrailer #bollygraditrailers #bollywood #cinemaworld +#cinematrailers + +editor - shubham priyadarshi +concept bgm composed by - akashdeep singh + + +follow our other social media platforms - + +sks films - https://www.youtube.com/channel/ucbcdw2goztpgntdmycognaq/ + +bfti : https://www.youtube.com/bollygradfilmtelevisioninstitute + +bollygrad tollywood - https://www.youtube.com/channel/ucg2vjxnvoxuz3pfxrjyb24q + +bollygrad hollywood - https://www.youtube.com/channel/ucui-9ktmbjssnspy0w9xsja + +instagram: (https://www.instagram.com/bollygrad.studioz/) + +facebook:(https://www.facebook.com/bollygrad.studioz/) + +twitter: (https://twitter.com/bollygrad) + +website: (http://www.bollygrad.com/)",0.0,8.0,,,,,,8.0,0.0,0.0,0.0,aquaman 2 i official concept trailer | jason momoa | dc comics | amber heard | fanmade,,,,,,,,,, +1065,https://www.youtube.com/watch?v=nFBnZ66ih7w,0,0,{'Momo Kenyi'},1,youtube,video,original video,"hey beauties, i'm coming to you with another video finally! l'oreal infallible fresh wear 24hr foundation, this is an interesting one, some of the shades look really red and it is fragrant which doesn't bother me. it is medium coverage and dewy. i wear 535 espresso. ​i would rate it 7/10. xx momo + +in order of appearance + +1: 545 - ebony +2: 540 - mahogany +3: 535 - espresso +4: 530 - deep amber +5: 525 - deep golden +6: 520 - sienna +7: 515 - copper +8: 511 - maple +9: 510 - hazelnut +10: 505 - toffee +11: 500 - honey bisque + +my foundation matches +loreal true match - c9 deep cool +maybelline fit me dewy - 360 mocha +maybelline fit me matte + pore less - 370 deep bronze +milani 2 in 1 - 14 golden toffee or 14a cocoa. +revlon photo ready foundation - mocha +nars natural radiant longwear foundation - namibia/zambie + +get in touch +email: moni.kenyi@gmail.com",436.0,19797.0,,,,,,19324.0,3.0,0.0,34.0,l'oreal infallible 24 hour fresh wear foundation swatches dark to medium shades.,,,,,,,,,, +1066,https://www.youtube.com/watch?v=n-pRwZrhhrI,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard fails in court as her attack is denied! + +breaking! amber heard huge courtroom fail means heard is in trouble! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",2560.0,28768.0,,,,,,25868.0,13.0,0.0,327.0,amber heard fails in court as her attack is denied!,,,,,,,,,, +1067,https://www.youtube.com/watch?v=agcbWc4oGiU,0,0,{'DarthTV'},1,youtube,video,original video,#lol #amberheard #aquaman2 #darthnews #metoo #alternatereality #whatif #satire #justiceforjohnny #johnnydepp #takeajoke #mera #thestand #j4j #domesticviolence #abuse #narcissist #hollywood #celebrity #divorce #lawsuit,81.0,1062.0,,,,,,935.0,11.0,0.0,35.0,i was wrong | amber heard is a victim (satire) #metooes #darthvault,,,,,,,,,, +1068,https://www.youtube.com/watch?v=-cqVoAzrhs8,0,0,{'eHacker'},1,youtube,video,original video,amber heard video taped by raven symone locked out of her car!,2803.0,99608.0,,,,,,96119.0,146.0,0.0,540.0,amber heard secretly recorded by raven symone locked out of her car!,,,,,,,,,, +1069,https://www.youtube.com/watch?v=_oqdobcY0C0,0,0,{'Franchise History TV'},1,youtube,video,original video,"#amberheard +#warnerbros +#aquaman2",4.0,73.0,,,,,,54.0,0.0,0.0,15.0,supposedly amber heard got the boot from warner bros,,,,,,,,,, +1070,https://www.youtube.com/watch?v=gV32lK43irI,0,0,{'YellowFlash 2'},1,youtube,video,original video,"the johnny depp and amber heard situation has taken another turn. a new report is claiming that amber heard has been replaced by emilia clarke in the upcoming dc comics aquaman 2 film by warner studios. let's break it down + +how to support +►check out my store: https://teespring.com/stores/yellowflash-merch +►check out my patreon: https://www.patreon.com/yellowflashcomics + +where to find me +►check out my twitch: https://www.twitch.tv/yellowflashtwo +►follow me on twitter: @yellowflashguy +►follow me on minds: https://www.minds.com/yellowflash/ +►follow me on odysee: https://odysee.com/@yellowflash:8?r=ebxc2ze5cbcuihj7wkc7kcageacisrvk +►follow me on bitchute: https://www.bitchute.com/channel/bwecegsvy8ab/ +►follow me on parler: https://parler.com/profile/yellowflash +#amberheard #johnnydepp #justiceforjohnnydepp",7803.0,169011.0,,,,,,159996.0,115.0,0.0,1097.0,amber heard fired?! did warner just boot her from aquaman 2?! johnny depp vindicated?!,,,,,,,,,, +1071,https://www.youtube.com/watch?v=Scp5CwMzMaA,0,0,{'Daily Mail'},1,youtube,video,original video,"johnny depp is accusing ex-wife amber heard of pocketing the massive $7m settlement from their divorce and repeatedly lying about giving it all to charity, dailymail.com can exclusively reveal. + +original story: https://www.dailymail.co.uk/news/article-9118921/johnny-depp-accuses-amber-heard-taking-7m-settlement-lying-giving-charity.html + +original video: http://www.dailymail.co.uk/video/dailymailtv/video-2330690/amber-heard-accused-pocketing-7m-divorce-settlement.html + +daily mail facebook: http://facebook.com/dailymail +daily mail ig: http://instagram.com/dailymail +daily mail snap: https://www.snapchat.com/discover/daily-mail/8392137033 +daily mail twitter: http://twitter.com/mailonline +daily mail pinterest: http://pinterest.co.uk/dailymail +daily mail google+: https://plus.google.com/+dailymail + +get the free daily mail mobile app: http://dailymail.co.uk/mobile",91.0,2302.0,,,,,,2161.0,12.0,0.0,38.0,amber heard accused of pocketing $7m divorce settlement,,,,,,,,,, +1072,https://www.youtube.com/watch?v=z7GkqCrJa9E,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"i got false flagged because amber heard - twice! such a hilarious fail! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #johnnydepp #amberheard",3225.0,35817.0,,,,,,32200.0,10.0,0.0,382.0,i got false flagged because amber heard - twice! such a hilarious fail!,,,,,,,,,, +1073,https://www.youtube.com/watch?v=Bu1uOt5Tyoc,0,0,{'Crazed Culture'},1,youtube,video,original video,"elon musk speaks against amber heard & defends johnny depp... + +the case between amber heard and johnny depp is one that people all over the world are becoming familiar with. as time continues on the anticipation builds while fans of the actors wait for the official court hearing, amber heard slowly presents herself to be in a pretty bad situation, one that will be hard to come back from. now someone who was also involved in the issue between amber heard and johnny depp was in fact the tesla billionaire, elon musk, but for some pretty interesting reasons; however it just may be that elon’s time in this situation is not over yet, as depp is not done dealing with him. allow us to break the recent news down on why elon musk is being dragged into this libel case. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! +https://www.youtube.com/crazedculture?sub_confirmation=1 + +and there you have it, the most recent updates on johnny depp and his situation between him and amber heard. do you think elon musk will have a statement to present that will help depp’s side? will musk try to cover up for heard? who else could they call forward to provide a statement on their case? let us know what you think in the comments down below! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e + +#amberheard #johnnydepp #justiceforjohnnydepp",11313.0,925345.0,,,,,,908240.0,3130.0,0.0,2662.0,elon musk speaks against amber heard & defends johnny depp!!!,,,,,,,,,, +1074,https://www.youtube.com/watch?v=QRTUFkcd7Pc,0,0,{'Jared Reichard&Teresa Gayudice'},1,youtube,video,original video,"lackluster remakes should be criminal. it is so selfish to take a beloved piece of nostalgia from the collective conscious and pervert it with your own stupid, nonsensical, computer generated, microwavable p.c. garbage. robbing true fans of any hope for a decent retelling for now, @ least, another 30 years. selfish and stupid. i have been so disappointed in the remake of ""the stand""... nothing has been more grossly mishandled than ezra millers' offensive portrayal of trash-can-man. however, i am personally appalled @ the horrible direction of nadine's death. a terribly missed opportunity. the character deserved better. in the source material, her death and moreso her public defiance of flagg are the pivotal beginning of a cascading series of events that weaken his power and allow his defeat. i decided to edit together a video homage to nadine, as played (more accurately) by laura san-giacomo in the 1994 miniseries. i don't know what amber heard was doing, but giacomo's nadine is far superior. r.i.p. nadine cross.",22.0,1966.0,,,,,,1925.0,2.0,0.0,17.0,sympathy for the damned: the sad tragedy of nadine cross (the stand),,,,,,,,,, +1075,https://www.youtube.com/watch?v=d4jholx4ROE,0,0,{'Force Of Light Entertainment'},1,youtube,video,original video,"this video we discuss what warner brother’s will do with amber heard. will she stay in her role for aquaman, or not? what should warner’s do? we discuss this. join the conversation! + +#amberheard #johnnydepp #aquaman #warnerbrothers",192.0,1774.0,,,,,,1439.0,2.0,0.0,141.0,amber heard: in or out at warner brothers?,,,,,,,,,, +1076,https://www.youtube.com/watch?v=iz1aqNknbe8,0,0,{'PopularEntertainment'},1,youtube,video,original video,"○please subscribe○ + +▪︎kiss scene from 'the stand' + +》kissing scene of nadine and randall +》kissing scene of amber heard and alexander skarsgard + +● series title : the stand +● episode title (s01e07) : ""the walk"" +● genre : adventure, drama, fantasy, horror, thriller + + + +■cast : + +▪︎james marsden as stu redman + +▪︎odessa young as frannie goldsmith + +▪︎owen teague as harold lauder + +▪︎whoopi goldberg as mother abagail freemantle + +▪︎amber heard as nadine cross + +▪︎jovan adepo as larry underwood + +▪︎henry zaga as nick andros + +▪︎alexander skarsgård as randall flagg + + ▪︎gordon cormier as joe + +▪︎irene bedard as ray brentner + +▪︎brad william henke as tom cullen + +▪︎nat wolff as lloyd henreid + +▪︎katherine mcnamara as julie lawry + +▪︎nicholas lea as norris. + + +. +. +. +. +. +thank you✌",92.0,24377.0,,,,,,24267.0,12.0,0.0,6.0,the stand / kissing scene ( amber heard & alexander skarsgard ),,,,,,,,,, +1077,https://www.youtube.com/watch?v=ntZJV9a141g,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"joining me today : ya boy gary - new hit song he will be singing live - general zod, sandi brown, tiffany daniels, tammytalksabout, keely talks, justicefordepp",243.0,3161.0,,,,,,2865.0,4.0,0.0,49.0,🔴 livestream amber’s “heard” of fans and herself attacking depp fans !,,,,,,,,,, +1078,https://www.youtube.com/watch?v=rYMgB2_O5xo,0,0,{'Hollywood Select'},1,youtube,video,original video,"amber heard has not been fired from the upcoming sequel of aquaman, contrary to reports last week that suggested that heard has been sacked from her role. ___________________________________________________________________________________________________ +subscribe now for the latest hollywood news & gossips: https://www.youtube.com/channel/ucby6-gp0aehjps9vptckwea",0.0,68.0,,,,,,67.0,1.0,0.0,0.0,reports confirm amber heard has not sacked from aquaman 2,,,,,,,,,, +1079,https://www.youtube.com/watch?v=2HnmzNUOI6U,0,0,{'Def Noodles'},1,youtube,video,original video,"james charles exposed again, amber heard fired from aquaman? nikocado avocado goes off +join the defenders: https://goo.gl/bycwlc +support me on patreon: https://goo.gl/pohxdz +watch me live on twitch: http://bit.ly/2rtipyd +friend me on facebook: https://goo.gl/unzghu + +#jamescharles #amberheard #nikocadoavocado #aquaman #react #reacts #reaction #reactions #familyfriendly #lists #top #curiosities + +update: hi everyone, just wanted to add an update that since publishing this video it has said by someone at the hollywood reporter that amber heard has not been fired from aquaman. i will change the title to reflect that and add a note updating to my community tab as well. + +✳️ this video is rated pg-13 + +➡️ follow my other channels: +go with dennis: https://www.youtube.com/channel/uchgfo2em7pqpvski0rcjcsg +saint pablo: +https://www.youtube.com/channel/ucxcs6pe9mu14qwdzxmpungg + +➡️ follow me everywhere: +facebook: https://goo.gl/unzghu +twitter: https://goo.gl/xr7cwt +instagram: https://goo.gl/uiwaqj +soundcloud: http://bit.ly/2hagacr +pinterest: https://goo.gl/a2wljc +blog: https://goo.gl/rndyu9 +discord: https://goo.gl/zdkpks +subreddit: https://goo.gl/jdrgp1 +snapchat: https://goo.gl/yunyjx +official site: https://goo.gl/zujw7p + +👨‍🚀 about dennis feitosa: +what's up? my name is dennis feitosa and def noodles is a show i created. it's a mix between ""the soup"" and ""the colbert report"", a satirical take on internet news commentary hosted by a cat in minecraft house. thank you so much for subbing + +disclaimer: def noodles is a character created by dennis feitosa meant to satirize some of the most deranged, toxic and destructive aspects of internet culture. def noodles borrows from twitter outrage, modern-day commentary cynicism, excessive clickbait, trolling, buzzword hacking, cancel culture and outright pandering to righteous indignation to reflect on the realities of contemporary social media interactions and media coverage. the opinions and thoughts expressed by def noodles are not a reflection of dennis feitosa's beliefs. this disclaimer applies to all def noodles social media platforms. + + + amber heard fired from aquaman 2 . for business inquiries defnoodles@doubleplayprojects.com",4997.0,98780.0,,,,,,92982.0,96.0,0.0,705.0,"james charles exposed again, amber heard fired from aquaman? nikocado avocado goes off",,,,,,,,,, +1080,https://www.youtube.com/watch?v=GwOvDToF6tI,0,0,{'Film Tidal'},1,youtube,video,original video,"celebrities defending johnny depp against amber heard, elon musk, jason momoa, sia, alic! + +make sure to leave a like and subscribe if you enjoyed the video and would like to see more like this! +also, make sure to turn our post notifications on so you never miss an upload of ours! + +comment down below what type of videos you would want to see us do in the future! + +#celebrity #filmtidal #viral #johnnydepp",3.0,108.0,,,,,,103.0,1.0,0.0,1.0,"celebrities defending johnny depp against amber heard, elon musk, jason momoa, sia, alic!",,,,,,,,,, +1081,https://www.youtube.com/watch?v=SP6yeI2tr7U,0,0,{'Fire Amber Heard'},1,youtube,video,original video,hi you're probably from the future and i'm famous i'll tell u that i currently have 10 subscribers now and none of those are my channels i earned them.,2.0,9.0,,,,,,7.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 31,,,,,,,,,, +1082,https://www.youtube.com/watch?v=quNsHnHoPLg,0,0,{'Mutlu'},1,youtube,video,original video,"amber laura heard (born april 22, 1986) is an american actress. heard first gained mainstream recognition for supporting roles in the action film never back down (2008) and the stoner comedy pineapple express (2008). in the following ten years, she acted mostly in independent films and small-budget productions, such as the joneses (2009), the rum diary (2011), the danish girl (2015) and one more time (2015). she's also known for her roles in horror and thriller films such as all the boys love mandy lane (2006), john carpenter's the ward (2010), drive angry (2011), and machete kills (2013). + +heard had her first major studio role in the dc extended universe superhero film justice league (2017), in which she played atlantean queen mera. she reprised that role opposite jason momoa in aquaman (2018). the same year, heard was named a global spokesperson for the cosmetics giant l'oréal paris. + +heard was married to actor johnny depp from 2015 to 2017. their divorce drew significant media attention as she alleged that he had been abusive during most of their relationship. after heard publicly discussed being the victim of domestic violence in 2018, depp sued her for defamation, alleging that she had been the abusive party. depp also sued the publishers of the sun in a related libel suit, with heard as a key witness for the defendants. in november 2020, the high court of justice of england and wales ruled that depp had lost his case and that the majority of heard's allegations had been proven to a civil standard. + +in addition to acting, heard engages in activism for causes such as lgbtq rights and domestic and sexual violence awareness.",0.0,18.0,,,,,,14.0,4.0,0.0,0.0,"amber heard relaxing video yesterday, today, tomorrow, always",,,,,,,,,, +1083,https://www.youtube.com/watch?v=xpADcOjZzlE,0,0,{'JustSomeRandomBoys'},1,youtube,video,original video,"fair use: +i believe all contents used falls under the remits of fair use, but if any content owners would like to dispute this i will not hesitate to remove said content. it is not my intent to in any way infringe on their content ownership. if you happen to find your art or images or music in the video, please let me know and i will be glad to credit you. + +for contact: acanonymous123@gmail.com + +please note no copyright infringement is intended and i do not own this ""hey mama(remix)"" by ""david guetta"" and used for fair use only.",34203.0,551419.0,,,,,,515779.0,1168.0,0.0,269.0,amber heard | attitude whatsapp status | amber heard birthday whatsapp status |,,,,,,,,,, +1084,https://www.youtube.com/watch?v=Z8lbpyXNJyg,0,0,{'Grupo Región'},1,youtube,video,original video,#somosregión #aquaman #amberheard #jasonmomoa #dc,0.0,19.0,,,,,,18.0,1.0,0.0,0.0,¡que siempre sí! amber heard volverá a ser mera en aquaman 2 😱😱🎥,,,,,,,,,, +1085,https://www.youtube.com/watch?v=wSpXY_E-MT0,0,0,{'Celebrity Craze'},1,youtube,video,original video,"why prince harry and meghan markle are really speaking up against the royal family | celebrity craze + +“were you silent or were you silenced?” oprah winfrey asked meghan markle during the duchess of sussex and her husband prince harry sat down with her for a highly anticipated and revealing interview about their falling out with the british royal family. + +what did meghan reveal about the real reason she and harry cut ties with the royals? +well, let’s just say it’s safe to say meghan is no longer keeping quiet! + +so let’s take a look at the most shocking moments from meghan and harry’s bombshell interview with oprah. + +#princeharry #meghanmarkle #royalfamily +------------------------------------------------------------------------------------------------------------------------------ +subscribe: https://www.youtube.com/channel/uc-lztlg05etwyjds1jqcv3w/featured?sub_confirmation=1 + +check out our other videos: + +the real reason amber heard is lying: https://youtu.be/jh-hynwlx5q + +12 times johnny depp tried to warn us about amber heard: https://youtu.be/0tqhcuojsra + +johnny depp thanks his supporters for defending him: https://www.youtube.com/watch?v=gwume-u9zke + +this channel intends to provide the most breaking celeb news, drama and controversies all in one place. also, information not only about celebrities from hollywood film industry but also famous people around the world. we maintain different playlists which you could come back and watch videos from your desired interest category. + +we also promise to keep our viewers entertained. thanks for taking your time to checkout the channel! + +subscribe to never miss a video.",1.0,36.0,,,,,,34.0,1.0,0.0,0.0,why prince harry and meghan markle are really speaking up against the royal family | celebrity craze,,,,,,,,,, +1086,https://www.youtube.com/watch?v=jVl-1lghG3g,0,0,{'InformOverload'},1,youtube,video,original video,"top 10 celebrities that want donald trump in jail +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +many liberal leaning celebrities have made their disdain for president donald trump very clear over the years. but as time goes on, many have gotten more vocal about their beliefs about what the future should hold for trump. and many have suggested jail time is something they strongly support. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#top10 #donaldtrump #jail #impeachment #impeached #trump #donald #cardib #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #uspolitics #america #prison + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +mackenzie smith: http://instagram.com/mackenziesmitth\ + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +daniela suarez: https://www.instagram.com/danielasuarezphoto/ + + +📱instagram: https://www.instagram.com/informoverload +📱twitter: https://twitter.com/informoverload +📱reddit: https://www.reddit.com/user/informoverloadreddit +✉️email | contact: informoverload@gmail.com",1222.0,21959.0,,,,,,20440.0,73.0,0.0,224.0,top 10 celebrities that want donald trump in jail,,,,,,,,,, +1087,https://www.youtube.com/watch?v=p1eBTX7hEB8,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"ezra miller and amber heard ruin the stand! the damage never stops! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #ezramiller",2114.0,43534.0,,,,,,40884.0,35.0,0.0,501.0,ezra miller and amber heard ruin the stand! the damage never stops!,,,,,,,,,, +1088,https://www.youtube.com/watch?v=tTQg6GyzzYs,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"join this channel to get access to perks: +https://www.youtube.com/channel/ucg2qylhnyyxksvv6ve11ijw/join + +hope you enjoyed this video. if you did please consider to become a member of the channel and join our community. + +don’t forget to like, subscribe, share and hit the notification bell. + +thank you for your support, it means more then you could imagine. + +please check out : + +tammy tips and tricks : https://instagram.com/tammy.tipsandtrips?igshid=sk5olemcpdhp + +rob’s rebellion star wars channel : + +https://youtube.com/channel/ucneeomqldbqxhdpdmxaq1pg + +rob’s rules discord : + +https://discord.gg/b2r5aubj + +twitter : @wars_everything + +email : estarwars1977@gmail.com + +#justiceforjohnnydepp +#justicefordepp",210.0,1801.0,,,,,,1429.0,8.0,0.0,154.0,audio : john campea insults the entire johnny depp/ amber heard community !!,,,,,,,,,, +1089,https://www.youtube.com/watch?v=ZP0lVVMMvkE,0,0,{'What Trend'},1,youtube,video,original video,"10 celebrities defending johnny depp against amber heard + +doesn’t it seem like the legal fight between johnny and amber will never end? their situation is only getting worse as everyday media reveals new facts and details about the former couple. so, how it's all going to sort out, or who is playing the role of the victim here ? + +we know that you are dying to know the answers to all these questions. however, we can only analyze the accusations of amber heard against johnny depp for being violent in their relationship. + +#johnnydepp #celebrity #elonmusk",88.0,3564.0,,,,,,3448.0,7.0,0.0,21.0,10 celebrities defending johnny depp against amber heard,,,,,,,,,, +1090,https://www.youtube.com/watch?v=Zv0rpS9rNg8,0,0,{'CHASEFORNEVERSTAR'},1,youtube,video,original video,"source: + +hey you made it to the description!(: thanks for checking out my video and don’t forget to like,share, and subscribe to join the fornever army, now over 450 subscribers and growing daily😈 + +my other channels +https://youtube.com/channel/uctol9yb0jk1vw95ba4pkcww +https://youtube.com/channel/ucvaznisv2ww-uzwdqicqqgg + +game with me!!! +steam: br0wn1ez +xbox : ph4nt0mr34per +garena ff : fornevastar +runescape ign: br0wn1ez + +exclusive content(support me directly for 5$ a month) +https://www.subscribestar.com/chasefornevestar +or other ways: +https://cash.app/$br0wn1ez +https://patreon.com/chaseforneverstar + +👾follow me👾 +https://twitter.com/chasefstar +https://instagram.com/chaseforneverstar +https://inkitt.com/chaseforneverstar +https://facebook.com/ph4nt0mr34per +https://cforneverstar.tumblr.com +https://storyfire.app.link/chaseforneverstar +snapchat 👻 br0wn1ez +https://parler.com/profile/chaseforneverstar/posts + +# +# +# + + + +affiliates: +| code: chaseforneverstar | + @rogueenergy +@ggbracelets +@bossboxes +@ignite +on instagram + +(5-10$ every referral) +https://link.dosh.cash/chaser32 + +(postmates gig work) +https://pmfleet.app.link/thxzynoeucb + + +disclaimer: i do not support harassment or bullying of anyone i may cover in my videos, these are purely free speech. +everything falls under fair use. +if you'd like me to use your music in my videos, feel free to leave a link in the cashapp message.(yes i charge 10$ your boy gotta eat too.) all credit to music in videos or streams is linked in description. + + +outro made by + +https://youtu.be/ol0knwfivme + +my dude’s music +their channel: + +https://youtube.com/channel/ucxxg8hdve2dv4iub-ajlcfa + + +🔥🔥🔥 + +gameplay: + +(if i or you ever need quick gameplays support this guy, he makes great content) + +https://www.youtube.com/c/nocopyrightgameplays",4.0,34.0,,,,,,30.0,0.0,0.0,0.0,was amber heard fired from aquaman 2?,,,,,,,,,, +1091,https://www.youtube.com/watch?v=izTHJaWkDzA,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"amber heard took to her social media, both twitter and instagram, to attack johnny depp and play victim... again... + +let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +☆other platforms☆ + + +•backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + +☆support the channel☆ + +•become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +•if you want to support my channel, please check out my patreon and subscribe star below: + +•patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp #thesun #ngn",414.0,4934.0,,,,,,4338.0,5.0,0.0,177.0,amber heard mocks & attacks johnny depp on social media!,,,,,,,,,, +1092,https://www.youtube.com/watch?v=gkBoxj5Uswg,0,0,{'Substanz'},1,youtube,video,original video,"willkommen zur ersten folge der neuen show: 'substanz'. wir beginnen mit dem thema 'cancel culture', bringen beispiele und argumentieren über den sinn & zweck. + +moderatoren: +till: youtube.com/c/casparfalkenstein +daniel: youtube.com/c/crashpilot + +die quellen: + +definition +de.wikipedia.org/wiki/cancel_culture +www.dictionary.com/browse/cancel-culture + +geschichte & neutraler begriff +www.nytimes.com/2020/12/03/t-magazine/cancel-culture-history.html + +gecancelte firmen +www.thedrum.com/news/2020/09/18/the-new-crisis-pr-what-should-brands-do-when-they-re-cancelled + +johnny depp vs amber heard +www.nofilter.media/posts/johnny-depp-cancelled-when-benefit-of-the-doubt-goes-to-the-accuser +deadline.com/2020/11/johnny-depp-fired-warner-bros-fantastic-beast-wife-beater-lawsuit-1234610413/ + +james gunn +www.tagesspiegel.de/kultur/nach-rausschmiss-wegen-tweets-james-gunn-bei-guardians-of-the-galaxy-wieder-an-bord/24111096.html +www.theverge.com/2018/7/20/17596452/guardians-of-the-galaxy-marvel-james-gunn-fired-pedophile-tweets-mike-cernovich + +gecancelter schüler +reason.com/2018/10/17/seneca-valley-mean-girls-false-sexual/ + +was können firmen gegen canceln tun +www.researchworld.com/the-effect-of-cancel-culture-on-brands/",7.0,39.0,,,,,,32.0,0.0,0.0,0.0,"cancel culture (warner bros., nestlè, james gunn) | substanz - folge #01",,,,,,,,,, +1093,https://www.youtube.com/watch?v=omne0ApXJR8,0,0,{'Moviex One'},1,youtube,video,original video,,24.0,4121.0,,,,,,4097.0,0.0,0.0,0.0,amber heard como mera en aquaman (2018),,,,,,,,,, +1094,https://www.youtube.com/watch?v=tAT-KfFJROo,0,0,{'Incredibly Incredible'},1,youtube,video,original video,"this video is a clip which was excluded from the cut-up, edited and leaked recording by johnny depp’s team in january. the full version was recorded by johnny depp and amber heard during their marriage (september 2015). the full recording is being used as evidence in the johnny depp v the sun uk libel case. depp decided to sue the sun for publishing an article where they brand him a ‘wife-beater’, for abusing his then wife, amber heard. + +when the cut-up/edited 46 minute version leaked in january by depp’s team, it was made to portray a certain narrative and was used as propaganda. it was leaked 6 months before the trial began and used to lead people and potential jurors to believe that it was somehow an official piece of evidence, which it was not. it was incomplete. + +if you’d like to read the official case documents, they can be found here: https://www.nickwallis.com/depp-trial + +this recording was obtained through courttv and can be found here: https://www.courttv.com/news/amber-heard-witness-statements-depp-blamed-the-monster-for-physical-verbal-abuse/ + +you can listen to the full recording here: https://youtu.be/k9pbrbmhi58 + +comments are disabled to combat abuse.",,,,,,,,1286.0,,0.0,,proof johnny depp controlled amber heard / audio,,,,,,,,,, +1095,https://www.youtube.com/watch?v=9vmDK13S72k,0,0,{'GloriousUSA'},1,youtube,video,original video,"johnny depp seeks a retrial on his libel case against the sun with evidence to prove that amber heard is a liar. johnny depp and his legal team on thursday provided ""fresh evidence"" to prove that amber heard told a ""calculated and manipulative lie"" when she said she donated her $7 million divorce settlement to charity.",4.0,92.0,,,,,,88.0,0.0,0.0,0.0,johnny depp proves amber heard lied about charity donation with 'fresh evidence',,,,,,,,,, +1096,https://www.youtube.com/watch?v=jixMI6Xfngw,0,0,"{""Fonzi's Garage""}",1,youtube,video,original video,"amber heard should have just kept it real + + + + +subscribe and hit the like button! +https://www.youtube.com/channel/uc3sshvqsijn7bvuf8gaspjg + +support channel: +https://www.paypal.me/8fonzi8​​​​ + +this video is made for entertainment and reference.",3.0,90.0,,,,,,82.0,0.0,0.0,5.0,"amber heard fired - a ""keeping it real"" segment (the reckoning) aquaman is saved! let us rejoice!",,,,,,,,,, +1097,https://www.youtube.com/watch?v=QGCE3Fo6R9k,0,0,{'Dark World'},1,youtube,video,original video,,5.0,239.0,,,,,,233.0,1.0,0.0,0.0,"amber heard , aquaman , whatsapp status , aquaman mera vertical whatsapp status , amber heard status",,,,,,,,,, +1098,https://www.youtube.com/watch?v=uS5nJ_pJ0Rw,0,0,{'FYD COMICS Y CINE'},1,youtube,video,original video,"mira mejor el directo aqui https://www.twitch.tv/fyd_corps_oficial + 💎apoyame https://www.paypal.me/fydcomicsycine +super ofertas https://www.instant-gaming.com/es/promo/black-friday/?igr=fydgames +conviértete en miembro de este canal para disfrutar de ventajas: +https://www.youtube.com/channel/ucvgkpm6ol-fmvqxbmf6c0qa/join +💎apoyame https://www.paypal.me/fydcomicsycine +unete a mis directos aqui https://www.twitch.tv/fyd_corps_oficial +😜tus likes ayudan mucho amigo 🙂 suscribete y sigueme en mi instagram 😉 📸 instagram: https://www.instagram.com/fyd_comics_y_cine/ +como la hamburguesa de joaquin phoenix https://www.youtube.com/watch?v=esdcoxkqynq +💎 unete a los fyd corps aqui https://www.youtube.com/channel/ucvgkpm6ol-fmvqxbmf6c0qa?sub_confirmation=1 +🤡compra aqui tu ropa geek https://www.beautifulhalo.com/?main_page=promotion&id=248&track=tb16561&utm_souce=youtube +🎮 descuentos en videojuegos aqui https://www.instant-gaming.com/igr/fydgames + +📸 instagram: https://www.instagram.com/fyd_comics_y_cine/ +📖 grupo facebook: https://www.facebook.com/groups/1096834820401118/ +🐦 twitter: https://mobile.twitter.com/fydcomicsycine +🎮 sigueme en mi canal de videojuegos https://www.youtube.com/channel/ucmrdugvwylxpfj7ndp8pcpq +🍤y en mi canal de comida y viajes https://www.youtube.com/channel/ucgwi8-qop-kjucksclsnltq + + + +💰 apoya mi contenido: https://www.paypal.me/fydcomicsycine + +📧 email : fydcomicsycine@outlook.es + +mi otro canal de modelismo +https://www.youtube.com/user/thegarouden + + + +#ps5 #xboxseriesx #xboxseriess @saselandia",59.0,717.0,,,,,,651.0,4.0,0.0,3.0,patriot en falcon and the winter soldier! serie de mera amber heard en hbo max - hercules disney,,,,,,,,,, +1099,https://www.youtube.com/watch?v=XEq1YxcoX44,0,0,{'TINH HOA AUDIO'},1,youtube,video,original video,"johnny depp says never-before-seen bodycam footage and brand-new police testimony “proves” the explosive fight that his ex-wife amber heard claims ended their short-lived marriage didn’t happen. +the 34-year-old actress has provided evidence in several legal cases claiming depp threw a phone at her face during a blowout fight in 2016, trashing their penthouse apartment. but depp’s legal team is now stating that the damage heard alleged happened inside their home — including red wine spilled all",15.0,275.0,,,,,,255.0,0.0,0.0,5.0,johnny depp claims lapd video disproves amber heard's domestic violence allegations in last attempt,,,,,,,,,, +1100,https://www.youtube.com/watch?v=Cpn6UBJyO5g,0,0,{'Trendy Vert'},1,youtube,video,original video,"amber heard reaction to losing aquaman 2 role as mera! +hey guys what’s up! it’s trendy vert bringing you guys a banger of a video today. first things firsts, is everybody hyped the new aquaman movie because let me tell you i am! not only is it going to be crazy, but also be very anticipating, aside from that we have a very cold topic we will be looking at how amber heard’s reaction to losing her aquaman 2 role as mera! this is a very interesting matter so sit tight and listen carefully, not will you unveil the truth but also get a judged opinion by me. + +if you enjoyed this video and would like to see more similar content in the future make sure to like and subscribe! + +trendy vert is all about the most trending news! make sure to subscribe to us to stay updated on the latest youtube and tiktok drama as well as any updates on the platforms and their famous stars! + +if you liked this video, then check out these from other creators: + - emilia clarke to take over as mera in 'aquaman 2' from amber heard? | flixet: https://www.youtube.com/watch?v=k-qjirgb3f4 + - amber heard says nobody will hire her for movie roles because of petitions! https://www.youtube.com/watch?v=jcf3uwelnac + - amber heard fired from aquaman 2... emilia clarke replaces her as mera? https://www.youtube.com/watch?v=wlh7abyufqk + +#amberheardfired #amberheardaquaman2 #amberheard #filmstreak",4.0,138.0,,,,,,129.0,3.0,0.0,2.0,amber heard reaction to losing aquaman 2 role as mera!,,,,,,,,,, +1101,https://www.youtube.com/watch?v=Kr-jwE8nh9w,0,0,{'eHacker'},1,youtube,video,original video,"amber heard slammed on twitter for shady $250,000 donation! (adam waldman tweets continue) +check out channel membership if you are keen to support the channel! +new members get their names in the credits! + +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com + +want paid promo spots? send me a mail or dm on to the info. above! (starting as low as $5! note via: paypal) + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods + +""podcast series"" means i will not appear on facecam and the edits will usually be light.",484.0,2558.0,,,,,,1935.0,1.0,0.0,138.0,"amber heard slammed on twitter for shady $250,000 donation! (adam waldman tweets continue)",,,,,,,,,, +1102,https://www.youtube.com/watch?v=O9IELHufz4A,0,0,{'Gossip Media'},1,youtube,video,original video,"jason momoa speaks on amber heard being replaced from aquaman 2!? + + +in this video we will go over jason momoa speaks on amber heard being replaced from aquaman 2!? + + +disclaimer: all footage in this video is made in a constructive, creative, transformative, use. under the united states law (section 107 of the copyright act) this video falls under fair use. + +thank you for watching and if you enjoyed our content please don’t forget to leave a like, comment, and subscribe to our channel.",18.0,556.0,,,,,,538.0,0.0,0.0,0.0,jason momoa speaks - amber heard being replaced from aquaman 2!?,,,,,,,,,, +1103,https://www.youtube.com/watch?v=pzFk7TBV5UY,0,0,{'Podcast Now'},1,youtube,video,original video,"so amber heard's mera has a british accent in zack synder's justice league. even though she never had it before, which doesn't really make any sense. so why? let me know what you think and make sure to subscribe to the channel for more content!! #mera #zacksyndersjusticeleague #amberheard + +follow us on twitch - https://www.twitch.tv/podcastnow + +subscribe to my second channel!! -https://www.youtube.com/channel/ucwl_77_rksghvimkpjcb3xw + +join our discord server! - https://discord.gg/c2de68m + +follow me on twitter - https://twitter.com/podcastnow15",183.0,9125.0,,,,,,8767.0,48.0,0.0,127.0,why does mera have an accent in zack snyder's justice league?,,,,,,,,,, +1104,https://www.youtube.com/watch?v=pBKvqE1rDlE,0,0,{'Jack of all Movies'},1,youtube,video,original video,"amber heard is known for her role as mera in aquaman. she has done lot of other movies like the rum diary, and soon the darkness, syrup etc.",15.0,1834.0,,,,,,1814.0,5.0,0.0,0.0,top 10 amber heard movies,,,,,,,,,, +1105,https://www.youtube.com/watch?v=9IHaq2Fr9NM,0,0,{'Stevie J Raw'},1,youtube,video,original video,"in the us trial of johnny depp v amber heard, amber wants to edit the testimony of witnesses! johnny depp has called for live witness testimony but amber heard wants something else. + +chla donation page - https://www.justgiving.com/fundraising/justiceforjohnnydepp + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join +art of elysium donation page - https://www.pledge.to/the-art-of-elysium + +justice for johnny depp t-shirts (proceeds go to charity): +design 1 - https://t.co/uycndh9ebj?amp=1 +design 2 - https://t.co/hdmq0wicke?amp=1 +design 3 - https://t.co/lqmeoidmje?amp=1 +design 4 - https://t.co/lkteqqdxhg?amp=1 + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#justiceforjohnnydepp #amberheard #johnnydepp",446.0,5828.0,,,,,,5328.0,2.0,0.0,52.0,amber heard wants to edit witness testimony!,,,,,,,,,, +1106,https://www.youtube.com/watch?v=J-pNBZPc_nM,0,0,{'CACHORRO MUSIC'},1,youtube,video,original video,"aquaman 2 (2022) teaser trailer - jason momoa, amber heard - film +compartilhe:https://youtu.be/j-pnbzpc_nm +------------------------------------------------------------------------------------------------ + +aquaman has been blinded in a mysterious event. years have passed and soon he regains his sight. however, damage to his land has been done. its up to him and mera to find out what happened. + +hey guys i would like to make it clear that this trailer is fan made. that means it contains clips from other movies, put together with special effects using wondershare filmora video editor and photopea (photopea.com) photo editor. + +►what is fan made movie trailer? + +in a nutshell fan made trailers are created for extreme movie fans. +that's why its not for everybody because just like pro-wrestling, some hate it some love it. +if you are into fan made trailers which means you appreciate bringing new ideas to your favorite movies. +but my trailers, are not like any other, one word to describe it, realistic. +------------------------------------------------------------------------------------------------ + +✅ se inscreva... +👍 curta... +🛎 e ative o sininho... +----------------------------------------------------------------------------------------------- +compartilhe:https://youtu.be/j-pnbzpc_nm +---------------------------------------------------------------------------------------- + +editing details: + +creating aquaman 2 was challenging because i was not into this franchsie. but my dc lover side made me appreciate this film more. i watched this film once and i thought it was decent. the fresh clips are not too hard to find since there are plenty of cosplay to chose from. to avoid making this dream trailer feel low budget i chose clips from the aquaman movie it self. such as the atlantic city. + +the music was great, despite the lack of humor the soundtrack by the equalizer 2 trailer #2 was great because it had lots of trailer fling to it. the main actor himself had lots of movies to chose from since this is the first time i made a project about him. not the first aquaman project though, i did one back in 2020 for one of the trailer style of the infinity saga. + +the line ""is only a myth"" is great connection to how aquaman is a mystical character. the film see had great lines talking about ""gods"" that perfectly fits this dream trailer. speaking of perfectly fits, the clip with aquaman attacks the bad guy we get a transition to a guy getting attacked in the water. + +video credits | aquaman | see (2019) | 3 days to kill | the hollow | the undoing | togo (2019) | candyman (2020) | creating aquaman's suit | ikon collectibles 1:1 by cosplay chris | aquaman cosplay by mike kirts | aquaman's mera costume | diy aquaman cosplay tattoos by the woodland elf | mulher maravhilha vs aquaman by franklin fernandes +music credits | the equalizer 2 trailer #2 soundtrack +---------------------------------------------------------------------------------------------------------- + +aquaman 2 (2022) teaser trailer - jason momoa, amber heard - film +aquaman 2 (2022) teaser trailer - jason momoa, amber heard - film +aquaman 2 (2022) teaser trailer - jason momoa, amber heard - film +--------------------------------------------------------------------------------------------- + +tags: + +aquaman 2,$$$cachorromusic$$$,cachorro music,moviecliks,aquaman 2,aquaman,trailer,amber heard, +jason momoa,aquaman trailer,aquaman movie trailer,aquaman trailer 2,amber heard,aquaman 2 release date, +jason momoa,aquaman 2 movie trailer,aquaman 2 news,aquaman 2 trailer,aquaman movie,aquaman 2 movie, +aquaman sequel,aquaman movie 2018 official trailer jason momoa,aquaman 2 teaser trailer,movie, +aquaman 2 official teaser trailer,aquaman official trailer,aquaman 2 in the works, +dc films,dc movies,aquaman next movie, +------------------------------------------------------------------------------------------ + +#aquaman2trailer​#jasonmamoa​#getintomovies#amberheard +------------------------------------------------------------------------------------------ + +aquaman 2 (2022) teaser trailer - jason momoa, amber heard - film + +aquaman 2 (2022) teaser trailer - jason momoa, amber heard - film + +aquaman 2 (2022) teaser trailer - jason momoa, amber heard - film",1.0,54.0,,,,,,47.0,2.0,0.0,4.0,"aquaman 2 (2022) teaser trailer - jason momoa, amber heard - film",,,,,,,,,, +1107,https://www.youtube.com/watch?v=yAs0DWxU5ss,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"more updates covering johnny depp and amber heard! +let me know what you think! + +💕 don't forget to like & subscribe! 💕 + + + +backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + + +become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +if you want to support my channel, please check out my patreon and subscribe star below: + +patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp #thesun #ngn",798.0,10088.0,,,,,,9005.0,9.0,0.0,276.0,amber heard fans attack johnny depp as more of her lies surface!,,,,,,,,,, +1108,https://www.youtube.com/watch?v=tGp5sSm65vo,0,0,{'HBO MAX DC Universe Marvel Studios'},1,youtube,video,original video,"see the final trailer for #aquaman​ now – in cinemas december 12. +youtube: https://youtu.be/tgp5ssm65vo +instagram: https://www.instagram.com/korea.muhammad.hazinsuperman24/ +facebook: https://www.facebook.com/radenmuhammadhazin +tiktok: https://www.tiktok.com/@korean.muhammad.hazin24?lang=en&is_copy_url=1&is_from_webapp=v3 +twitter: https://mobile.twitter.com/zacksnyderfrom warner bros. pictures and director james wan comes an action-packed adventure that spans the vast, visually breathtaking underwater world of the seven seas, “aquaman,” starring jason momoa in the title role. the film reveals the origin story of half-human, half-atlantean arthur curry and takes him on the journey of his lifetime—one that will not only force him to face who he really is, but to discover if he is worthy of who he was born to be…a king. the film also stars amber heard (“justice league,” “magic mike xxl”) as mera, a fierce warrior and aquaman’s ally throughout his journey; oscar nominee willem dafoe (“platoon,” “spider-man 2”) as vulko, council to the atlantean throne; patrick wilson (“the conjuring” films, “watchmen”) as orm/ocean master, the present king of atlantis; dolph lundgren (“the expendables” films) as nereus, king of the atlantean tribe xebel; yahya abdul-mateen ii (upcoming “baywatch,” netflix’s “the get down”) as the vengeful black manta; and oscar winner nicole kidman (“the hours,” “lion”) as arthur’s mom, atlanna; as well as ludi lin (“power rangers”) as captain murk, atlantean commando; and temuera morrison (“star wars: episode ii – attack of the clones,” “green lantern”) as arthur’s dad, tom curry. wan directs from a screenplay by david leslie johnson-mcgoldrick (“the conjuring 2”) and will beall (“gangster squad,” tv’s “training day”), story by geoff johns & james wan and will beall, based on characters from dc, aquaman created by paul norris and mort weisinger. the film is produced by peter safran and rob cowan, with deborah snyder, zack snyder, jon berg, geoff johns and walter hamada serving as executive producers. wan’s team behind the scenes includes such frequent collaborators as oscar-nominated director of photography don burgess (“the conjuring 2,” “forrest gump”), his five-time editor kirk morri (“the conjuring” films, “furious 7,” the “insidious” films), and production designer bill brzeski (“furious 7”). they are joined by costume designer kym barrett (“the matrix” trilogy, “the amazing spider-man”) and composer rupert gregson-williams (“wonder woman”). warner bros. pictures presents a safran company production, a james wan film, “aquaman.” the film is set to hit theaters on december 21, 2018, in 3d and 2d and imax, and will be distributed worldwide by warner bros. pictures, a warner bros. entertainment company. #aquaman2 #aquamantrailer",2.0,14.0,,,,,,12.0,0.0,0.0,0.0,aquaman – final trailer – warner bros. uk boom!!,,,,,,,,,, +1109,https://www.youtube.com/watch?v=o2YcSurHYo8,0,0,{'Christopher Murray'},1,youtube,video,original video,"part 1 of amber and meghan series. + + +https://store.playstation.com/#!/tid=cusa09209_00",0.0,17.0,,,,,,17.0,0.0,0.0,0.0,meghan markle bust amber heard out of prison,,,,,,,,,, +1110,https://www.youtube.com/watch?v=jyfi_69guT0,0,0,{'VGT TV - Giải Trí'},1,youtube,video,original video,"mới đây, trên tài khoản instagram cá nhân, nữ diễn viên amber heard đã đăng tải một bức ảnh trên phim trường cùng hàng loạt hashtag liên quan đến phim aquaman 2. điều này ngầm xác nhận nữ diễn viên vẫn sẽ là “công chúa mera” trong phần tiếp theo của bom tấn aquaman, đập tan tin đồn cô bị buộc phải rời dự án sau bê bối với chồng cũ johnny depp. + +#amberheard #johnnydepp #aquaman #vgttv #saodrama #showbiz +--------------------------------------------------------------------------- + +một sản phẩm của vietgiaitri.com + +liên hệ: +email: contact@vietgiaitri.com.vn +website: https://www.vietgiaitri.com +fanpage: https://www.facebook.com/vgttv.channel +tiktok: https://www.tiktok.com/@vgttv +android: https://play.google.com/store/apps/details?id=com.vietgiaitri +ios: https://itunes.apple.com/vn/app/id1278850956",12.0,2136.0,,,,,,2123.0,0.0,0.0,1.0,amber heard vẫn quay phần mới của aquaman mặc chỉ trích của người hâm mộ johnny depp,,,,,,,,,, +1111,https://www.youtube.com/watch?v=UKPoIplEsJg,0,0,{'Celebrity Scoop'},1,youtube,video,original video,"media networks broacasting bringing the juiciest gossip straight to your screen, celebrity scoop keeps you up to date with all things showbiz, beauty and lifestyle. each item provides a weekly fix of breaking news and plenty of exciting items about hollywood's hottest men and women. find out how to live like a star, how to dress like one and who’s hot or who's not in movie, music, fashion and tv land. there is also an in-depth celebrity profile in which we dig up all the details about a certain star. whether it's about their lifestyle, love life, favorite designers or their chosen profession, celebrity scoop covers it all.",,,,,,,,688.0,,0.0,4.0,amber heard stories,,,,,,,,,, +1112,https://www.youtube.com/watch?v=F94KMgygsrc,0,0,{'See My Shorts'},1,youtube,video,original video,,2.0,34.0,,,,,,25.0,2.0,0.0,5.0,"aquaman , mera , amber heard full screen shorts",,,,,,,,,, +1113,https://www.youtube.com/watch?v=PsGrwYsj6jg,0,0,{'Double Toasted Bites'},1,youtube,video,original video,"was amber heard fired from aquaman 2?! | double toasted bites - so there has been some talk about amber heard getting fired (or not) getting fired from aquaman 2, and although this is a big discussion again, there are even talks that on top of being removed by the big wb (warner brothers), she's also been removed from l'oreal commercials. boy there's just a lot here, but instead of taking a stand or talking about a petition, we discuss this situation, as well as johnny depp's situation, and touch on this with a conversation that you may have not been expecting! + +subscribe to double toasted for funny movie reviews, and videos on current events trending now on the internet, about the world of movies, entertainment, and comic books! + +support us on patreon to help us continue these shows and bring you even more content (animated) in the future - https://www.patreon.com/doubletoasted + +for any business enquiries please e-mail - workwithdoubletoasted@bbtvtalent.com + +want the toasty goodness? then check out the dt merch store here: +dtmerch.com + +and you can watch or listen to the full show at the links below: + +https://doubletoasted.com/shows/tom-and-jerry-the-sunday-service-live-530-pm-cst-66/ + +#amberheard +#johnnydepp +#aquaman",390.0,8500.0,,,,,,7981.0,16.0,0.0,113.0,was amber heard fired from aquaman 2?! | double toasted bites,,,,,,,,,, +1114,https://www.youtube.com/watch?v=oDiMosnYMU4,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"team amber heard threaten to sue youtubers to protect their depp lies! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",3943.0,62003.0,,,,,,57486.0,34.0,0.0,540.0,team amber heard threaten to sue youtubers to protect their depp lies!,,,,,,,,,, +1115,https://www.youtube.com/watch?v=2HBoBIsYHoE,0,0,{'Viral Vision'},1,youtube,video,original video,"johnny depp lawyers just destroyed amber heard! +it’s been a rough couple of months for johnny depp in regards to his ongoing battles with his ex-wife in amber heard. as the two are locked in a near eternal struggle in court over who was the abuser in their tumultuous relationship. depp has maintained his innocence and has given evidence to state that amber heard was the one but he keeps losing ground and court rulings. including a libel case against the uk newspaper the sun. but a new tactic might grant him a retrial. allow us to explain. be sure to like the video and subscribe to the channel + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone! a look at how the fraudulent donation of amber heard and how it might just give johnny depp he needs to go and get a retrial in his libel case. do you think that the judge will indeed allow that to happen? do you think that there is enough to get that to go through? or do you think that it won’t be enough and thus, amber heard will keep gaining ground? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",1419.0,33412.0,,,,,,31397.0,61.0,0.0,535.0,johnny depp lawyers just destroyed amber heard!,,,,,,,,,, +1116,https://www.youtube.com/watch?v=8gqwDWfYDK8,0,0,{'DELCARAJO TV'},1,youtube,video,original video,"► luis ramos ➥ https://tus10seg.com/1024893 + +00:00 el chad nivel dios +01:14 el drama de reddit +03:31 gamestop cae en picada +04:38 reggie fils-aime deja gamestop +05:10 masajeador de bebes +05:43 el festejo de hannah montana +06:47 britney spears vs su padre +07:42 el problema de sharon osbourne +09:18 entrevista a magnus mefisto (caja negra) +10:57 rechazan apelación a johnny depp, ganó amber heard y the sun + +► tus 10 segundos ➥ https://tus10segundos.com/products/delcarajotv +► se parte del team delcarajo: +➥ https://youtube.com/channel/ucuwebhxve6c69jtbpiy-y8q/join +► tienda delcarajo ➥ http://delcarajo.net + +► sigueme en: +twitter ➥ http://twitter.com/juanitosay +instagram ➥ http://instagram.com/juanitosayoficial + +► contacto: say@delcarajo.net + + +* hey, friki delcarajo... ¿que haces tan abajo? el boton de like esta mas arriba ( ͡° ͜ʖ ͡°)",8139.0,139029.0,,,,,,129657.0,204.0,0.0,1029.0,"tremendo: ¡johnny depp perdió y amber heard se ríe en su cara! hannah montana, sharon osbourne y mas",,,,,,,,,, +1117,https://www.youtube.com/watch?v=VZ7I7UG3uOg,0,0,{'Christopher Murray'},1,youtube,video,original video,"amber heard vs meghan markle fight! + + +https://store.playstation.com/#!/tid=cusa09209_00",0.0,10.0,,,,,,10.0,0.0,0.0,0.0,the heard and markle show ep. 9 (2/2),,,,,,,,,, +1118,https://www.youtube.com/watch?v=TerZ03q4-zo,0,0,{'Arbuckling'},1,youtube,video,original video,"rachael and kevin discuss the ruling of the johnny depp v ngn trial, as well as amber heard's testimony, behavior, and possible perjury, given the information that has come to light about her $7 million divorce settlement. + +link to hearing - march 18th at 10.30am u.k. time. https://m.youtube.com/channel/ucvlfietq5griekc7jvopoxg/videos + + +lost beyond pluto- https://m.youtube.com/channel/ucop24og-ylluvup4yrj2cja +spiritually empowered coaching - https://m.youtube.com/channel/ucseatdlh3kfgl17dnarfw2g +movies myths and monsters podcast - https://open.spotify.com/show/5vo0bg441eprwsuqc5hbyb?si=mrz-ayantmazimfprd9p5g&utm_source=whatsapp + +#johnnydepp #amberheard #thesun",47.0,642.0,,,,,,580.0,1.0,0.0,14.0,did amber heard commit perjury in london?,,,,,,,,,, +1119,https://www.youtube.com/watch?v=iG4aMhVIP1k,0,0,{'GAMES 4 TRAILERS'},1,youtube,video,original video,"aquaman 2 2022 teaser trailer - jason momoa, amber heard hand made +✅ link para compartilhar vídeo: https://youtu.be/ig4amhvip1k +✅ link site oficial:https://zigue.com.br/go/manual-pc + +manual do pc gamer barato +vários jogos atuais rodando em um +pc gamer barato que eu montei com técnicas avançadas de combinação de hardware, e sabe o que é mais incrível, um manual para você + usando experiência de 15 anos como técnico em informática. +agora você pode montar o seu!!! + +https://zigue.com.br/go/gamer +saiba como pessoas comuns estão vivendo profissionalmente de games + +definindo seu estilo +audiencia e negócio +produto e necessidade +criando lista e sua comunidade +cronograma de conteudos +seo para youtube +videos que vendem sem vender +viralização e autoridade +plano de 60 dias na pratica + +são mais de 20 super aulas com suporte ao aluno na sua area exclusiva do curso + +✅https://zigue.com.br/go/melhoresofertas +✅https://zigue.com.br/go/topofertas +✅https://zigue.com.br/go/topofertasdainternet +✅https://zigue.com.br/go/bemestar + + +==================================================================== +seja bem-vindo(a) ao canal + +✔ deixe seu like e compartilhe se gostou ☺ +✔ inscreva-se no canal ☺ +✔ selecione para receber notificações clicando no sininho pelo seu celular e/ou computador ☺ +=================================================================== + +❤️❤️inscreva-se no nosso canal clicando aqui: +😍😍 http://bit.ly/games4trailers👈 + +clique 👉 ✅ http://bit.ly/games4trailers✅ + + + + +==================================================================== +✅ link para compartilhar vídeo: + + +=================================================================== +© i do not own anything in the video including the audio and picture. +© if you are the owner of any of the songs or one of the photos included in this video, you have the full control. this is a right that you have and i respect that. +© if any part in the contents of this channel is your property (such as an image or distributor artist musician, label). and don't want it to be displayed here, please send me an e-mail message or a personal message and your content will be removed immediately. please do not flag my channel. + + + +========================================================================= +não clique aqui:http:http://bit.ly/games4trailers + +até próximo vídeo + + +assuntos relacionados: + +copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use.",2.0,39.0,,,,,,30.0,3.0,0.0,4.0,"aquaman 2 2022 teaser trailer - jason momoa, amber heard hand made",,,,,,,,,, +1120,https://www.youtube.com/watch?v=t729TKvIC3k,0,0,{'Celeb District'},1,youtube,video,original video,"depp and heard met while making “the rum diary” in 2011, a film based on a book by hunter s. thompson. they married in february 2015, but heard filed for divorce just over a year later, and obtained a temporary restraining order against depp after accusing him of hitting her. she said at the time, according to the associated press, that she had “endured excessive emotional, verbal and physical abuse” in the relationship. + +she withdrew those claims the day before a restraining order hearing was scheduled, and the divorce was finalized with a $7 million settlement. in a joint statement, the two declared: “neither party has made false accusations for financial gain. there was never any intent of physical or emotional harm.” +but the allegations did not go away. the sun article appeared in april 2018. a few months later, heard published an opinion piece in the washington post titled, “i spoke up against sexual violence — and faced our culture’s wrath. that has to change.” depp is suing heard for defamation in the united states over that article, which he says led to him being dropped from the “pirates of the caribbean” movie franchise. + +later, heard told the court that depp often put her in “life-threatening” situations. “i had been for years, for years, johnny’s punching bag,” she added on tuesday. on wednesday, she detailed an episode in australia in which she said he threw bottles at her “like grenades or bombs.” +in pretrial documents, heard listed 14 times when she said depp assaulted her. +the first occurred in early 2013, heard said in a pretrial statement, when the couple was sitting on a couch talking about one of depp’s tattoos. she said it had originally read “winona,” in reference to winona ryder, his former partner, but that he had changed it to read “wino.” + +heard said she had laughed during the conversation, and in response depp hit her three times. “it felt like my eye popped out,” she added of the third strike, saying it knocked her off balance and to the floor. +in later incidents, heard claims, depp grabbed her by the hair, choked her, head-butted her and repeatedly punched her, on top of emotional abuse and other controlling behavior. + +she also said that his behavior was “so confusing because when he was clean and sober, he was wonderful and that part of him i loved so much.” news group newspapers — the sun’s publisher — claims depp’s memory of the couple’s time together has been impaired by heavy drug and alcohol use. he has admitted use of both at times in the relationship, but said his tolerance for substances was high. + +depp denies the incidents. he told the court that whenever the couple had an argument he would retreat, sometimes hiding in bathrooms. “i would try to go to my own corner, as it were,” he said when asked about one incident. “i thought it was important that we separate before things got out of hand.” witnesses including a former estate manager for depp and a former assistant to heard have testified in his favor. + +depp has repeatedly portrayed heard as an aggressor, provoking arguments. in the incident in australia, depp told the court, heard threw a vodka bottle at him, severing the tip of one of his fingers. +heard denies all claims that she was violent toward him, and said that depp must have severed the fingertip himself, potentially in the process of ripping a phone off the wall and smashing it beside her face repeatedly. +at one point heard admitted she had thrown “pots and pans” at depp, but said it was “only to escape him.” she also acknowledged hitting him once but only to protect her sister, who she thought he was about to push down some stairs. “i will never forget it,” she said of that moment. “it was the first time after all these years that i actually struck him back.” + +we have got you covered with all of the celebrity news there is with all of the celebrity news latest updates. right here is where you will get all of the celebrity news 2021 has to offer. we also have all of the latest hollywood news there is on the internet. if you enjoy celebrity gossip and celeb news about you favorite celebrity this is the channel for you. + +don't forget to subscribe to our channel for more awesome content!",0.0,38.0,,,,,,36.0,1.0,0.0,1.0,the truth about the amber heard - johnny depp drama,,,,,,,,,, +1121,https://www.youtube.com/watch?v=OJWTXmRr4UQ,0,0,{'Flixet'},1,youtube,video,original video,"in today’s video are going to tell about why emilia clarke replacing amber heard as mera is good for aquaman 2. + +subscribe for more : http://bit.ly/32rc7vi +____________________________________________ + +aquaman, one of the best american superhero film is going to release its sequel. it is based on dc comics character and directed by james wan. but aquaman is facing a lot of issues due to its cast. + + +music in this video : + +track: odessa — liqwyd & scandinavianz +music provided by audio library plus +watch: https://youtu.be/jny-dp3lgcg",367.0,6637.0,,,,,,6139.0,6.0,0.0,125.0,why emilia clarke replacing amber heard as mera is good for aquaman 2 | flixet,,,,,,,,,, +1122,https://www.youtube.com/watch?v=V2-_IPg_t0E,0,0,{'Doctor Soup'},1,youtube,video,original video,"#justiceforjohnnydepp +we will be discussing amber heard and johnny depp by a lovely professional guest i have here. + +amber heard and johnny depp continue to go at it. we all know the true perpetrator, depp is innocent, heard not. learn more in this video. + + + +twitter: iamdrsoup +other awesome channels: +sec +stevie j raw +come geek some +lost beyond pluto",357.0,6783.0,,,,,,6331.0,9.0,0.0,86.0,amber heard's behavior professional analysis and interview.,,,,,,,,,, +1123,https://www.youtube.com/watch?v=mUl0RjmS5OA,0,0,{'Celebrity Craze'},1,youtube,video,original video,"amber heard suing warner bros. for aquaman 2 decision | celebrity craze + +the situation with amber heard in regards to her very public battle against ex-husband johnny depp has led many in the public eye to turn against her. mainly because in the beginning she was ‘very clearly’ via her statements. but then, things started to change when johnny depps started to provide evidence that she was the, repeatedly in fact. and as more information comes out people want heard to be punished, including her losing her role as mera in aquaman 2. but amber heard isn’t aiming to let go of that role in any way. we’ll break it down for you. be sure to like the video and subscribe to the channel! + +#amberheard #johnnydepp #justiceforjohnnydepp +------------------------------------------------------------------------------------------------------------------------------ +subscribe: https://www.youtube.com/channel/uc-lztlg05etwyjds1jqcv3w/featured?sub_confirmation=1 + +this channel intends to provide the most breaking celeb news, drama and controversies all in one place. also, information not only about celebrities from hollywood film industry but also famous people around the world. we maintain different playlists which you could come back and watch videos from your desired interest category. + +we also promise to keep our viewers entertained. thanks for taking your time to checkout the channel! + +subscribe to never miss a video.",118.0,3539.0,,,,,,3355.0,13.0,0.0,53.0,amber heard suing warner bros. for aquaman 2 decision | celebrity craze,,,,,,,,,, +1124,https://www.youtube.com/watch?v=WyE1jx9O_yI,0,0,{'dj liev'},1,youtube,video,original video,"recently it was revealed the real reason that the company had warner to fire amber heard and the most curious thing is that it is not because of his trial with johnny depp, which is why what is happening has caused great intrigue.",0.0,9.0,,,,,,9.0,0.0,0.0,0.0,by its weight! warner fired amber heard from aquaman,,,,,,,,,, +1125,https://www.youtube.com/watch?v=F1EyVBy8HUg,0,0,{'Nerdz II Men'},1,youtube,video,original video,"saturday, as we recorded, rumors were going around that amber heard had been fired from aquaman. we discuss this rumor, and more, during our nerd update. then we recap and review episode 8 of wandavision on disney +. we also get cameo's kung fu movie recommendations and more on this episode of nerdz ii men. www.patreon.com/dopepods",2.0,17.0,,,,,,15.0,0.0,0.0,0.0,"wandavision ep. 8, amber heard fired rumors, cameo's favorite kung fu movies and more!",,,,,,,,,, +1126,https://www.youtube.com/watch?v=nSND_CMD-Io,0,0,{'Nextfilm'},1,youtube,video,original video,"today we're talking about heartland season 15, heartland season 14, heartland ty dies, heartland amy and ty, heartland ty death, heartland graham wardle leaving, ty borden died, ty borden and amy fleming, graham wardle, amber marshall, heartland bloopers, how does ty die in heartland? + +hi everyone! as you know, we are all shocked by ty’s death in heartland. today we will examine amber marshall's conversations about the death of ty. audiences still can't get out of the shock of this death. we're just as bewildered as you are. how about finding out the real deal? if you want to know, this is the right place for you. let's get started! + +#heartlandseason15 #heartlandseason14 #heartlandamyandty #heartlandtydies #heartlandgrahamwardleleaving #heartland",4711.0,439760.0,,,,,,433386.0,278.0,0.0,1385.0,ty borden may return - here is why! amber marshall (amy) knew everything before ty left heartland,,,,,,,,,, +1127,https://www.youtube.com/watch?v=4z-iO-zcLKU,0,0,{'eHacker'},1,youtube,video,original video,"amber heard brags about the stand on twitter! fans battle it out! +check out channel membership if you are keen to support the channel! +new members get their names in the credits! + +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com + +want paid promo spots? send me a mail or dm on to the info. above! (starting as low as $5! note via: paypal) + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods + +""podcast series"" means i will not appear on facecam and the edits will usually be light.",639.0,5413.0,,,,,,4528.0,10.0,0.0,236.0,amber heard brags about the stand on twitter! fans battle it out!,,,,,,,,,, +1128,https://www.youtube.com/watch?v=B7arR1VddEs,0,0,{'Celebrity Craze'},1,youtube,video,original video,"proof amber heard lied about johnny depp: new bodycam footage | celebrity craze + +uncensored body camera footage has proved that amber heard lied about johnny depp. the case of johnny depp and his ex-wife in amber heard is one that has divided people in terms of who is right or wrong, who is being protected, and what this says about cases as a whole. + +mainly because at first it was made clear that johnny depp was an in the relationship, but then evidence started to pop up that it was amber heard who was the. and now, new never-before-seen evidence seems to further back up what johnny depp has been saying and as such, could further change the complexion of the case. allow us to break it down for you. be sure to like the video and subscribe to the channel! + +#amberheard #johnnydepp #justiceforjohnnydepp +-------------------------------------------------------------------------------------------------------------------------- +subscribe: https://www.youtube.com/channel/uc-lztlg05etwyjds1jqcv3w/featured?sub_confirmation=1 + +this channel intends to provide the most breaking celeb news, drama and controversies all in one place. also, information not only about celebrities from hollywood film industry but also famous people around the world. we maintain different playlists which you could come back and watch videos from your desired interest category. + +we also promise to keep our viewers entertained. thanks for taking your time to checkout the channel! + +subscribe to never miss a video.",196.0,6547.0,,,,,,6285.0,4.0,0.0,62.0,proof amber heard lied about johnny depp: new bodycam footage | celebrity craze,,,,,,,,,, +1129,https://www.youtube.com/watch?v=rRoUf4PgY4s,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard insults the judge by not proving evidence! she's scared! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #johnnydepp #amberheard",2582.0,30773.0,,,,,,27878.0,10.0,0.0,303.0,amber heard insults the judge by not proving evidence! she's scared!,,,,,,,,,, +1130,https://www.youtube.com/watch?v=9601W6sGH3E,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard paid her sister $10,000 to lie about johnny depp in court! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",4473.0,92550.0,,,,,,87226.0,47.0,0.0,804.0,"amber heard paid her sister $10,000 to lie about johnny depp in court!",,,,,,,,,, +1131,https://www.youtube.com/watch?v=B9ZaUwfDvg4,0,0,{'Viral Vision'},1,youtube,video,original video,"amber heard’s lawyer quits & exposes amber for ruining johnny depp +the case that involves amber heard and johnny depp is one that is causing all sorts of problems across many forms of media. but the longer it goes on, the more that it seems that amber heard is losing some serious ground in one form or another. not the least of which is that her credibility is going and getting put through the shredder as more pieces of evidence rise up to challenge her story in certain ways. and her lawyers might actually be doing more harm than good. but how is that possible? we’ll break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone! a look at how amber heard and her current court case may not be going the way she hoped it would go because of her lawyers and beyond. do you think she cares how badly the case is going? or is she just trying to drag it out until no one cares anymore? do you think what is going on with her legal team is telling? what do you think will be the true end result for this case? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",11142.0,410280.0,,,,,,396094.0,384.0,0.0,2660.0,amber heard’s lawyer quits & exposes amber for ruining johnny depp!?,,,,,,,,,, +1132,https://www.youtube.com/watch?v=-O4OwD_VDDk,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard busted - with proof! depp exposes her biggest courtroom lie! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #johnnydepp #amberheard",4345.0,64993.0,,,,,,60182.0,38.0,0.0,428.0,amber heard busted - with proof! depp exposes her biggest courtroom lie!,,,,,,,,,, +1133,https://www.youtube.com/watch?v=CJajipyVuqk,0,0,{'Celebily'},1,youtube,video,original video,"amber heard lifestyle 2021, age, income, house/home, boyfriend/affair, cars, family, net worth, husband, height, weight, father, mother, sister, brother, birthplace, nationality, hometown & much more. +amber heard biography 2021, home/house, house address, cars collection, bikes collection, boyfriends/affairs, mother, father, brothers, sisters, age, height, weight, body measurements, husband, hometown, birth place, nationality, religion, hobbies, salary/income, net worth, bank balance, facts and many more. + +( like --- comment --- share --- subscribe ) + +____________________________________________ +watch our more videos. +*nora fatehi luxurious lifestyle :- https://youtu.be/4-gdfxk4n64 + +*sushant singh rajput (late) luxurious lifestyle :- https://youtu.be/aczvtjy4lvo + +*sara ali khan luxurious lifestyle :- https://youtu.be/zpygwd9plnu + +*janhvi kapoor luxurious lifestyle :- https://youtu.be/exf090sedsk + +*ranveer singh luxurious lifestyle :- https://youtu.be/9bcs1qw9eio + +* the rock (wwe wrestler) luxurious lifestyle :- https://youtu.be/hgwj6o_kyny + +* dirilis ertugrul actress halime sultan luxurious lifestyle, real name, age and more :- https://youtu.be/fmkomnffpd8 + +* tom cruise luxurious lifestyle :- https://youtu.be/-dlj-o5mqzk + +* katrina kaif skin care makeup routine :- https://youtu.be/_aykdax_gvu + +* mr.faisu and team07 talking about their new upcoming song :- https://youtu.be/_x9oyqt1qhe + +* mr.faisu new police case :- https://youtu.be/_4fj2o96ofa + +* mr.faisu and katrina kaif together at one occasion :- https://youtu.be/qqqdsshoahq +____________________________________________ + +#amberheard #amberheardlifestye #lifestyle2021 #celebily #amberheardlifestye2021 + +the information in this video are those are obtained from various online sources and are not scripted. +the materials contained in this video are provided for information purpose only and does not constitute legal +or other proffesional advice on any subject matter. +we make no representations or warranties, express or implied, +regarding the truth, accuracy and completeness of the information provided and will not liable. + +all the information and images are collected from google. +for any copyright matters please contact us at:- shaikhshahzaib709@gmail.com. +note:- all the images/pictures shown in the video belongs to the respected owners and not me... i am not the owner of any pictures showed in the video.. +don't forget to like, share and subscribe to my youtube channel for more videos. + +follow us on: +1) facebook:- https://www.facebook.com/celebily-111791287068991/?view_public_for=111791287068991 +2) twitter:- https://twitter.com/celebily_1 +3) instagram:- https://www.instagram.com/celebily_1",1.0,32.0,,,,,,30.0,1.0,0.0,0.0,"amber heard lifestyle 2021, age, boyfriend/affair, income, house, car, net worth",,,,,,,,,, +1134,https://www.youtube.com/watch?v=ZfnXj-Ce8SA,0,0,{'Come Geek Some'},1,youtube,video,original video,"(split) stephen king praises heard on twiteer! backlash was huge!! + +(livestream condensed) + +join this channel to get access to perks: +https://www.youtube.com/channel/uc4ltvxoxgzobqqduv9ixowg/join + +current channel members +lynn bain +jane ruddell +donald dolan +mary turpel +ahyoka ama +sally pascoe +shelley tennant +sunshine +ali bali +penguin 322 +jane durante +sabine möller +videnthecoldone +leah veneau +hanne lærke sommer +morning tea +juanita schutte +jennifer willis +lisa lambert +susan redden +cat meissner +broly the mighty +humble bee +sarah wells +christine b-r +zombqueeen +tammy lockley +michieee +stephanie davis +bonnieb +janette tammaro +wendy postma +maureen kinross +deborah melendy +roamer mgtow +madamebebo +claire jones +mary scott +adriana adams +sarah kat +patti_c +steve kass +john le +kimmhy depp +night train blues +harbenja +l c +gelth walker +laura uk +judith hodgson +lifeofsarcasm +clairmbear +moxxie moon +anne holyday +k. kae-linn allison +megan o'shea +sylvan + +hello and welcome to come geek some! for all things geek, like and subscribe to the channel! + +please ignore or flag spam, negative, or hateful comments. we're here to have a good time. thanks everyone, and enjoy :] + +if you would like to support the channel and help us grow! +donations: https://streamlabs.com/comegeeksome + +i'm an avid adobe premiere pro user and have been for quite some time! i would recommend the software to anyone (if they have the spare money a month) + +ps4 player with pc gameplay now and again. still not used to pc gaming! + +interact with us on twitter! https://twitter.com/comegeeksome1 +twitch: https://www.twitch.tv/geeksomegaming + +#justiceforjohnnydepp #stephenking",686.0,6901.0,,,,,,5986.0,6.0,0.0,223.0,(split) stephen king praises heard on twiteer! backlash was huge!!,,,,,,,,,, +1135,https://www.youtube.com/watch?v=5Ny1vJpYkgc,0,0,"{""MTV's Teen Mom""}",1,youtube,video,original video,"amber's current relationship with gary, his wife, and her daughter leah brings tension to the teen mom og reunion stage. + +#teenmomog #teenmom2 #mtv + +paramount+ is here! stream all your favorites shows now on paramount+. try it free at https://bit.ly/3qyoeof + +subscribe to teen mom: http://bit.ly/2oem0oo + +a decade after it all began, catelynn, maci, amber, and cheyenne of teen mom og continue to share their families' triumphs and struggles with the world. on teen mom 2, jade joins kailyn, leah, briana and chelsea as the moms navigate parenting, family dynamics, their careers and their love lives. teen mom: young + pregnant chronicles the lives of ashley, brianna and kayla, along with two new moms kiaya and rachel. their stories continue tuesdays on mtv! + +more from teen mom: +like teen mom on facebook: http://bit.ly/2ypp8er +follow teen mom on twitter: http://bit.ly/2m8mqei +teen mom instagram: http://bit.ly/2kmfvfq + +#mtv is your destination for the hit series wno, vma, jersey shore, the challenge, how far is tattoo far?, teen mom and much more!",6197.0,748993.0,,,,,,739991.0,295.0,0.0,2510.0,amber & gary get into it at the reunion | teen mom og,,,,,,,,,, +1136,https://www.youtube.com/watch?v=PSHM9k1iPqQ,0,0,{'Celebrity Craze'},1,youtube,video,original video,"amber heard demands $33k to talk about toxic relationships!! | celebrity craze + +in hollywood, there are many stars that have ruined their own careers. these celebrities will do things that destroy their reputation and expose their true selves. + +in the case of amber heard, this situation is entirely different. her destruction has been more of a “slow burn."" because she’s tried so hard to convince people she’s a good girl and a victim, but is not getting exposed as actually something else entirely. + +all while, johnny depp rebuilds his reputation that amber heard tried to destroy. allow us to break it all down. be sure to like the video, hit the like button and notification bell, and subscribe to the channel! + +#amberheard #johnnydepp #justiceforjohnnydepp +------------------------------------------------------------------------------------------------------------------------------ +subscribe: https://www.youtube.com/channel/uc-lztlg05etwyjds1jqcv3w/featured?sub_confirmation=1 + +this channel intends to provide the most breaking celeb news, drama and controversies all in one place. also, information not only about celebrities from hollywood film industry but also famous people around the world. we maintain different playlists which you could come back and watch videos from your desired interest category. + +we also promise to keep our viewers entertained. thanks for taking your time to checkout the channel! + +subscribe to never miss a video.",17.0,441.0,,,,,,409.0,2.0,0.0,13.0,amber heard demands $33k to talk about toxic relationships!! | celebrity craze,,,,,,,,,, +1137,https://www.youtube.com/watch?v=02IL4CZ6xFo,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"amber heard was in zach snyder’s the justice league and fans let them know what they thought of amber heard playing mera. + +join this channel to get access to perks: +https://www.youtube.com/channel/ucg2qylhnyyxksvv6ve11ijw/join + + +hope you enjoyed this video. if you did please consider to become a member of the channel and join our community. + +don’t forget to like, subscribe, share and hit the notification bell. + +thank you for your support, it means more then you could imagine. + +please check out : + +tammy tips and tricks : https://instagram.com/tammy.tipsandtrips?igshid=sk5olemcpdhp + +rob’s rebellion star wars channel : + +https://youtube.com/channel/ucneeomqldbqxhdpdmxaq1pg + +rob’s rules discord : + +https://discord.gg/b2r5aubj + +twitter : @wars_everything + +email : estarwars1977@gmail.com + +#justiceforjohnnydepp +#justicefordepp",263.0,2021.0,,,,,,1617.0,3.0,0.0,138.0,fans blast amber heard as mera in the justice league !!,,,,,,,,,, +1138,https://www.youtube.com/watch?v=Et1ie-egVsc,0,0,{'Nam Bân'},1,youtube,video,original video,"als zeuge geladen: johnny depp hofft im rosenkrieg mit amber heard auf elon musk vorladung für den tesla-chef  hollywood-star johnny depp (57) will weiter um seine reputation und gegen seine ex-frau amber heard (34) kämpfen. nach einem erfolglosen prozess gegen die britische boulevardzeitung ""the sun"", verklagt er heard in virginia wegen verleumdung und fordert 50 millionen us-dollar von seiner ex-frau wegen eines von ihr verfassten artikels für die ""washington post"". hilfe verspricht sich depp in dem fall von tesla-chef elon musk (49). wie ""deadline"" berichtet, hat der unternehmer von depps anwälten eine vorladung erhalten.  die anwälte möchten, dass musk aussagen ""zu jeglicher kommunikation zwischen ihnen und frau heard in bezug auf herrn depp"" tätige. zudem haben sie fragen zum ""sun""-prozess und den ""vorwürfen wegen körperlichen missbrauchs oder häuslicher gewalt, die entweder von herrn depp oder von frau heard begangen wurden"". doch was hat elon musk mit der angelegenheit überhaupt zu tun? der unternehmer war nach heards scheidung von johnny depp mit der schauspielerin liiert. dass die beiden bereits während der ehe eine affäre und eine dreiecksbeziehung mit cara delevingne (28) gehabt haben sollen, bestritt musk im juni 2020 gegenüber ""page six"", dem klatschportal der ""new york post"": ""cara und ich sind freunde, aber wir waren nie intim. [...] außerdem möchte ich noch einmal betonen, dass amber und ich erst ungefähr einen monat nach ihrer scheidung angefangen haben, auszugehen. ich glaube nicht, dass ich während ihrer ehe jemals in ihrer nähe war!"" auch der kampf gegen ""the sun"" ist noch nicht vorbei  ein londoner gericht hatte anfang november 2020 eine klage depps gegen die britische boulevardzeitung ""the sun"" abgewiesen, die ihn als ""frauenschläger"" bezeichnet hatte. depp und sein anwaltsteam wollen gegen das urteil berufung einlegen, eine anhörung soll dafür im kommenden märz stattfinden. ein richter am berufungsgericht verfügte ""deadline"" zufolge, dass johnny depp und sein team eine mündliche anhörung erhalten, die zwischen dem 15. und 31. märz stattfinden und zwei stunden dauern werde. der prozess gegen die ""sun"" war zu einem weiteren rosenkrieg zwischen depp und heard ausgeartet, die von 2015 bis 2017 verheiratet waren. beide erhoben schwerwiegende vorwürfe gegeneinander. nach einem 16-tägigen prozess in london kam der richter zu dem urteil, dass die wortwahl ""im wesentlichen wahr"" gewesen sei. depps anwälte argumentierten anschließend vor dem berufungsgericht, der richter habe die vorgelegten beweise von depps ex-frau zu unkritisch akzeptiert, darüber hinaus habe er relevante beweise ignoriert oder gar nicht erst zugelassen.",0.0,8.0,,,,,,8.0,0.0,0.0,0.0,als zeuge geladen: johnny depp hofft im rosenkrieg mit amber heard auf elon musk,,,,,,,,,, +1139,https://www.youtube.com/watch?v=GhSzLpWvIOI,0,0,"{""Mr. Zod's Fandom Zone""}",1,youtube,video,original video,"amber heard reportedly angry that wb’s trying to steal her spotlight in aquaman 2 + +#fantasticbeasts3 has hit yet another set back + +check out my favorite villain besides me loki +https://youtube.com/c/lokismorningsofmischief + +check out the sarcastic pb +https://youtube.com/c/popculturepb + +check out the blogs on my website +http://www.zodsfandomzone.com/ + +plus my teespring because zod says +https://teespring.com/stores/zod-fandom-zone-store",60.0,652.0,,,,,,562.0,0.0,0.0,30.0,late night talks ft loki ( #amber heard angry that wb’s trying to steal her spotlight in #aquaman2,,,,,,,,,, +1140,https://www.youtube.com/watch?v=Grlao4wLRBc,0,0,{'sagiiovanna'},1,youtube,video,original video,"☕️ partie 1: https://www.youtube.com/watch?v=9aaaazgido0 + +playlist #givdt: https://www.youtube.com/watch?v=zxtv5cra4bq&list=pls5uat2jjzlnqvv-jqog8ccst8nawx924 + +chaine qui m'a énormément aidé pour les recherches de cette video: +https://www.youtube.com/channel/ucg0c-n_mpyyoxyf4t3jmxnq + +extraits traduction: https://youtu.be/xh9jy8cfhn0 + +💛 oi gente! + +aujourd'hui on se retrouve pour une nouvelle #givdt: gi vous dis tout +apres le cas de malu trevejo, danielle cohn, britney spears, on se retrouve pour le cas de johnny depp, je vous explique toute l'affaire en ce qui concerne le divorce et les accusations entre lui et amber heard de violences conjugales ☕️ + +j'attends surtout votre retour dans les commentaires, très important 💛 + +oubliez pas de vous abonner 🔔 + +☆ retrouvez moi sur mes réseaux: + +📱 insta: @sagiiovanna +📱 snap: @sagiiovanna +📱 twitter: @sagiiovanna +📱tik-tok: @sagiiovanna + +👩🏽‍💻 mon matériel youtube: +ring light: https://amzn.to/3izuxqa +camera principal (canon m50): https://amzn.to/35cij3i +camera vlog (canon g7x mark iii): https://amzn.to/3xfaqbq +microphone rode: https://amzn.to/35961ss +adaptateur microphone (canon g7 x mark iii) https://amzn.to/3gfhqxm + +beijos ❤️ + +#justiceforjohnnydepp",21915.0,349203.0,,,,,,325676.0,115.0,0.0,1497.0,johnny depp: agresseur ou agressé - partie 2 #givdt 40,,,,,,,,,, +1141,https://www.youtube.com/watch?v=rTI5S2XevC4,0,0,{'Bluff Central'},1,youtube,video,original video,"emilia clarke speaks out on being amber heard's replacement in aquaman 2 + +------------------------------------------------------------------------------------------------------------------------ + +johnny depp and amber heard saga +👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇 +🔥 https://youtu.be/watch?v=xovi9l5el3q&list=pl0c_x0hcmuzfpxfnlmdcijb_wa45kt7ui + +top 10 celebrity videos +👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇 +🔥https://youtu.be/watch?v=6wxusexn4go&list=pl0c_x0hcmuzdjyose9quwlux3fwzdnfj5 + +popular uploads +👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇👇 +🔥https://youtu.be/watch?v=h9tv-cw5a8u&list=pl0c_x0hcmuzd6koq8fzw4znlowvbluf75 + +don't forget to follow us on instagram 👉 https://bit.ly/3vfxi3d + +------------------------------------------------------------------------------------------------------------------------ + +james wan’s aquaman released in 2018 received positive reviews and its characters were praised and loved around the globe. aquaman starred jason momoa as arthur curry, amber heard as mera, willem dafoe as vulko, patrick wilson as orm the ocean master, dolph lundgren as nereus, yahya abdul-mateen ii as black manta, nicole kidman as atlanna, ludi lin as captain murk, and temuera morrison as tom curry. the applauded role played by the gorgeous amber heard has a separate fan base. however, the personal life of the actress is shadowing her professional life. + +the controversial divorce of the actress with johnny depp has affected both. not all love stories have a happy ending. so was the case with aquaman's “mera'' and “jack sparrow” of the pirates of the caribbean. they had met on the sets of “the rum diary”. people magazine reported that depp and heard were engaged after a picture emerged of the actress wearing an ornate engagement ring which was later confirmed by johnny depp in a video interview with the daily mail. they married in 2015 in a private ceremony. after a year heard filed a divorce case in court claiming that she is a victim of domestic abuse. on may 23, 2016, heard filed for divorce from depp and also obtained a temporary restraining order against the oscar-nominated actor. she alleged that depp had physically abused her during their relationship, and said it was usually while under the influence of drugs or alcohol. moreover, she also said that at the time of filing for divorce, an incident had recently taken place in which depp threw a phone at her leaving her with a bruised face. however, a police spokesperson told people that an investigation into the domestic incident radio call found that no crime had taken place. + +depp denied these accusations and said via his representatives that heard was attempting to secure a premature financial resolution by alleging abuse. with the internet left polarized, the case peaked when depp lost the libel case against the sun,a tabloid newspaper in the uk. . following the sparked controversy, johnny went into hot waters and lost important roles including a role from his movie “fantastic beasts 3”. disney also cleared that he will not be a part of the pirates of the caribbean franchise as well. + +however, leaked audio and several testimonies turned the tables and showed the true colors of heard. the leaked audio call showed that the situation was otherwise and it was depp who was the victim actually, not heard! amber heard whose beauty has mesmerized millions has been portrayed now as beauty with the evilness inside. consequently, a petition was signed by more than 1.8 million people to remove heard in aquaman. johnny’s fans were outraged and asked for justice for him as he is one of the most beloved actors in hollywood with several memorable roles. + +the fans of the movie aquaman wanted the warner bros to replace her with another actress. the names suggested were emilia clarke and dakota johnson. the majority of the fans want emilia clarke as mera in aquaman 2. emilia already has a successful career and is known for her roles in the seasons game of thrones, dom hemingways, sole: a star wars story, voice from a stone, terminator genisys, etc. fan-made art of emilia as mera in aquaman 2 took twitter and other social media platforms by storm. a majority of fans found her suitable for this role and wanted to see her in the upcoming movie. an image posted by ‘valentin romero art’ shows emilia clarke donned in the hexagonal suit for the mera role with an underwater crown. the suit was designed in purple color to give her costume a different look for aquaman 2. another artist bosslogic also posted a digital artwork depicting emilia as mera. an instagram user @jph_photoshop, shared his work and the fans flooded his comment box with praise with many of them wishing that clarke could play the role. dc marvel also shared a side-by-side image of heard and clarke as mera on his instagram handle. + + +#bluffcentral #amberheard #johnnydepp #justiceforjohnnydepp #emiliaclarke #aquaman2 #queenmera #metoo",26.0,2464.0,,,,,,2415.0,16.0,0.0,7.0,emilia clarke speaks out on being amber heard's replacement in aquaman 2 | bluff central,,,,,,,,,, +1142,https://www.youtube.com/watch?v=NxoqykeD3iw,0,0,{'Rumoured'},1,youtube,video,original video,"celebs who thinks amber heard is a victim + +did elon musk give amber $7 million to leave johnny and be with him?! did amber actually have an affair with james franco and why did amanda de cadenet withdraw her support from amber?! + +subscribe to thefollow: https://www.youtube.com/channel/ucjey8c5wd0k99hyvqdvi6vw?sub_confirmation=1 + +#rumored #johnnydepp #amberheard",52.0,1881.0,,,,,,1802.0,9.0,0.0,18.0,celebs who thinks amber heard is a victim,,,,,,,,,, +1143,https://www.youtube.com/watch?v=oRLok2-X4s4,0,0,{'Fanvid 101'},1,youtube,video,original video,#amberheard,646.0,30858.0,,,,,,29745.0,288.0,0.0,179.0,amber heard on set zack snyder's justice league #43,,,,,,,,,, +1144,https://www.youtube.com/watch?v=ozvWPc2PKDk,0,0,{'a Friend or Foe'},1,youtube,video,original video,"i'm just going over the most recent document added to the public for the defamation case of johnny depp vs amber heard... + +thank you for watching and showing support for the cause, i am not a bot. i am not even paid for it. i have my own opinions and i urge others to do the research behind this also. + +please leave a comment, a like, and subscribe for more content! + +#justiceforjohnny file i read: +https://www.fairfaxcounty.gov/circuit/sites/circuit/files/assets/documents/pdf/high-profile/depp%20v%20heard/cl-2019-2911-foreign-subp-prep-wasser-cooperman-mandles-pc-1-7-2021.pdf + +sign the petition +https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2 + +channel update: i don't have enough subscribers for a community tab but i do have a discussion tab if you are interested in updates!",19.0,408.0,,,,,,382.0,0.0,0.0,7.0,johnny depp vs amber heard most recent update // jan 25th // #justiceforjohnny,,,,,,,,,, +1145,https://www.youtube.com/watch?v=6Uwo0cbZNbg,0,0,{'Incredibly Incredible'},1,youtube,video,original video,"this video is a clip which was excluded from the cut-up, edited and leaked recording by johnny depp’s team in january. the full version was recorded by johnny depp and amber heard during their marriage (september 2015). the full recording is being used as evidence in the johnny depp v the sun uk libel case. depp decided to sue the sun for publishing an article where they brand him a ‘wife-beater’, for abusing his then wife, amber heard. + +when the cut-up/edited 46 minute version leaked in january by depp’s team, it was made to portray a certain narrative and was used as propaganda. it was leaked 6 months before the trial began and used to lead people and potential jurors to believe that it was somehow an official piece of evidence, which it was not. it was incomplete. + +if you’d like to read the official case documents, they can be found here: https://www.nickwallis.com/depp-trial + +this recording was obtained through courttv and can be found here: https://www.courttv.com/news/amber-heard-witness-statements-depp-blamed-the-monster-for-physical-verbal-abuse/ + +you can listen to the full recording here: https://youtu.be/k9pbrbmhi58 + +comments are disabled to combat abuse.",,,,,,,,1024.0,,0.0,,johnny depp victim blames and admits to abuse / audio,,,,,,,,,, +1146,https://www.youtube.com/watch?v=zogzngRjkx8,0,0,"{""Amber Heard's Evidence""}",1,youtube,video,original video,"amber heard's supporting evidence and humanitarian, political work",0.0,20.0,,,,,,20.0,0.0,0.0,0.0,amber heard at social good summit,,,,,,,,,, +1147,https://www.youtube.com/watch?v=kO7A7gOT29c,0,0,{'Stevie J Raw'},1,youtube,video,original video,"this video is the whitney henriquez uk witness statement - in full! + +whitney henriquez backing up her sister amber heard by telling lies, lies and more lies! + +this is one of multiple videos to be released every 2-3 days, each covering another witness statement from the johnny depp v the sun trial in the uk. + +big thanks to les for doing the voice over for each female witness. +subscribe to les - https://www.youtube.com/channel/ucseatdlh3kfgl17dnarfw2g + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join +art of elysium donation page - https://www.pledge.to/the-art-of-elysium + +justice for johnny depp t-shirts (proceeds go to charity): +design 1 - https://t.co/uycndh9ebj?amp=1 +design 2 - https://t.co/hdmq0wicke?amp=1 +design 3 - https://t.co/lqmeoidmje?amp=1 +design 4 - https://t.co/lkteqqdxhg?amp=1 + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#justiceforjohnnydepp #johnnydepp #whitneyhenriquez",249.0,2108.0,,,,,,1735.0,2.0,0.0,122.0,whitney henriquez uk witness statement - full,,,,,,,,,, +1148,https://www.youtube.com/watch?v=jw5SYWfTOok,0,0,{'Viral Network'},1,youtube,video,original video,"amber heard sentenced to 5 years in prison for bribing her sister to lie in court?! + +subscribe to viral network 👉 https://youtube.com/user/zrul90 + +what did amber heard do to johnny depp after the divorce? +amber is one who knows when to take complete advantage of a situation and reap the most benefits out of it. she did the same with johnny by asking for a divorce settlement of 7 million, which she claimed to have given to two charities. but after the lies, that fact is quite hard to believe. +the major blow-up of events occurred when she took advantage of the me too movement to expose johnny by labeling him as an abuser when they were married, which was just the beginning of this entire mess and of course, was quite clearly instigated by amber. whether it was for publicity or money we’ll never know. +amber came out with allegation after allegation, leaving depp flabbergasted at how low amber could stoop, and for a long while kept quiet. she has faked bruises to prove her innocence, posted lies about depp’s apparent abusive nature in the washington post, and even claimed she had tried to assault her sister which we shall get into the deets of later on.",7.0,201.0,,,,,,188.0,2.0,0.0,4.0,amber heard sentenced to 5 years in prison for bribing her sister to lie in court?!,,,,,,,,,, +1149,https://www.youtube.com/watch?v=O-487SB8fxE,0,0,{'HUN13R'},1,youtube,video,original video,"today we look back into the johnny depp and amber heard case and how it developed over time, with amber losing her job and even a possible jail sentence. so strap in and let's talk about what happened and how our efforts to bring justice paid of. + +previous video on this case: https://www.youtube.com/watch?v=s_0xgtajagq&t=117s",9.0,88.0,,,,,,77.0,0.0,0.0,2.0,is this the end of amber heard?,,,,,,,,,, +1150,https://www.youtube.com/watch?v=sLtnO0MePVs,0,0,{'Tesla Cam'},1,youtube,video,original video,"amber heard reacts to being fired from aquaman 2 + +amber heard has been in the spotlight recently due to her recently getting fired from the movie aquaman. this news comes after some infromation was spread about amber heard and johnny depp. the two went to court to get their problems figured out and well it seems that amber heard was in the wrong. amber heard had a big role on aquaman which shows how extreme the consequences are for amber heards action in the marriage with johnny depp.",37.0,857.0,,,,,,807.0,3.0,0.0,10.0,amber heard reacts to being fired from aquaman 2,,,,,,,,,, +1151,https://www.youtube.com/watch?v=DvLb__Rl4Lg,0,0,{'CelebCraze'},1,youtube,video,original video,"why amber heard will be fired from aquaman (johnny depp and amber heard rumors). amber heard lies about johnny depp. we'll break down how we know amber heard lies about johnny depp. + +0:00 intro +0:39 two fake incidents +2:07 body language of amber heard +5:28 conversations with elon musk +7:10 disturbing proof + +recent videos: +amber heard busted again! johnny depp's lawyer catches big lie! huge win!!! +https://www.youtube.com/watch?v=tbvazc6mncs + +amber heard vs johnny depp: comparison of depositions +https://www.youtube.com/watch?v=x7pwjy8g3gk + +johnny depp, amber heard react to leaked audio +https://www.youtube.com/watch?v=pfwvoehcejw + +#amberheard #johnnydepp #aquaman + +why amber heard will be fired from aquaman. amber heard lies about johnny depp. + +------------ +we always appreciate your likes and comments! + +please make sure to subscribe and share to celebcraze: https://youtube.com/channel/ucbxnfjh6eidsfye8ytx5jia + +johnny depp defamation case",4.0,37.0,,,,,,28.0,0.0,0.0,5.0,why amber heard will be fired from aquaman (johnny depp and amber heard rumors),,,,,,,,,, +1152,https://www.youtube.com/watch?v=m2AEQY__hJc,0,0,{'Flixet'},1,youtube,video,original video,"in this video, we are going to discuss the new update on the johnny depp and amber heard case. + +subscribe for more : http://bit.ly/32rc7vi +________________________________________________________ + +johnny depp's lawyers argued that amber heard had not donated her $7 million divorce settlement to charity and this had prejudiced the case against depp. keep watching this video as we will be discussing more it. + + +music in this video : + +track: odessa — liqwyd & scandinavianz +music provided by audio library plus +watch: https://youtu.be/jny-dp3lgcg",102.0,2199.0,,,,,,2080.0,3.0,0.0,14.0,amber heard in trouble after johnny depp’s this decision | flixet,,,,,,,,,, +1153,https://www.youtube.com/watch?v=QClMDEIG0U8,0,0,{'Newsberry'},1,youtube,video,original video,"हॉलीवुड अभिनेत्री एंबर हर्ड और जॉनी डेप पिछले कुछ समय से तलाक और कानूनी विवाद को लेकर चर्चा में बने हुए हैं। जॉनी डेप पर उनकी पूर्व पत्नी एंबर हर्ड के साथ हिंसा करने का आरोप है। बता दें कि इस केस के बाद से ही जॉनी डेप ने वार्नर ब्रदर्स के 'फैंटास्टिक बीस्ट्स' फ्रेंचाइजी से इस्तीफा दे दिया था। वहीं अब एबंर हर्ड के प्रोफेशनल करियर पर भी इस केस का असर पड़ रहा है। ऐसी चर्चा है कि एंबर हर्ड को 'एक्वामैन 2' से बाहर निकाल दिया गया है। + + + +बता दें कि कुछ समय पहले खबर आई थी कि एंबर हर्ड फिल्म एक्वामैन के सीक्ववल में एक बार फिर 'मेरा 'का किरदार निभाते नजर आएंगी। वहीं अब खबर आ रही है कि एंबर को जेसन मेमोआ की इस सुपरहिट फिल्म के सीक्वल से बाहर कर दिया गया है। + +एक्वमैन 2' से एंबर को बाहर करने की दो वजह सामने आई है। पहल वजह जॉनी डेप के साथ चल रहा उनका कानूनी विवाद और दूसरी वजह ये बताई जा रही है कि एंबर हर्ड ने फिल्म को लेकर जो कॉन्ट्रैक्ट साइन किया था उन्होंने उसका उल्लंघन किया है। दरअसल बताया जा रहा है कि एंबर ने अपने शरीर का ख्याल नहीं रखा और उन्होंने काफी वजन बढ़ा लिया है। जबकि उनके कॉन्ट्रैक्ट में साफ तौर पर लिखा था कि शूटिंग से पहले उन्हें सही आकार में रहना है। + +दूसरी तरफ ये खबर भी सामने आ रही है कि एंबर हर्ड की जगह इस फिल्म में 'गेम ऑफ थ्रोन्स' की अदाकारा एमिलिया क्लार्क को कास्ट किया जा सकता है। बता दें कि जॉनी डेप ने 2018 की एक खबर को लेकर द सन अखबार के प्रकाशक, न्यूज ग्रुप न्यूजपेपर्स और उसके कार्यकारी संपादक डान वूटन पर मुकदमा दायर किया था। इसमें आरोप लगाया गया था कि उन्होंने (जॉनी डेप) अपनी पूर्व पत्नी एंबर हर्ड के प्रति हिंसक बर्ताव और अपमानजनक भाषा का प्रयोग किया। अखबार में छपी खबर का जॉनी डेप ने पूरी तरह से खंडन किया था और बातचीत में कहा था कि उन्होंने ऐसा कभी नहीं किया। वहीं हर्ड का कहना था कि साल 2013 से 2016 के बीच जॉनी ने उनके संग मारपीट की थी। + +keywords: +who is amber heard in hindi, +kaun hai amber heard, +kon hai amber heard, +amber heard kaun hai, +amber heard kon hai, +amber heard aquaman 2 news in hindi, +aquaman 2 news in hindi, +amber heard huyi aquaman 2 se bahar,",4.0,77.0,,,,,,72.0,0.0,0.0,1.0,kaun hai amber heard | amber heard fired from 02 movies,,,,,,,,,, +1154,https://www.youtube.com/watch?v=mQ1p4H50Cgk,0,0,{'Doctor Soup'},1,youtube,video,original video,"#justiceforjohnnydepp +subscribe! +in this video i will discuss what makes people good people, and what makes people bad people: amber heard and johnny depp. this is simply research and not professional/legal advice. i am speaking about terminology and ideas that exist. + +what makes a person want to ruin someone else, in this case, amber heard attempting to ruin johnny depp? has she succeeded? +twitter: iamdrsoup +instagram:shelbyyoutube3",296.0,3514.0,,,,,,3118.0,3.0,0.0,97.0,analysis: why did amber heard ruin johnny depp?,,,,,,,,,, +1155,https://www.youtube.com/watch?v=v-H9-e1waL4,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"news and updates on amber and johnny depp! + +let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +☆other platforms☆ + +•backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + +☆support the channel☆ + +•become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +•if you want to support my channel, please check out my patreon and subscribe star below: + +•patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp",469.0,6049.0,,,,,,5373.0,16.0,0.0,191.0,a small loss for johnny depp as lapd tell amber heard to bend over!,,,,,,,,,, +1156,https://www.youtube.com/watch?v=MB7xHbT3daU,0,0,{'Theresa L. Dowling'},1,youtube,video,original video,,0.0,58.0,,,,,,41.0,10.0,0.0,7.0,proof johnny depp is violent for berchy zgb amber heard playlist!!,,,,,,,,,, +1157,https://www.youtube.com/watch?v=NjOKc7ZoBVw,0,0,{'eHacker'},1,youtube,video,original video,"what does amber heard really think about new big evidence against her? + +check out channel membership if you are keen to support the channel! +new members get their names in the credits! + +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com +donate direct to support : coming soon! + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods",611.0,6057.0,,,,,,5223.0,3.0,0.0,220.0,what does amber heard really think about new big evidence against her?,,,,,,,,,, +1158,https://www.youtube.com/watch?v=3beBArjSd60,0,0,{'Celeb Central'},1,youtube,video,original video,"amber heard lawyers quit and say that she never stood a chance (interview) + +johnny depp’s defamation court case against amber heard just hit another snafu after briefly being held up due to global events, only recently getting the greenlight to go to trial. the new bump in the road is because amber heard’s legal team, headed up by roberta kaplan but also including john quinn, julie fink, davida brook, have quit. roberta kaplan is a well-known lawyer. she’s associated with the times up movement in los angeles and co-founded that movement’s legal defense fund. however, the defamation case against amber heard isn’t happening in los angeles. + +per documents, amber heard signed off on and is fine with the change. instead of being represented by kaplan hecker and fink ll she will switch to local counsel. the organization cited “travel and logistics” becoming “more costly in light of the pandemic” as the reasons for bowing out. make sure to watch the whole video and see why amber heard's lawyers quit and exposed her. in addition, do us a favor and like the video and subscribe and turn on the notification bell. we’ll see you in the next video! + +#amberheard +#johnnydepp + +related videos: + +amber heard's lawyers quit & expose her (interview) +https://www.youtube.com/watch?v=j_xof43vv8w + +amber heard's lawyers quit & expose her (interview) reaction!!! +https://www.youtube.com/watch?v=bdz_z9nllzg + +top 10 celebrities who defended johnny depp +https://www.youtube.com/watch?v=uj9kutxlulw + +celebrities who defended amber heard +https://www.youtube.com/watch?v=52k_6mntyf4 + +more celebrities who defended johnny depp against amber heard!!! +https://www.youtube.com/watch?v=tzqaslwfhig + + +i do not take any ownership of the music displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes only.",2264.0,96226.0,,,,,,93311.0,221.0,0.0,430.0,amber heard lawyers quit and say that she never stood a chance (interview),,,,,,,,,, +1159,https://www.youtube.com/watch?v=lJSb_VH-P_c,0,0,{'Doctor Soup'},1,youtube,video,original video,"please subscribe: + +raven symoné noticed amber heard in a parking lot while she was charging her tesla. they both were charging, when she noticed amber behaving strangely. raven hints at amber heard being the problem and johnny depp being the victim. i am very curious if raven is on depp's side; it appears she trolled amber heard in this video. +the best part is she took a photo with amber. + +check out their channel here: + +https://www.youtube.com/channel/ucpi3tk8asga2bfbtykknxcg/videos#justiceforjohnnydepp +#johnnydepp #amberheard",1285.0,23165.0,,,,,,21544.0,26.0,0.0,310.0,raven symoné disses amber heard and supports johnny depp?! amber seen screaming!,,,,,,,,,, +1160,https://www.youtube.com/watch?v=flVwJXdlVGc,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard sues johnny depp! judge defends action, saying self-defense doesn't matter! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",2342.0,44836.0,,,,,,42053.0,21.0,0.0,420.0,"amber heard sues johnny depp! judge defends lawsuit, saying self-defense doesn't matter!",,,,,,,,,, +1161,https://www.youtube.com/watch?v=sS5J4ZgimDk,0,0,{'DELCARAJO TV'},1,youtube,video,original video,"➡️ dani: https://tus10seg.com/1026978 + +00:00 ¿y que? +00:34 el futuro del iphone +01:10 mejoras en google chrome +01:53 alberto fernandez y el fin de la argentina +05:44 el engaño de cnn +06:48 elon musk vs bill gates +07:34 la separación de jennifer lopez +08:11 la revelación del divorcio de kanye west y kim kardashian +10:51 ¿qué pasa con amber heard? + +► tus 10 segundos ➥ https://tus10segundos.com/products/delcarajotv +► se parte del team delcarajo: +➥ https://youtube.com/channel/ucuwebhxve6c69jtbpiy-y8q/join +► tienda delcarajo ➥ http://delcarajo.net + +► sigueme en: +twitter ➥ http://twitter.com/juanitosay +instagram ➥ http://instagram.com/juanitosayoficial + +► contacto: say@delcarajo.net + + +* hey, friki delcarajo... ¿que haces tan abajo? el boton de like esta mas arriba ( ͡° ͜ʖ ͡°)",6947.0,90213.0,,,,,,82079.0,151.0,0.0,1036.0,wow: ¿entrevistare a amber heard? elon musk acaba con bill gates y kanye west es dios.,,,,,,,,,, +1162,https://www.youtube.com/watch?v=ktkIcfA9KpM,0,0,{'Comic Book Nostalgia'},1,youtube,video,original video,"in a recent rumor, the news that amber heard will be getting a dc spin-off show with her character ""mera"" on hbomax has fans wide eyed. the actress has been embroiled in a ton of drama recently and it appears that dc films might be doubling down and giving the aquaman actress her own series exploring the character and life on atlantis. + +subscribe to cbn ▶ https://www.youtube.com/channel/ucyvlrun4o1s8hea8w6p-jua/?sub_confirmation=1 + +develop those super skills on skillshare! - https://skillshare.eqcm.net/c/2466300/298081/4650 +join audible and get two free audio books ▶ https://amzn.to/31gidfx +support the channel ▶ : https://www.patreon.com/comicbooknostalgia + +connect with us: +discord - https://discord.gg/tdztku +twitter - https://www.twitter.com/cbnostalgia +facebook - https://www.facebook.com/comicbooknostalgia/ + +we are a participant in the amazon services llc associates program, an affiliate advertising program designed to provide a means for us to earn fees by linking to amazon.com and affiliated sites.” except for this disclosure, you will not make any public communication with respect to this agreement or your participation in the associates program. you will not misrepresent or embellish our relationship with you (including by expressing or implying that we support, sponsor, or endorse you), or express or imply any affiliation between us and you or any other person or entity except as expressly permitted by this agreement. + +important: all images and/or video used is property of their rightful owners. if you would like direct the credit on something specific please contact us through our email and we will respond as soon as we can. + +fair use copyright notice +the copyright laws of the united states recognizes a “fair use” of copyrighted content. section 107 of the u.s. copyright act states: + +“notwithstanding the provisions of sections 106 and 106a, the fair use of a copyrighted work, including such use by reproduction in copies or phonorecords or by any other means specified by that section, for purposes such as criticism, comment, news reporting, teaching (including multiple copies for classroom use), scholarship, or research, is not an infringement of copyright.” + +this video and our youtube channel in general may contain certain copyrighted works that were not specifically authorized to be used by the copyright holder(s), but which we believe in good faith are protected by federal law and the fair use doctrine for one or more of the reasons noted above. +if you have any specific concerns about this video or our position on the fair use defense, please contact us over on twitter so we can discuss amicably. thank you.",30.0,301.0,,,,,,236.0,7.0,0.0,28.0,amber heard mera series coming to hbomax? dc films rumor report,,,,,,,,,, +1163,https://www.youtube.com/watch?v=-1uzuNX6EtA,0,0,{'SEC'},1,youtube,video,original video,"part 1 of the timeline of texts and calls https://youtu.be/atrklrhjxgy + +join this channel to get access to perks: +https://www.youtube.com/channel/ucseatdlh3kfgl17dnarfw2g/join + +tip jar ~ tips and donations are not expected but greatly appreciated. +https://paypal.me/lesleepowers + + +➤twitter + https://twitter.com/spirituallyemp1 + +➤for one on one coaching with me + https://bookwithspirituallyempoweredcoaching.as.me/ + +➤email me +support@empowerandthrive.ca + +➤ instagram +www.instagram.com/spiritually_empowered/ + +#justiceforjohnnydepp",591.0,5417.0,,,,,,4703.0,2.0,0.0,121.0,"amber heard the who, what where of tro week",,,,,,,,,, +1164,https://www.youtube.com/watch?v=dv2DuVL1xSg,0,0,{'StarsTube'},1,youtube,video,original video,"amber heard fired from jason momoa’s blockbuster franchise following the johnny depp row + +amber heard and johnny depp's divorce was major news a few months back. following the lawsuit, johnny depp had to face a lot of trouble on the professional front and his fans were not at all happy about it. depp had lost a libel case against the sun over a headline that ascribed him as a ""wife-beater."" which further resulted in warner bros. asking him to resign from fantastic beasts 3. this was not taken well by his fans who then started a petition calling for the removal of amber heard from warner bros' aquaman 2. now, rumour has it that this might become true. following the johnny depp row, petition to remove amber heard from aquaman 2 crosses 1 million signatures! + +also read | zack snyder’s justice league trailer: batman, superman, wonder woman and other dc superheroes team up for some action, joker adds hint of evil (watch video) + +while the petition or the libel might not be the reason for amber's exit from the film, it has been learned that she indeed has been fired from the film. reports suggest that amber gained a little weight before the commencement of the shoot and the makers are not keen on continuing to work with her. not just that, it is being said that emilia clarke who i known popularly for her role as daenerys targaryen from game of thrones is all set to replace her. amber essayed the character of mera in the jason mamoa starrer. + +a source told australian site sausage roll, ""amber heard did not pass her physical examination. she’s put on some pounds and is in terrible shape. there is a clause in her contract which says she is required to be in good form ahead of shooting and she violated that."" it was also revealed that amber's role was a very demanding one in terms of action and stunts and the production house terminated the contract after seeing how the actress was not in shape to take up the role. popcorned planet confirmed the same but no clarity on emilia clarke being a replacement for the actress has been given yet. fans trend 'justice for johny depp' after audio clip of amber heard admitting she hit him surfaces. + +also read | zack snyder's justice league: director confirms streaming date of 'snyder cut' on hbo max through intriguing posters! + +talking about the petition, addressed to courtney simmons, svp of publicity & communications for dc warner bros. and paul mcguire, corporate communications of dc entertainment - discusses how amber is a domestic abuser and warner brothers should not glamorize her anymore. the petition has already crossed the 1 million signatures mark! + +earlier in 2019, it was reported that depp had called on warner bros. to remove amber from aquaman. but this plea did not work in his favour and amber went on to co-star in the billion-dollar superhero blockbuster film as mera. aquaman 2 arrives in theatres on december 16, 2022.",5.0,1042.0,,,,,,1034.0,1.0,0.0,2.0,amber heard 2021 new,,,,,,,,,, +1165,https://www.youtube.com/watch?v=j_XOf43VV8w,0,0,{'Viral Vision'},1,youtube,video,original video,"amber heard's lawyers quit & expose her (interview) +amber heard has been working hard to deliver a certain kind of message in the last several years. mainly in that she is at the hands of johnny depp. when he tried to dispute this but as many people are now realizing, a lot of amber heard’s arguments and claims in court and beyond don’t add up or make sense. and even twitter is getting involved in this! we’ll break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, a look at the arguments of amber heard and how the twitter lawyers were knocking them down one by one. do you think that this will go and help the case against? do you think that it’s rather hilarious that twitter lawyers are getting involved in this very twisted case? what do you think is going to happen next? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",9930.0,267511.0,,,,,,254918.0,1194.0,0.0,1469.0,amber heard's lawyers quit & expose her (interview),,,,,,,,,, +1166,https://www.youtube.com/watch?v=YInTSG2_c74,0,0,{'eHacker'},1,youtube,video,original video,"amber heard and elon musk went to chile too! a trip revisited! +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com + +want paid promo spots? send me a mail or dm on to the info. above! (starting as low as $5! note via: paypal) + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods + +for those interested in why i dislike and criticise disney star wars (link below): + +https://disneystarwarsisdumb.wordpress.com/",483.0,5104.0,,,,,,4437.0,11.0,0.0,173.0,amber heard and elon musk went to chile too! a trip revisited!,,,,,,,,,, +1167,https://www.youtube.com/watch?v=O09-veNG9dE,0,0,{'Stevie J Raw'},1,youtube,video,original video,"let's come together and help the kids of chla (childrens hospital los angeles) with a charity stream on the 17th april. + +if even just a third of johnny depp's instagram followers donate $1 dollar we could raise the $3.5million that they were supposed to get from amber heard. + +chla donation page - https://www.justgiving.com/fundraising/justiceforjohnnydepp + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join + +tubebuddy - https://www.tubebuddy.com/steviejreviews + +art of elysium donation page - https://www.pledge.to/the-art-of-elysium + +justice for johnny depp t-shirts (proceeds go to charity): +design 1 - https://t.co/uycndh9ebj?amp=1 +design 2 - https://t.co/hdmq0wicke?amp=1 +design 3 - https://t.co/lqmeoidmje?amp=1 +design 4 - https://t.co/lkteqqdxhg?amp=1 + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#justiceforjohnnydepp #chla #charitystream",107.0,597.0,,,,,,467.0,0.0,0.0,23.0,let's help! the kids - chla charity stream #justiceforjohnnydepp,,,,,,,,,, +1168,https://www.youtube.com/watch?v=2dkHwDi4-QY,0,0,{'Le Point'},1,youtube,video,original video,"johnny depp est prêt à tout pour rétablir son honneur, quitte à convoquer l'un des plus grands patrons devant la justice. selon le média « deadline », l'acteur assigne elon musk dans le cadre de son procès en appel contre le « sun », qui avait accusé depp d'être un « cogneur de femmes ». une étiquette accolée après son divorce houleux avec amber heard, dans un feuilleton médiatique largement couvert par la presse ces dernières années. https://www.lepoint.fr/people/entre-johnny-depp-et-elon-musk-le-torchon-brule-22-02-2021-2414946_2116.php suivez nous sur : ☞ youtube : https://www.youtube.com/c/lepoint/ ☞ facebook : https://www.facebook.com/lepoint.fr/ ☞ twitter : https://twitter.com/lepoint ☞ instagram : https://www.instagram.com/lepointfr ☞ www.lepoint.fr",35.0,7667.0,,,,,,7612.0,6.0,0.0,14.0,"entre johnny depp et elon musk, le torchon brûle",,,,,,,,,, +1169,https://www.youtube.com/watch?v=n1O2kbHbEH0,0,0,{'What About'},1,youtube,video,original video,"abuser amber heard teases aquaman 2 return with jason momoa's support - warner bros. supporting domestic violence + +read more about it here: https://cosmicbook.news/amber-heard-censors-instagram-aquaman-2?fbclid=iwar00vmfq_p1yls4sj7d4stmihs4jfoaxurylv3uumod98daogjotj2dj3yi +- +- +- +- +#amberheardaquaman2 #amberheardjohnnydepp #amberhearddomesticviolence #johnnydeppfired #marilynmansonfired #timothyhuttonfired #jasonmomoasupportsamberheard #amberheardnotfired #asiaargentoaccused #asiaargentojimmybennetttexts #amberheardaquaman #amberheardinstagram #fandommenace #comicsgate #thefandommenace #entertainmentnews #entertainment #movienews #rant #defundhollywood #marilynmansonfiredfromamericangods #asiaargentometoomovement #amberheard #johnnydepp #marilynmanson #timothyhutton #cancelculture #ezramillerchokesfan #celebritynews #cancelledcelebrities",4.0,129.0,,,,,,116.0,0.0,0.0,9.0,"not fired amber heard teases aquaman 2 but johnny depp, marilyn manson & timothy hutton get fired",,,,,,,,,, +1170,https://www.youtube.com/watch?v=wapIt9JXzpc,0,0,{'Late Night with Seth Meyers'},1,youtube,video,original video,"amber ruffin recaps prince harry and meghan markle’s entire bombshell interview with oprah in under a minute. + +late night with seth meyers. stream now on peacock: https://bit.ly/3erp2gx + +subscribe to late night: http://bit.ly/latenightseth + +watch late night with seth meyers weeknights 12:35/11:35c on nbc. + +get more late night with seth meyers: http://www.nbc.com/late-night-with-seth-meyers/ + +late night on social +follow late night on twitter: https://twitter.com/latenightseth +like late night on facebook: https://www.facebook.com/latenightseth +follow late night instagram: http://instagram.com/latenightseth +late night on tumblr: http://latenightseth.tumblr.com/ + +late night with seth meyers on youtube features a-list celebrity guests, memorable comedy, and topical monologue jokes. + +get more nbc +like nbc: http://facebook.com/nbc +follow nbc: http://twitter.com/nbc +nbc tumblr: http://nbctv.tumblr.com/ +youtube: http://www.youtube.com/nbc +nbc instagram: http://instagram.com/nbc + +amber ruffin recaps oprah’s prince harry and meghan markle interview- late night with seth meyers +https://youtu.be/wapit9jxzpc + + +late night with seth meyers +http://www.youtube.com/user/latenightseth",15679.0,442785.0,,,,,,425967.0,306.0,0.0,833.0,amber ruffin recaps oprah’s prince harry and meghan markle interview,,,,,,,,,, +1171,https://www.youtube.com/watch?v=TSVA_jz3KX8,0,0,{'TheQuartering'},1,youtube,video,original video,"well it looks like one of the biggest lies amber heard has told just got debunked by new bodycam footage released. check out sheath! https://thld.co/sheath_thequartering + +the #1 way to support this channel is backing me on subscribestar +https://www.subscribestar.com/thequartering + +become a youtube member! it's the #2 best way to support! +https://www.youtube.com/channel/ucfwe_odi1ytbdjkzusi1nag/join + +follow me +parler-https://parler.com/profile/thequartering/ +twitter-https://twitter.com/thequartering +discord-https://discord.gg/d3tnuwdvzm +subreddit-http://reddit.com/r/thequartering +politics channel -https://www.youtube.com/channel/uc577sigte1cjpdosladwndw +odysee- https://odysee.com/@thequartering:1 +bitchute- https://www.bitchute.com/channel/1t4g52b7i3ox/",11302.0,132830.0,,,,,,120261.0,178.0,0.0,1089.0,breaking! bodycam footage proves amber heard lied! this is massive!,,,,,,,,,, +1172,https://www.youtube.com/watch?v=6JlrYRnqty8,0,0,{'eHacker'},1,youtube,video,original video,"amber heard stan tries to frame remove amber petition! +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com + +want paid promo spots? send me a mail or dm on to the info. above! (starting as low as $5! note via: paypal) + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods + +for those interested in why i dislike and criticise disney star wars (link below): + +https://disneystarwarsisdumb.wordpress.com/",468.0,4002.0,,,,,,3373.0,2.0,0.0,159.0,amber heard stan tries to frame remove amber petition!,,,,,,,,,, +1173,https://www.youtube.com/watch?v=xlwF2JdShAg,0,0,{'Come Geek Some'},1,youtube,video,original video,"over the last 24 or so hours, adam waldman and a host of others have been posting +snippets on twitter, all regarding ah and her donation to the childrens hospital los angeles. + + +join this channel to get access to perks: +https://www.youtube.com/channel/uc4ltvxoxgzobqqduv9ixowg/join + +current channel members +hanne lærke sommer +morning tea +juanita schutte +jennifer willis +lisa lambert +susan redden +cat meissner +broly the mighty +humble bee +sarah wells +christine b-r +zombqueeen +tammy lockley +michieee +stephanie davis +bonnieb +janette tammaro +wendy postma +maureen kinross +deborah melendy +roamer mgtow +madamebebo +claire jones +mary scott +adriana adams +sarah kat +patti_c +steve kass +john le +kimmhy depp +night train blues +harbenja +l c +gelth walker +laura uk +judith hodgson +lifeofsarcasm +clairmbear +moxxie moon +anne holyday +k. kae-linn allison +megan o'shea +sylvan + +hello and welcome to come geek some! for all things geek, like and subscribe to the channel! + +please ignore or flag spam, negative, or hateful comments. we're here to have a good time. thanks everyone, and enjoy :] + +if you would like to support the channel and help us grow! +donations: https://streamlabs.com/comegeeksome + +i'm an avid adobe premiere pro user and have been for quite some time! i would recommend the software to anyone (if they have the spare money a month) + +ps4 player with pc gameplay now and again. still not used to pc gaming! + +interact with us on twitter! https://twitter.com/comegeeksome1 +twitch: https://www.twitch.tv/geeksomegaming",538.0,4942.0,,,,,,4316.0,2.0,0.0,86.0,ah lied about donation!! never paid it!!!?,,,,,,,,,, +1174,https://www.youtube.com/watch?v=lvx1PBew8Sg,0,0,{'Smile Please'},1,youtube,video,original video,,4.0,96.0,,,,,,92.0,0.0,0.0,0.0,aquaman mera whatsapp status in vertical | amber heard,,,,,,,,,, +1175,https://www.youtube.com/watch?v=-B1LFjDUh9g,0,0,{'YellowFlash 2'},1,youtube,video,original video,"today was the day of johnny depp's appeal against the sun in the uk! will amber heard be able to get the decision she wants, or will depp finally get justice? + +how to support +►check out my store: https://teespring.com/stores/yellowflash-merch +►check out my patreon: https://www.patreon.com/yellowflashcomics + +where to find me +►check out my twitch: https://www.twitch.tv/yellowflashtwo +►follow me on twitter: @yellowflashguy +►follow me on minds: https://www.minds.com/yellowflash/ +►follow me on odysee: https://odysee.com/@yellowflash:8?r=ebxc2ze5cbcuihj7wkc7kcageacisrvk +►follow me on bitchute: https://www.bitchute.com/channel/bwecegsvy8ab/ +►follow me on parler: https://parler.com/profile/yellowflash +#amberheard #johnnydepp #justiceforjohnnydepp",4137.0,70367.0,,,,,,65657.0,42.0,0.0,531.0,johnny depp appeal finally brings justice?! amber heard charity lie exposed!,,,,,,,,,, +1176,https://www.youtube.com/watch?v=Tg3TBEiIAEc,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard bombshell that ends it all! busted lying under oath! this is depp winning! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #johnnydepp #amberheard",4638.0,64915.0,,,,,,59694.0,28.0,0.0,555.0,amber heard bombshell that ends it all! busted lying under oath! this is depp winning!,,,,,,,,,, +1177,https://www.youtube.com/watch?v=BUfusvxToSg,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard's birthday backfires spectacularly as depp scores monster win! + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",6384.0,153711.0,,,,,,146498.0,83.0,0.0,746.0,amber heard's birthday backfires spectacularly as depp scores monster win!,,,,,,,,,, +1178,https://www.youtube.com/watch?v=CVpOAmMyBrM,0,0,{'Debi Dooms'},1,youtube,video,original video,"paralegal reacts to amber heard caught in 4k lying by body cam footage!!! it's a wrap + +well, turns out @antphrodite (the psychic who did a video on this i reacted to) prediction came true... amber heard is caught in 4k! more like 480p, but caught none the less! the body cam footage from the day the police came to her house has been leaked and nothing is what she said it was. the house was perfectly clean and they sent the police on their way, saying all is well.. can you believe it? i am shook!! speechless! i can't wait to see how amber tries to get herself out of this one! she's busted the house. funnily enough, amber heard just filed to try to get the entire case dismissed, citing the fact that johnny lost his uk trial. i wasn't worried to begin with as it's completely ridiculous, but now i am 10000000% certain she will not succeed in getting the case thrown out! what are your thoughts on this?! i am still in shock! + +email: debidooms@gmail.com +instagram: www.instagram.com/debidooms ; www.instagram.com/debidoesmakeup +tiktok: debidooms + +support my channel (and demonetized content) by buy buying me a coffee! *no pressure* : https://ko-fi.com/debidooms + +music by ryan little - greatest of ease - https://thmatc.co/?l=4d478279 + +links to youtubers covering this case! tell them i sent you: + + @lost beyond pluto (lawyer): https://www.youtube.com/channel/ucop24og-ylluvup4yrj2cja + @incredibly average (investigator): https://www.youtube.com/channel/ucg0c-n_mpyyoxyf4t3jmxnq + @spiritually empowered coaching (psychological analysis): https://www.youtube.com/channel/ucseatdlh3kfgl17dnarfw2g + @thatumbrellaguy : https://www.youtube.com/user/granularheaven + @nerdette's newsstand (sweetheart): https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw + @entertainment hacker : https://www.youtube.com/channel/uceooml4pfam9klphvavt2kq + @darth news (hilarious): https://www.youtube.com/channel/uclx_ir8_yvikdfvutdmaztw + @yellowflash 2 : https://www.youtube.com/channel/ucmrprnybjhgvby3rm0k4p5w + @popcorned planet : https://www.youtube.com/user/secretsaucetv + +disclaimer:: while i am a paralegal, i am not your paralegal and nothing contained within this video is to be considered legal advice, i will not accept any legal liability for any actions taken as a result of my videos. please do not try this at home. i do not make my videos to provide legal instruction, they are merely for entertainment purposes. this video is all my opinion and i am providing commentary. please do not take anything i say as fact and come to your own conclusions based on the evidence presented. everything stated is alleged. i encourage you to voice your opinion, even if it differs from mine, all i expect is that you be kind and refrain from harassing me or any of my subscribers. + +key words: johnny depp vs. amberheard, johnny depp, amber heard, johnny depp vs. ngn, the sun newspaper, murdoch, elon musk, tesla, james franco, johnny depp amber heard defamation, amber heard tmz, johnny depp amber heard defamation case, johnny depp amber heard trial, incredibly average, lost beyond pluto, paralegal, justice for johnny depp, depphead, caught in 4k + +#johnnydeppvsamberheard #johnnydepp #amberheard #johnnydeppvsngn #elonmusk #tesla #johnnydeppamberhearddefamation #incrediblyaverage #lostbeyondpluto #paralegal #justiceforjohnnydepp #thatumbrellaguy #nerdettesnewstand #darthnews #justiceforjohnnydepp #metoo #yellowflash #yellowflash2 #spirituallyempoweredcoaching #adamwaldman #libel #defamation #uklaw #uktrial #amberheardvsjohnnydepp",368.0,7149.0,,,,,,6570.0,8.0,0.0,203.0,amber heard caught in 4k lying by body cam footage!!! it's a wrap,,,,,,,,,, +1179,https://www.youtube.com/watch?v=Tp_xhpK6Okc,0,0,{'Colonel Kurtz'},1,youtube,video,original video,"i explain more interesting aspects of the amber heard johnny depp controversy in this follow-up video: +amber's affairs/cheating with elon musk and james franco +her deceit about charity donations to the children's hospital and aclu +the recent uk trial and verdict +amber's friends / family as conspirators / perjurers + +here's a link to part 1 if you missed it: https://www.youtube.com/watch?v=gua6qmgkzu8&feature=emb_logo + +please subscribe. i plan to put out many more videos on depp vs. heard and other interesting topics related to pop culture and current events. + +my videos are too controversial for monetization, but here's my patreon and tip jar: + +tip jar: https://www.paypal.com/donate?hosted_button_id=z65d3ull278sw +patreon: https://www.patreon.com/colonelkurtz + +for more details on the controversy, see the videos of incredibly average (brian mcpherson) here: https://www.youtube.com/channel/ucg0c-n_mpyyoxyf4t3jmxnq",460.0,5425.0,,,,,,4871.0,4.0,0.0,90.0,johnny depp amber heard explained part 2 (interesting details & photos),,,,,,,,,, +1180,https://www.youtube.com/watch?v=VhpxSgFo1cU,0,0,{'Christian Dion'},1,youtube,video,original video,"https://www.dailymail.co.uk/news/article-9216085/johnny-depp-chance-appeal-high-court-ruling-month.html, +https://www.dailymail.co.uk/sciencetech/article-9214877/elon-musks-spacex-gets-green-light-faa-launch-starship-sn9-prototype-early-today.html. + https://www.dailymail.co.uk/tvshowbiz/article-9221169/kim-kardashian-no-longer-contact-kanye-west.html https://www.dailymail.co.uk/tvshowbiz/article-9221169/kim-kardashian-no-longer-contact-kanye-west.html",82.0,924.0,,,,,,815.0,2.0,0.0,25.0,"closer & closer johnny depp, amber heard, elon musk, space x, kim kardashian, kanye west.",,,,,,,,,, +1181,https://www.youtube.com/watch?v=U9y03XWbUiM,0,0,{'TUBE RADIO'},1,youtube,video,original video,"#enteratecontuberadio #tuberadio #noticias +https://www.youtube.com/channel/ucmrh... +twitter: https://twitter.com/tuberadio985 +instagram: https://www.instagram.com/tuberadio/ +¡no olvides compartir esta publicación en tu muro de facebook y con tus seguidores de twitter",5280.0,97210.0,,,,,,91347.0,128.0,0.0,455.0,"¡adiós amber heard! hola emilia, se revela martian manhunter en snyder cut, el mjolnir regreso.",,,,,,,,,, +1182,https://www.youtube.com/watch?v=VTXaatdiBps,0,0,{'GO! el monitor geek'},1,youtube,video,original video,"¿quieres comenzar o hacer crecer tu canal de youtube? entra a mi curso con descuento aquí - https://www.udemy.com/course/cursodeyoutube/?couponcode=028b4852d26bf472087d + +¡sigue a mi amiga melissa (quien actuó de amber heard aquí) en sus redes, tiene una tienda de cómics increíble! https://www.instagram.com/anilinageek/ +https://www.instagram.com/utopia_comicshop/ + +en este video te voy a hablar de algunos puntos que no estamos tomando en cuenta de la polémica entre amber heard y johhny depp. es decir, ¿por qué johnny ya perdió su papel en animales fantásticos y amber sigue siendo mera? como siempre, el tema es más complicado de lo que parece. + +#johnnydepp #amberheard #mera + +🃏 entra a mi curso de la historia de los superhéroes: https://www.tomemosloscomicsenserio.com/ +🎥 entra a mi curso online de udemy en el que te enseño a crear y hacer crecer tu canal de youtube. https://www.udemy.com/course/cursodeyoutube/?referralcode=8308f91ff564a17bcd2c +📷 instagram: http://bit.ly/2rrazau +🎙 spotify con el podcast de go damn! https://go.damn.mx/ +⭐️ facebook: https://bit.ly/2qxb7rz +💿 spotify con la música de mi grupo: https://spoti.fi/33xawqc +✉️ si quieres comunicarte conmigo para un tema de publicidad, colaboración, etc. puedes mandarme un correo a elmonitorgeek@gmail.com",4772.0,52377.0,,,,,,46862.0,188.0,0.0,555.0,la razón por la que amber heard sigue siendo mera en aquaman,,,,,,,,,, +1183,https://www.youtube.com/watch?v=8E7OGeyaSBg,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard's defense ruined by depp's newest appeal bombshell! + +this makes everything in the appeal make so much sense now. like why we had new evidence added at all, and so much more! + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",3676.0,60796.0,,,,,,56799.0,20.0,0.0,301.0,amber heard's defense ruined by depp's newest appeal bombshell!,,,,,,,,,, +1184,https://www.youtube.com/watch?v=uGrFNbayBQk,0,0,{'ryanmost'},1,youtube,video,original video,"✅ lawyers for johnny depp told britain’s court of appeal thursday that the actor’s ex-wife, amber heard, did not donate all of her $7 million divorce settlement to charity as she claimed, part of arguments seeking to overturn a ruling that the actor assaulted heard during the couple’s marriage. the hollywood star is seeking permission to… +💖 please subscribe: https://www.youtube.com/channel/uc5uitz5infvuqregsoir_dq?sub_confirmation=1 +💖 #amberheardcelebsjohnnydeppmoviesentertainmentcelebsmovies + +source: https://etcanada.com/news/759617/lawyers-for-johnny-depp-seek-to-appeal-wife-beater-ruling/",0.0,2.0,,,,,,2.0,0.0,0.0,0.0,"✅ lawyers for johnny depp told britain’s court of appeal thursday that the actor’s ex-wife, amber h",,,,,,,,,, +1185,https://www.youtube.com/watch?v=Ma7Tycr6s2I,0,0,"{""Prophet's Profit""}",1,youtube,video,original video,a subjective ranking of amber heard's hottest roles in movies. which one is your favourite? missed anything? do you have a proposition for my next video? comment in the comment section below!,280.0,36892.0,,,,,,36575.0,24.0,0.0,13.0,top 15 hottest amber heard movies,,,,,,,,,, +1186,https://www.youtube.com/watch?v=MGTE9tLU0no,0,0,{'Deshawn Wiggins'},1,youtube,video,original video,,7.0,39.0,,,,,,32.0,0.0,0.0,0.0,i had to do it amber heard as mera😏,,,,,,,,,, +1187,https://www.youtube.com/watch?v=TH6JPXAuakQ,0,0,{'Amber Rose Oatman'},1,youtube,video,original video,"happy friday! +here is another friday review video of some drug store products!! :) +if there is another product you'd like to see featured here please comment below. + +xo, +amber + +follow me on my socials :) +instagram.com/amberroseoatman +twitter.com/amberroseoatman +tiktok/snapchat - amberroseoatman +no facebook! + +products used: +powder foundation- https://go.magik.ly/ml/14stm/ +liquid foundation- https://go.magik.ly/ml/14sti/ +concealer- https://go.magik.ly/ml/14stq/ +setting spray- https://go.magik.ly/ml/14stt/ +sponge- https://go.magik.ly/ml/11kvj/ + + +*disclaimer* these products were gifted to me. i was not paid to make a video and speak on these products by l'oreal. all opinions are 100% my own. i made this video to showcase the products to my subscribers, new and existing. the links above are affiliate links where i can earn a small commission. + +#loreal #makeupreview #drugstoremakeup",409.0,27238.0,,,,,,26752.0,15.0,0.0,62.0,l'oreal... i just... wow.. (infallible review),,,,,,,,,, +1188,https://www.youtube.com/watch?v=bxp-LtuvFRI,0,0,{'Harsha varthan Vikata maran'},1,youtube,video,original video,"it's a part - 1 video,i upload part 2,3 as soon as possible + +support us like share and comment + +one like = one motivation + +support our channel 🙏 + +one like=one motivation + +subscribe our channel for more videos + + + + + \\our channel videos// +______________________________________________________ + +vaadi en tamil selvi - love song - neon text effect- anirudh spl - tamil whatsapp status@ +https://youtu.be/vqtg_ga5afa + +vathi coming oththu song - with mr bean spl - comedy clip - tamil whatsapp status@https://youtu.be/pqryg-v_dty + +endi ippadi - love song - duke lover - duke bike background - dedicate to bike lover - tamil whatsapp status@https://youtu.be/ihe4nk-c5ss + +orasadha remix song - love song - 7up gig spl - lyrics effect - tamil whatsapp status@https://youtu.be/ihe4nk-c5ss + +open the tasmac - maan karate movie - with kingfisher background - stylish lyrics - tamil whatsapp status@ +https://youtu.be/solk6yz5jlu + +porada porada - love song - animate background - black and colour pic - love feeling song - tamil whatsapp status@https://youtu.be/uz9trhadpze +______________________________________________________ + +erangi vandhu adhu - friends ship song - kathakali movie - with lyrics - tamil whatsapp status@https://youtu.be/sbasndrxuko + +love me like you do - harry and ginny cover - english love song - elli goulding spl - english whatsapp status@https://youtu.be/oh0xdeyms0q + +jigidi killadi - love song - pattas movie - lyrics with bass effect - tamil whatsapp status@ https://youtu.be/2xkdojdhxrq + +poovukul olinthirukum - a.r rahuman spl - melting love song - lyrics with particles effect - tamil whatsapp status@https://youtu.be/xilfoo0_6pk + +bring back memories - maroon 5 - lyrics - part 1 - tamil whatsapp status@ +https://youtu.be/w3fczub09qy +______________________________________________________ + +bring back memories - maroon 5 - lyrics - part 2 - tamil whatsapp status@ https://youtu.be/qx9vb7zppls + +yolo love song - dhanush and amriya - anegan movie - harris jayaraj spl tamil whatsapp status@ +https://youtu.be/qn8htpxos3s + +shivan thandavam - bhakti song - bass flicker light effect tamil whatsapp status@https://youtu.be/s_4z2n3zpds + +vedhalam movie - don't you mess with me song - female love song tamil whatsapp status@https://youtu.be/lw9h8feiw2g + +en sandakari needhan - love song tamil whatsapp status@https://youtu.be/cjnz-u52shk +______________________________________________________ + +kannala ni kaadhal pachakutha - tamil love song tamil whatsapp status@https://youtu.be/u7dgbazvg5q + +kodi - hey suzhali song anupama pharameswaran spl +tamil whatsapp status@https://youtu.be/egxjgscrc- + +edhayathil yedho ondru - ennai arindhal tamil whatsapp status@https://youtu.be/69p1rcy7fry + +boomerang - mugayazhi pennodu tamil whatsapp status @ https://youtu.be/7k3saxu_zs8 + +love me like you do song with harry ginny:https://youtu.be/u5mj-fpz4gc +don't miss it 👆 +______________________________________________________ + +for kindly attention for our subscribers + the video quality is low than the upload quality + if you want to download our video + use tubemate or other apps for high quality + download and enjoy it + + +tubemate link :http://tubemate.net/ + + +thanks for giving more support to us +because your support will boost our energy 💪 + + + +hello friends thanks for your support 💪 +comment your favorite song +i post the song as soon as possible + +like ❤️ + +share 🙏 + +subscribe ☝️ + +for more videos + + +#tamilwhatsappstatus +#tamillovewhatsappstatus +#newyearwhatsappstatus +#whatsappstatus +#vikatamaran + +music in this video +learn more +listen ad-free with youtube premium +song +wahran +artist +randall +album +wahran +licensed to youtube by +wmg (on behalf of spinnin' records); warner chappell, latinautorperf, and 3 music rights societies +______________________________________________________",966.0,23588.0,,,,,,22586.0,18.0,0.0,18.0,amber heard💕part 1💕full screen whatsapp status 💕 english version💕cute expression 💕 [ vikata maran ],,,,,,,,,, +1189,https://www.youtube.com/watch?v=RUZo-hfZ_Zw,0,0,{'RACION EXTRA SUCULENTA'},1,youtube,video,original video,"¿se acaba el show de amber heard vs johnny depp? + +dale like, comparte y comenta... o muere! ^_^ +★ suscribete: http://www.youtube.com/subscription_center?add_user=gamerdelcarajo + +░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ + +► mira freak show en: http://cmtv.com.ar/freakshow +delcarajo teve: http://youtube.com/user/juanitosay + +► sigueme en: +twitter: http://twitter.com/juanitosay +facebook: http://facebook.com/juanitosayoficial +facebook personal: http://facebook.com/sayphhat +ask: http://ask.fm/sayphhat +sitio oficial: http://mcsay.com + +► contacto prensa: say@freakshowtv.com.ar",59.0,1190.0,,,,,,1120.0,6.0,0.0,5.0,elon musk revela los secretos de amber heard: warner la echa y emilia clarke sera mera,,,,,,,,,, +1190,https://www.youtube.com/watch?v=BcKRsYHoKIM,0,0,{'Lilo TV'},1,youtube,video,original video,"son zamanlarında amber' ın hakkında çıkan haberler genellikle aquaman'den atılıp atılmaması ile alakalı oluyordu. peki durumlar ne? i̇kili arasında son zamanlarda neler oldu? detaylar videoda! + +her salı & perşembe yeni video! +instagram' a da gelin: https://www.instagram.com/liloteve/ + +i̇zlenmesi̇ gerekenler! + +○ meghan markle röportajı: https://youtu.be/b9elztipscq +○ larry stylinson hakkında: https://youtu.be/ktssfkep5xe +○ emma watson oyunculuğu bıraktı mı, lady gaga, bts ve diğerleri: https://youtu.be/tbkm0g6z0bo +○ sizden gelenler | gigi hadid, selena gomez ve diğerleri: https://youtu.be/rabtywocezi +○ selena gomez, lucy hale, kendall ve kourtney ve diğerleri: https://youtu.be/udqex_ujaz0 +○ britney, justin, kim k. ve diğerleri: https://youtu.be/gadf67z_4gu +○ d'amelio çıkmazı: https://youtu.be/hqo9bqbahga + +#listelobisi #lilotv #dilaratunes",1815.0,42167.0,,,,,,39806.0,16.0,0.0,530.0,amber heard aquaman' den atıldı mı? | amber heard & johnny depp güncellemesi,,,,,,,,,, +1191,https://www.youtube.com/watch?v=01BoXlJ24Vc,0,0,{'Flixet'},1,youtube,video,original video,"in this video, we are going to share jason momoa's thoughts on working with amber heard on aquaman 2. + +subscribe for more : http://bit.ly/32rc7vi +______________________________________________ + +it’s being reported that jason momoa doesn’t have any issues working with amber heard on the upcoming aquaman 2.this report comes from daniel richtman and it kind of makes sense because the two of them seemed pretty close. so watch this video till the end as will be discussing jason momoa's thoughts on working with amber heard on aquaman 2. + + +music in this video : + +track: odessa — liqwyd & scandinavianz +music provided by audio library plus +watch: https://youtu.be/jny-dp3lgcg",20.0,590.0,,,,,,543.0,10.0,0.0,17.0,jason momoa's thoughts on working with amber heard on aquaman 2 | flixet,,,,,,,,,, +1192,https://www.youtube.com/watch?v=Gq5uItRcKlo,0,0,{'InformOverload'},1,youtube,video,original video,"woman facing 20 years in prison for coughing on uber driver +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +coughing in someone's face has never been cool and during a pandemic its essentially the same as attacking someone with a biological weapon. a woman from san francisco is finding out just how serious these charges are after a video captured her coughing on an uber driver. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#20years #prison #uberdriver #caughtoncamera #arrested #arnakimiai #malaysiaking #tiktok #covid19 #covid #coughing #coughinginpublic #uber #sanfrancisco #sfpd #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 #celebritygossip #influencergossip #celebritytea #influencertea #viralvideo #iglive #instagramlive #viral + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +johnny rogers: https://www.instagram.com/thejohnnyrogers/ + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +daniela suarez: https://www.instagram.com/danielasuarezphoto/ + + +📱instagram: https://www.instagram.com/informoverload +📱facebook: https://www.facebook.com/informoverload/ +📱twitter: https://twitter.com/informoverload +📱reddit: https://www.reddit.com/user/informoverloadreddit +✉️email | contact: informoverload@gmail.com",8326.0,178054.0,,,,,,168286.0,120.0,0.0,1322.0,woman facing 20 years in prison for coughing on uber driver,,,,,,,,,, +1193,https://www.youtube.com/watch?v=XIMFIMAO7vM,0,0,{'InformOverload'},1,youtube,video,original video,"dr. seuss cancelled, major lawsuit! tekashi 6ix9ine, & tiktok doc sued +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +tekashi 6ix9ine is once again making headlines, this time for a lawsuit that saw an adult dancer end up in the hospital. another lawsuit see’s jason campbell, formerly known as the tik tok doc, being sued by a former colleague, with claims he made unwanted advancements. and i referred to campbell as formerly known as tik tok doc, because his account is now gone. but wait, there’s more. dr. seuss has been cancelled, and on his birthday, what a shame, but really, you gotta stick around to find out who’s to blame. little rhyme there for ya. + +00:00 - intro +00:28 - tekashi 6ix9ine lawsuit +01:33 - tiktok doc sued +03:27 - dr. seuss cancelled +04:50 - reading comments +05:55 - outro + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#tiktok #drseuss #cancelled #6ix9ine #tekashi #tekashi6ix9ine #seuss #canceled #cancelculture #major #lawsuit #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 #celebritygossip #influencergossip #celebritytea #influencertea + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +jarred bronstein: http://instagram.com/bronst7 + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +daniela suarez: https://www.instagram.com/danielasuarezphoto/ + + +📱instagram: https://www.instagram.com/informoverload +📱facebook: https://www.facebook.com/informoverload/ +📱twitter: https://twitter.com/informoverload +📱reddit: https://www.reddit.com/user/informoverloadreddit +✉️email | contact: informoverload@gmail.com",842.0,16716.0,,,,,,15727.0,19.0,0.0,128.0,"dr. seuss cancelled, major lawsuit! tekashi 6ix9ine, & tiktok doc sued",,,,,,,,,, +1194,https://www.youtube.com/watch?v=oV5phttquEM,0,0,{'Howard Stark'},1,youtube,video,original video,"#johnnydeep +#amberheard +#jacksparrow",4.0,24.0,,,,,,20.0,0.0,0.0,0.0,amber heard and johnny deep entry scene,,,,,,,,,, +1195,https://www.youtube.com/watch?v=ueDJ4eAty0Y,0,0,{'News Guide'},1,youtube,video,original video,"despite the rumors saying otherwise, amber heard has not been fired from the dceu's aquaman 2 and will continue to play mera in the franchise. the rumors suggesting amber heard has been fired from aquaman 2 have been debunked. heard plays xebellian princess mera in the dceu, ever since her first appearance in 2017's justice league. she went on to have a prominent role in 2018's aquaman and will reprise the part next month for zack snyder's justice league. additionally, heard is expected to return for aquaman 2, which will once again star jason momoa as the titular hero and is slated for release in december 2022. plot details are still being kept under wraps, and filming is expected to begin this summer. on sunday, unverified reports of heard being fired from aquaman 2 emerged online and led the actress to trend on social media. this is hardly the first time rumors of heard's firing have spread, seemingly stemming from her brutal and public battle with ex-husband johnny depp. both depp and heard have contested the other was physically and verbally abusive during their relationship. in the fall, depp was fired from warner bros.' fantastic beasts franchise, which led to fan outcry online. depp's departure also caused some to wonder why heard wasn't receiving the same fate. continue scrolling to keep readingclick the button below to start this article in quick view. there's no telling what may happen in the future, but so far, heard is sticking with aquaman 2. thr staff writer ryan parker took to social media to state he's been told by a ""reliable source"" that the reports of heard's alleged firing are ""inaccurate."" parker offered up no further information. as the initial rumors regarding heard being fired did not stem from a reputable source, it isn't surprising they're being debunked now. oftentimes, stories of certain actors either being cast or let go from projects will take on a life of their own on the internet, but they end up being untrue. heard and aquaman 2 is an interesting case, in that the controversy surrounding the actress could very well result in some changes, similar to depp's situation with fantastic beasts. however, as it stands right now, heard will continue to play mera in the dceu. this news will likely be met with a great deal of mixed reactions. those who stand by heard will be relieved to hear she's still a part of aquaman 2, while others who think heard is the aggressor in her relationship with depp will be displeased. a petition calling for heard's removal from aquaman 2 gained traction in december and crossed one million signatures, signaling there are some who would like to see her fired. this is a delicate situation, and one that will likely lead to more developments in the future. only time will tell how it pans out. + + +all data is taken from the source: http://screenrant.com +article link: https://screenrant.com/aquaman-2-amber-heard-mera-fired-rumors-debunk/ + + +#amberheard #newsus #newstodayoncnn #newstodayabc #newstodaylocal #newstodaycnn #",0.0,26.0,,,,,,26.0,0.0,0.0,0.0,amber heard fired from aquaman 2 rumors debunked,,,,,,,,,, +1196,https://www.youtube.com/watch?v=7lCzkvEr-FE,0,0,{'RamPAGE'},1,youtube,video,original video,"my two cents on a controversial topic that i hope won't taint the legacy of ""zack snyder's justice league"". amber heard vs johnny depp is one ugly case. i empathise with depp, but i wasn't there, therefore, i just have to work with the consequences. roll with the punches. i make this video in defence of the snyder cut's image, not amber heard. + +the amber heard/johnny depp story so far: https://www.insider.com/johnny-depp-amber-heard-relationship-timeline-2020-7 + +to be double clear, i'm not saying anyone's actions are acceptable. they're simply understandable. + +follow me on letterboxd: https://letterboxd.com/rampage_/ +follow me on instagram: https://www.instagram.com/ram.page__/ +follow me on twitter: https://twitter.com/ramspage_ + +#snydercut #amberheard #justiceisgray +remember to subscribe to this channel!",6.0,214.0,,,,,,189.0,5.0,0.0,14.0,why amber heard's mera still works | in defence of zack snyder's justice league,,,,,,,,,, +1197,https://www.youtube.com/watch?v=WiB1Cg0hq5c,0,0,{'GeekPrime009'},1,youtube,video,original video,amber heard caught lying again? heard not fired from aquaman 2?!,1.0,18.0,,,,,,17.0,0.0,0.0,0.0,"geekprime009 bog's season 1 episode 15.""my reaction amber heard caught lying again? heard not fired""",,,,,,,,,, +1198,https://www.youtube.com/watch?v=0ZaidqABx_g,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"depp in tears?! his own daughter sides with amber heard?! wait, what? + +watch the video! + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",2636.0,41995.0,,,,,,38620.0,42.0,0.0,697.0,"depp in tears?! his own daughter sides with amber heard?! wait, what?",,,,,,,,,, +1199,https://www.youtube.com/watch?v=TiW2Xpu1wPc,0,0,{'Binge Watch'},1,youtube,video,original video,"johnny depp speaks on amber heard ruining her own career + +subscribe to binge watch - http://tiny.cc/bingewatch + +watch next 👇 + +how amber heard destroyed her own career + +https://youtu.be/gefwubrffr8 + +related videos: + +johnny depp speaks on amber heard ruining her own career + +https://youtu.be/dkrfrqa2nk8 + +johnny depp speaks on amber heard trying to ruin him... + +https://youtu.be/um75avnffeq + +elon musk speaks against amber heard & defends johnny depp!!! + +https://youtu.be/bu1uot5tyoc + +amber heard – a lot of people had no idea who she was until her divorce from johnny depp. +her biggest role by far is that of mera, in aquaman – the love interest of none other than +aquaman himself. +the mess between amber heard and johnny depp is still ongoing, but when it first started +making headlines amber had released a phone video making johnny appear to be a +drunken ab**er. +as time went on and court trials ensued, eventually the public learned that amber was the +toxic component of the former celebrity couple. people started thinking deeply and realized +the irony of amber heard’s career. she wasn’t exactly the most well- known actress, until +she met the man who was already extremely popular in hollywood. it made so many fans +think that amber heard benefited from marrying johnny. amber started to gain more +attention in the public eye via her appearances in movies like ‘justice league’ and +‘aquaman’ and she actually started getting more and more great roles than ever before. +amber and johnny dated for years before finally getting married in 2015, but that’s when +things started to reveal their true nature. it also made people suspicious as their marriage +lasted only one year. +jealousy, anger, ab**se, lies - the things which filled this marriage from the start and +obviously, that’s not a good combination for those who want to be a happy couple. but things +started to get intense in the worst way, when in 2016 amber filed for divorce from johnny +and also obtained a temporary restraining order against him. she alleged that johnny had +physically ab**ed her during their relationship, and said it was usually while under the +influence of dr**gs or alc***ol. +she alleged that at the time of filing for divorce, an incident had recently taken place in which +johnny depp threw his phone at her, leaving her with a bruised face. +johnny depp denied these accusations and through his representatives said amber heard +was ""attempting to secure a premature financial resolution by alleging ab*se."" but by that +time no one believed johnny depp and his career started falling apart. +in december 2018, amber heard wrote an op-ed for the washington post saying she was +ab*sed. in this op-ed for the washington post she spoke about the treatment of women in +domestic ab*se cases. +she wrote: ""i became a public figure representing domestic ab*se, and i felt the full force of +our culture's wrath for women who speak out."" after that the newspapers labeled him as an +‘ab*ser’ and ‘wife beater’ and in 2019, johnny depp sued amber heard for $50 million for +defamation over the wapo article. +the suit said that amber heard ""is not a victim of domestic ab*se, she is a perpetrator,"" and +denied that johnny depp ever ab*sed her. instead, the suit said that amber heard's +allegations were part of an ""elaborate hoax to generate positive publicity"" for the actress. + +johnny depp's lawyers said: ""the op-ed depended on the central premise that ms. heard +was a domestic abuse victim and that mr. depp perpetrated domestic violence against her."" +and that’s when things really got intense and amber’s true nature started to reveal itself. +finally, amber heard’s claims of ab*se started to be revealed as false one by one. first of +all, the police spokesman revealed that an investigation into the domestic incident ‘radio call’ +which amber heard stated previously, found that no crime had taken place. +plus,johnny depp had his own proof that amber was lying. mainly, johnny had a recording of a time when amber ab*sed him. +in january, phone recordings obtained by the daily mail were released. in these recordings, +amber heard admitted to ""hitting"" johnny depp. +amber is heard saying: ""i'm sorry that i didn't ... hit you across the face in a proper slap, but i +was hitting you, it was not punching you. babe, you're not punched. +""i don't know what the motion of my actual hand was, but you're fine, i did not hurt you, i did +not punch you, i was hitting you."" +... +now i want to hear your opinion about amber heard. do you think she is the one who played +the victim card to get sympathy and tried to frame an innocent man? let me know what you +think in the comments section down below. + +binge watch - binge watch is the best source of the latest celebrity news. want to see what's trending today in the hollywood life or hear about the newest celeb gossip? you're in the right place. + +consider subscribing to not miss out on what's trending today in the life of the world's biggest stars. + +#celebrity #news #bingewatch",1523.0,76751.0,,,,,,74334.0,397.0,0.0,497.0,johnny depp speaks on amber heard ruining her own career,,,,,,,,,, +1200,https://www.youtube.com/watch?v=Dkli_KasOXY,0,0,{'TheTruth 31'},1,youtube,video,original video,"#hbomax #zacksnydersjusticeleague #aquaman #amberheard + +follow me on twitter: https://mobile.twitter.com/truth31the + +“follow me on instagram: https://www.instagram.com/thetruththirty1/ + +“subscribe & like for more dceu content”. + +https://youtube.com/channel/ucip2wapqujz37nquezqekrq",27.0,387.0,,,,,,290.0,3.0,0.0,67.0,“amber heard will have her own spin-off on hbomax as mera” ?.,,,,,,,,,, +1201,https://www.youtube.com/watch?v=SNbmPwmoP7I,0,0,{'Movie stamps'},1,youtube,video,original video,"#dc #aquaman #mera #movieclips #powersexplained + +film description: +once home to the most advanced civilization on earth, the city of atlantis is now an underwater kingdom ruled by the power-hungry king orm. with a vast army at his disposal, orm plans to conquer the remaining oceanic people -- and then the surface world. standing in his way is aquaman, orm's half-human, half-atlantean brother and true heir to the throne. with help from royal counselor vulko, aquaman must retrieve the legendary trident of atlan and embrace his destiny as protector of the deep. + +credits: +tm & © warner bros. (2018) +cast: amber heard, jason momoa, julie andrews, nicole kidman +screenwriter: david leslie johnson-mcgoldrick, will beall +director: james wan + +copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use. no copyright infringement intended.",4.0,149.0,,,,,,145.0,0.0,0.0,0.0,mera all powers from aquaman | 2018 | amber heard | jason momoa,,,,,,,,,, +1202,https://www.youtube.com/watch?v=rb_gxl8Oz2o,0,0,{'Viral Vision'},1,youtube,video,original video,"even more celebrities defend johnny depp against amber heard +there were many dark stories in the year that was 2020, especially when it came to celebrities. there were all sorts of scandals, including many intense battles over public perception. but one of the ones that stand out from the pack is the battle between johnny depp and amber heard. what started out as a simple divorce evolved into a full-on battle for control of what their “characters” were like in terms of how they acted in front of and behind the came. but while johnny depp is taking a lot of hits in the public light, so is amber heard! allow us to break it down for you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone! a look at the trials and tribulations between johnny depp and amber heard and how everything has gone in terms of court battles, fighting for public opinion and being exposed for their antics! whose side do you take in this battle of former loves? do you think johnny depp is being railroaded? do you think amber heard needs her just desserts? what do you think will happen next between these two? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",1176.0,28207.0,,,,,,26776.0,37.0,0.0,218.0,even more celebrities defend johnny depp against amber heard,,,,,,,,,, +1203,https://www.youtube.com/watch?v=p45tcAVXWUQ,0,0,{'eHacker'},1,youtube,video,original video,"amber heard caught drinking in video again! +check out channel membership if you are keen to support the channel! +new members get their names in the credits! + +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com +donate direct to support : coming soon! + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods",458.0,3166.0,,,,,,2481.0,4.0,0.0,223.0,amber heard caught drinking in video again!,,,,,,,,,, +1204,https://www.youtube.com/watch?v=8l9fxFFEk0s,0,0,{'Viral Network'},1,youtube,video,original video,"amber heard claps back at johny deep fans dragging her + +subscribe to viral network 👉 https://youtube.com/user/zrul90 + +actress amber heard, who recently went through a public and contentious divorce and legal dispute with ex-husband johnny depp, is now publicly responding to depp's followers on social media who have been sending her derogatory comments amidst the former couple's continued legal battles. + +for those unaware, johnny's ex-girlfriends were named in a lawsuit against the sun for branding him a ""wife-beater."" johnny's effort to get the case retried in the uk was futile after the two raised their respective sides. in the united states, a slander case is already due to be heard this year. depp sued heard for slander in virginia after she penned an op-ed for the washington post in 2018 in which she described herself as a domestic violence victim, though she never listed depp by name. the actor is claiming damages in the amount of usd 50 million. + +after the suit was held in amber's favor, the aqua man actress took to twitter to brand johnny's lawyer ""short,"" and she's now sent tweets to fans who are against her. “i'd rather be short than an abusive gold digger,” one fan responded to the diss. “it's nice to be objective about your goals,” amber replied. + +#thishappened #amberheard #johnnydepp",3.0,185.0,,,,,,180.0,1.0,0.0,1.0,amber heard claps back at johny deep fans dragging her,,,,,,,,,, +1205,https://www.youtube.com/watch?v=oD0iIOJ9MaM,0,0,{'Hindi all English'},1,youtube,video,original video,"despite the rumors saying otherwise, amber heard has not been fired from the dceu's aquaman 2 and will continue to play mera in the franchise. the rumors suggesting amber heard has been fired from aquaman 2 have been debunked. heard plays xebellian princess mera in the dceu, ever since her first appearance in 2017's justice league. she went on to have a prominent role in 2018's aquaman and will reprise the part next month for zack snyder's justice league. additionally, heard is expected to return for aquaman 2, which will once again star jason momoa as the titular hero and is slated for release in december 2022. plot details are still being kept under wraps, and filming is expected to begin this summer. on sunday, unverified reports of heard being fired from aquaman 2 emerged online and led the actress to trend on social media. this is hardly the first time rumors of heard's firing have spread, seemingly stemming from her brutal and public battle with ex-husband johnny depp. both depp and heard have contested the other was physically and verbally abusive during their relationship. in the fall, depp was fired from warner bros.' fantastic beasts franchise, which led to fan outcry online. depp's departure also caused some to wonder why heard wasn't receiving the same fate. continue scrolling to keep readingclick the button below to start this article in quick view. there's no telling what may happen in the future, but so far, heard is sticking with aquaman 2. thr staff writer ryan parker took to social media to state he's been told by a ""reliable source"" that the reports of heard's alleged firing are ""inaccurate."" parker offered up no further information. as the initial rumors regarding heard being fired did not stem from a reputable source, it isn't surprising they're being debunked now. oftentimes, stories of certain actors either being cast or let go from projects will take on a life of their own on the internet, but they end up being untrue. heard and aquaman 2 is an interesting case, in that the controversy surrounding the actress could very well result in some changes, similar to depp's situation with fantastic beasts. however, as it stands right now, heard will continue to play mera in the dceu. this news will likely be met with a great deal of mixed reactions. those who stand by heard will be relieved to hear she's still a part of aquaman 2, while others who think heard is the aggressor in her relationship with depp will be displeased. a petition calling for heard's removal from aquaman 2 gained traction in december and crossed one million signatures, signaling there are some who would like to see her fired. this is a delicate situation, and one that will likely lead to more developments in the future. only time will tell how it pans out",0.0,9.0,,,,,,9.0,0.0,0.0,0.0,amber heard fired from aquaman 2 rumors debunked,,,,,,,,,, +1206,https://www.youtube.com/watch?v=DTlOZn2F0Xc,0,0,{'Celeb Happened'},1,youtube,video,original video,"elon musk speaks against amber heard and defends johnny depp + +in yet another twist, a concierge has claimed via written witness statement in court that tesla and spacex ceo elon musk regularly visited amber heard at her ex-husband and hollywood actor johnny depp's los angeles penthouse while they were still together, the media reported. a written statement from alejandro romero, a concierge at the building depp and heard were living in, alleged that the tesla founder ""frequently visited the 'aquaman' star late at night whenever depp wasn't home."" + +because of these reports, elon musk has spoken up about this issue and speaks against his ex-partner amber heard and somehow defended johnny depp. if you are curious about his claims, be sure to watch the whole video because it’s pretty crazy! in addition, do us a favor and like the video and subscribe and turn on the notification bell. we’ll see you in the next video! + +#elonmusk +#amberheard +#johnnydepp + +related videos: + +elon musk speaks against amber heard & defends johnny depp!!! +https://www.youtube.com/watch?v=bu1uot5tyoc + +look how elon musk defends johnny depp over amber heard | elon musk speaks against amber heard +https://www.youtube.com/watch?v=kdjulynj6uu + +elon musk speaks against amber heard & defends johnny depp! +https://www.youtube.com/watch?v=woo2bftrrl4 + +johnny depp's lawyer exposed amber heard and elon musk's private texts +https://www.youtube.com/watch?v=ah7qx2sh8uu + +“i lied"" amber heard apologies to johnny depp (ig live video) +https://www.youtube.com/watch?v=plyxm0ztstg + +i do not take any ownership of the music displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes displayed in this video. ownership belongs to the respected owner(s). used under fair use policy.* music used for entertainment purposes only.",152.0,8207.0,,,,,,7967.0,29.0,0.0,59.0,elon musk speaks against amber heard and defends johnny depp,,,,,,,,,, +1207,https://www.youtube.com/watch?v=8jxAiZ2A5YE,0,0,{'Bigfatpsychic #'},1,youtube,video,original video,"was johnny depp villain or victim, was the judge harsh or dishing out justice, was johnny made an example of. what of amber heard? +channel subscribers can purchase a private reading from me in the following ways. just click on the link or copy and paste the links into your browser. +one card psychic tarot reading by email £4.95 + https://www.ebay.co.uk/itm/233667328232 + +20 minute live psychic reading by telephone £39.95 https://www.ebay.co.uk/itm/234079973479 + +45 minute live psychic reading by telephone £54.95 https://www.ebay.co.uk/itm/234079964007 + +please visit my ebay store +https://www.ebay.co.uk/sch/big-fat-psychic/m.html?_trkparms=folent%3abig-fat-psychic%7cfolenttp%3a1&_trksid=p3542580.m47492.l71970l + +you can also order a reading from me by sending me a message to bigfatpsychic@gmail.com and paying via paypal https://www.paypal.me/guesswhat45 + +100% money back guarantee. + +i am a natural born psychic under the zodiac sign of pisces. i have travelled the world extensively demonstrating my extraordinary ability to thousands during live shows, private readings, and youtube videos, where anything can happen and shockingly detailed. i have scared myself at times with the level of accuracy i deliver, check out my past videos. i am fascinated by meghan and harry's antics since they departed the royal family. that is why i started my youtube channel and of course it demonstrates my ability to give extraordinary insight into meghan and harry’s lives. they are ideal material for such talented psychics because you never know what is coming next and you certainly cannot predict them unless of course you are watching my videos! +since launching my channel september 2020, i have been amazed at the level of views and subscriptions i have received in such a short time, my channel may be new but as a psychic i have been reading professionally for over 30 years, so i thank you so much for your lovely comments and clicks!!!! as you can see my channel continues to evolve as do my technical skills. anyone will know that editing and running a youtube channel is very time consuming and quite hard work at times, but i absolutely love it, i really do!! very kindly i have had more than a few requests to attach a link so you can buy me a coffee??? i felt uncomfortable at first, but the truth is i have some wonderful subscribers who see me as a new friend. you feel like you are getting to know me, as i do you. i listen to my subscribers, and i love to interact with you through my videos, live chat, and comments so even though it makes me a little uncomfortable to accept a coffee, apparently it makes you feel good. for a lot of viewers, you will no doubt be in some financial difficulty, and i am afraid buying me a coffee will not bring you financial gain. other less reputable psychics will claim if you donate you will get thousands back in karma. life doesn’t work like that unfortunately, otherwise i’d be a rich woman. keep your money to yourself. a nice comment from you will suffice and feels just as good. now for those wanting to buy me a coffee- i do not drink fancy coffees! however due to a medical condition that makes my mouth goes extremely dry (you can tell in my videos sometimes) i love nothing more than a sugar free slush puppy. as i drink quite a lot, i’ve gone off certain cordials and juices, but i always enjoy a slush puppy…. so, here’s the link guys. +https://www.paypal.me/guesswhat45 +but i stress it’s not necessary, so i thank you endlessly from the bottom of my heart x. +** please note, all opinions expressed are my own. psychic readings are provided for entertainment purposes only **",4.0,65.0,,,,,,58.0,0.0,0.0,3.0,johnny depp court case usa. is he the victim or villian??? was the judge unfair???,,,,,,,,,, +1208,https://www.youtube.com/watch?v=f3oTqHHAMt8,0,0,{'Dark Rose '},1,youtube,video,original video,"#johnnydepp #amberheard #celebs #justiceforjohnnydepp + +here's the audio where amber heard mocks johnny depp & admits to hitting him + + + +subscribe to my channel http://www.youtube.com/c/darkrosevalkyrie +donations cashapp $darkrose0076 +https://www.amazon.com/hz/wishlist/ls/lworlpc1f77?ref_=wl_share",,,,,,,,463.0,,0.0,7.0,here's the audio where amber heard mocks johnny depp & admits to hitting him ~ uncensored audio,,,,,,,,,, +1209,https://www.youtube.com/watch?v=Fet-LMLLlnQ,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"gal gadot attacks johnny depp while backing amber heard! what? well... + +making this clear: +1. this is posted with the intention of covering a story that will end up spreading. +2. do not contact anyone involved +3. make sure to watch it all! +4. share. sub. spread the word! + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#galgadot #johnnydepp #amberheard",2084.0,35150.0,,,,,,32542.0,42.0,0.0,482.0,gal gadot attacks johnny depp while backing amber heard! what? well...,,,,,,,,,, +1210,https://www.youtube.com/watch?v=YwTRIGLWxVc,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard fired from aquaman 2 goes worldwide! the world loves depp! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",6903.0,181599.0,,,,,,173347.0,117.0,0.0,1232.0,amber heard fired from aquaman 2 goes worldwide! the world loves depp!,,,,,,,,,, +1211,https://www.youtube.com/watch?v=Lup2zi5wQnI,0,0,{'Come Geek Some'},1,youtube,video,original video,"heard's legal team fails her in the uk emergency hearing?! + +link: https://www.sausageroll.com.au/lifestyle/celebrities/amber-heard-reportedly-failed-to-oppose-johnny-depp-emergency-hearing/ + +so ah' legal team have supposedly been denied twice for not giving good reasons to stop the emergency hearing next month. + +join this channel to get access to perks: +https://www.youtube.com/channel/uc4ltvxoxgzobqqduv9ixowg/join + +current channel members + +ann-christin mortensen +caroline +tammytalksabout +aleksandra jarosz +lena stensgaard +tina flowers +dawn curry +truebliu nineleven +haley angie +loralie dee +ann brown +horae of peace +jasmine t. redfeather +amanda grout +emma p +nicole turner +enceladuswaters +dísa maria helgudóttir +georgina campbell +marianne erni +irene maiden +zara zohl +laura uk +mary scott +megan o'shea +johnny's girl +claire flavin-jones +lynn bain +jane ruddell +donald dolan +mary turpel +ahyoka ama +sally pascoe +shelley tennant +sunshine +ali bali +penguin 322 +jane durante +sabine möller +videnthecoldone +leah veneau +hanne lærke sommer +morning tea +juanita schutte +jennifer willis +lisa lambert +susan redden +cat meissner +broly the mighty +humble bee +sarah wells +christine b-r +zombqueeen +tammy lockley +michieee +stephanie davis +bonnieb +janette tammaro +wendy postma +maureen kinross +deborah melendy +roamer mgtow +madamebebo +claire jones +mary scott +adriana adams +sarah kat +patti_c +steve kass +john le +kimmhy depp +night train blues +harbenja +l c +gelth walker +laura uk +judith hodgson +lifeofsarcasm +clairmbear +moxxie moon +anne holyday +k. kae-linn allison +megan o'shea +sylvan + +hello and welcome to come geek some! for all things geek, like and subscribe to the channel! + +please ignore or flag spam, negative, or hateful comments. we're here to have a good time. thanks everyone, and enjoy :] + +if you would like to support the channel and help us grow! +donations: https://streamlabs.com/comegeeksome + +i'm an avid adobe premiere pro user and have been for quite some time! i would recommend the software to anyone (if they have the spare money a month) + +ps4 player with pc gameplay now and again. still not used to pc gaming! + +interact with us on twitter! https://twitter.com/comegeeksome1 +twitch: https://www.twitch.tv/geeksomegaming + +#justiceforjohnnydepp #amber #news",1273.0,17118.0,,,,,,15587.0,4.0,0.0,254.0,heard's legal team fails her in the uk emergency hearing?!,,,,,,,,,, +1212,https://www.youtube.com/watch?v=btxFY3vWhNQ,0,0,{'READY TO GLARE'},1,youtube,video,original video,"sources: +my prior video: https://youtu.be/omwd6veacx0 +https://studio.youtube.com/video/xsfovwpiu4m/edit + +https://www.hollywoodreporter.com/thr-esq/amber-heard-donates-7m-divorce-920796 + +https://www.insider.com/johnny-depp-amber-heard-relationship-timeline-2020-7 + +https://www.hollywoodreporter.com/thr-esq/johnny-depps-50m-defamation-suit-amber-heard-allowed-virginia-1227186 + +incredibly average: https://www.youtube.com/channel/ucg0c-n_mpyyoxyf4t3jmxnq + +--------------------- + +artists: + +1. www.instagram.com/skateboardingcustard/ +2. www.instagram.com/ready_x_to_x_glare/ +3. www.instagram.com/ready_x_to_x_glare/ +4. www.instagram.com/ready_x_to_x_glare/ +5. www.instagram.com/strong._art/ + + + + +------------------------ +intro by : https://dserpentes.carrd.co/ + +—————————————- + + + +find me on other platforms: + +merch: https://outloudmerch.com/collections/ready-to-glare + +second channel: https://www.youtube.com/channel/uc-cdm1lnd3sncx8qd2gidtw + +patreon: https://www.patreon.com/readytoglare + +younow: https://www.younow.com/readytoglare + +instagram: https://www.instagram.com/readytoglare/ + +twitter: https://twitter.com/readytoglareyt + +tumblr: http://readytoglare.tumblr.com + +email: readytoglare@gmail.com",10260.0,161633.0,,,,,,150320.0,94.0,0.0,959.0,amber heard & the missing charity donations,,,,,,,,,, +1213,https://www.youtube.com/watch?v=TDMInEEWw0w,0,0,{'Geeks + Gamers'},1,youtube,video,original video,"emilia clarke replaces amber heard in aquaman 2 after all? + +⚫️ discord: https://discord.com/invite/r3tdncx + +⚫️ instagram: https://www.instagram.com/geeksgamerscom/?hl=en + +⚫️ twitter: https://twitter.com/geeksgamerscom + +⚫️ twitch: https://www.twitch.tv/geeks_and_gamers + +⚫️ merch: https://teespring.com/stores/geeks-gamers-2 + +🟢 website: https://www.geeksandgamers.com/registration/ + + + +📦✉️ + + +p.o box: + + +jeremy prime + +10057, pensacola, florida",4185.0,56566.0,,,,,,51458.0,71.0,0.0,852.0,amber heard fired and replaced by emilia clarke for aquaman 2?,,,,,,,,,, +1214,https://www.youtube.com/watch?v=Xg8UzAR2XNw,0,0,{'Asshats Love Johnny Depp!! Johnny Depp Es Racista!!'},1,youtube,video,original video,,0.0,,,,,,,16.0,1.0,0.0,,did amber heard beat up her girlfriend? amber heard playlist,,,,,,,,,, +1215,https://www.youtube.com/watch?v=20i2XrZmGSs,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"banned! amber heard protected by twitter because ""harmful behavior!"" + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#domestic #johnnydepp #amberheard",1802.0,16929.0,,,,,,14878.0,7.0,0.0,242.0,"banned! amber heard protected by twitter because ""harmful behavior!""",,,,,,,,,, +1216,https://www.youtube.com/watch?v=huII79wxQA8,0,0,{'Woʀʟᴅ Oғ Sтᴀтus'},1,youtube,video,original video,"song used this video : https://youtu.be/bwt0kcjh-zc + + +plz subscribe and like ❤️",50.0,839.0,,,,,,763.0,19.0,0.0,7.0,aquaman mera status |4k| [amber heard] | #restorethesnyderverse |,,,,,,,,,, +1217,https://www.youtube.com/watch?v=LSzbSHtafbA,0,0,{'Cero LAG'},1,youtube,video,original video,"escándalo, es un escándalo. parece que warner bros. pictures finalmente le hizo caso a sus fans y sustituirá a amber heard por emilia clarke en aquaman 2. aquí te contamos todo lo que sabemos al respecto.",63.0,3008.0,,,,,,2932.0,6.0,0.0,7.0,¿amber heard despedida de aquaman 2?,,,,,,,,,, +1218,https://www.youtube.com/watch?v=bTqgUl0nDjA,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"busted! amber heard paid ""friends"" to lie about johnny depp? wow! + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",4030.0,61581.0,,,,,,56936.0,25.0,0.0,590.0,"busted! amber heard paid ""friends"" to lie about johnny depp? wow!",,,,,,,,,, +1219,https://www.youtube.com/watch?v=79GX1RNB4B8,0,0,{'Motivator Network'},1,youtube,video,original video,"movie: amber heard vs johnny depp's deception, violence, & agents. many actresses were on blackcube's hit list, including rose mcgowan. although elon musk rushed in to help after high-profile violence, amber heard faces depp's agent adam waldman - who represented steele's dossier, an oligarch in organized crime, and targeted julian assange for election interference. support amber heard's life! + +why is amber heard's story beginning to sound like a ""007 flemming's novel"" to an artificial intelligence auditor? + +within death threats & bots online - tech a part of 21st century story - waldman refers to homeland security as depp & waldman claim amber created a 'dossier.' in parallels, 10 years ago actress brittany murphy and julia davis were targeted, severely monitored for testifying on border control issues of homeland security. +brittany murphy lost her roles in happy feet 2 & died suddenly. +amber heard is targeted to remove her from aquaman 2 and to kill her. + +rose mcgowan states weinstein hired agents who pretended they were journalists and in victim's support groups. they terrified dozens of actresses. + +high-volume bots: similarly, intense real-time monitoring pages occurs for amber heard online with ai bots likely using nlu/nlg, ""i am"" persona dialogue - open source on github 2017-2020. ilm/alex context based on previous text dialogues is beyond a +2021 social network analysis paper using google's bert: https://ieeexplore.ieee.org/abstract/document/9385071 +in irony - elon musk's openai gpt-2 or gpt-3 - https://github.com/harperreed/gpt3-persona-bot - likely being used against his ex girlfriend, amber heard. + +witnesses have been threatened with death, as we were alerted to nearly 2 years ago when an alleged partner of ex-staff claimed depp's agents wanted to make lies about amber heard's trips to tijuana and targeting her humanitarian work. their goal is to destroy her & it was the tip of the iceberg. + +j. depp is incited by an audience to terminate president trump at his suggestion. +then we see amber heard (b&w) & elon musk. + +depp harms amber heard with coercive control - a level of understanding now understood about domestic violence in australia, new zealand, and the united kingdom. +the united kingdom is where amber won in the ngn trial proving she was a victim of violence in at least 12 out of 14 incidents. + +audio clips, which were cut out of timed leaks, from incredibly incredible's channel - https://www.youtube.com/channel/ucjknc-woalnxt0h-yj8rxjg - are shown to provide context to coercive control. +from 60 minutes, a woman in australia who eventually called the police is told by a corrupt officer that she shouldn't have texted, in writing, about her husband's temper during intoxication that pushes him over the edge as it would trigger an investigation. + +in 2016, amber and io finally called the police after fearing for her life. officers went to depp's 5 penthouses in downtown los angeles which we show with a pool, numerous rooms, and abusive paintings on the walls which people walk by and ignore. +- right next door to this extreme wealth, are the slums of los angeles. + +""what happened on private jets and islands between amber heard and johnny depp?"" was it really broadcasted, or was it silenced and twisted? + +""hey @mariannaspring [bbc], after i discovered the connection between johnny depp attorney adam waldman & a vladimir putin-connected russian oligarch 16 months ago, i postulated the theory depp's team was using bots to influence public opinion on his case."" - the geek buzz, july 28, 2020 + +""twitter can be a hostile place,”.... “the online attacks in respect of amber have been far worse than anything i experienced during the julian assange case.” - financial times - jennifer robinson, assange's lawyer of 10 years, had to be hired by amber heard. waldman met with assange to target him at least 7 times. +we show a political clip showing texts between waldman and senator warner of virginia about steele's dossier. +many sna analysts are military. + +""... it's a hoax by adam ""former lobbyist for russian putin lackey oleg deripaska who sought complete immunity in the us senate russian 2016 hacking hearings"" waldman."" - the geek buzz, july 29, 2020 (bots & personality?) + +""new legal claims filed against johnny depp for targeting his ex-wife on social media, specifically through the alleged deployment of ""bots"" to smear her and interfere with her career opportunities."" - eric gardner, hollywood reporter + +""rottentomatoes, imdb, metacritic have all all changed their online methods to post reviews because of it. again, very similar patterns and, frankly, targets. in 2016, the target was hillary clinton. in the case of review bombing, the target was female-fronted films."" - the geek buzz, july 28, 2020 + +read 45 page book here for *free* background summary: https://www.scribd.com/document/499721424/amber-heard-vs-johnny-depp-bots-case-21st-century-story + +#amberheard #movie #johnnydepp #metoo #elonmusk #mera #aquaman",410.0,1947.0,,,,,,1486.0,33.0,0.0,18.0,"amber heard vs johnny depp movie | crime, rose mcgowan, violence, bots, brittany murphy, & elections",,,,,,,,,, +1220,https://www.youtube.com/watch?v=Ti4ytF97qsk,0,0,{'Screen Queens'},1,youtube,video,original video,"the crazy relationship of johnny depp and amber heard + +the american actor, producer and musician, johnny depp, lost a high-profile libel action against the sun newspaper. as a result, mr. depp will now forever be associated with the term ‘wife beater’ which is already having consequences for his career, and his former wife, amber heard, will have to continue to live with the impact of past domestic abuse. today we are going to be talking about the crazy relationship of johnny depp and amber heard. hey everyone and welcome back to celeb mania! make sure you stay until the end as you don’t want to miss the best and craziest part of the relationship between johnny depp and amber heard. + +heard met depp while filming the rum diary in 2009, and they began living together the following year. they were married in a private civil ceremony at their home in los angeles on february 3, 2015. in april 2015, heard and depp breached australia's insecurity laws when they failed to declare their two yorkshire terriers to the australian customs service when they flew by private jet into queensland, where he was working on pirates of the caribbean: dead men tell no tales. heard pleaded guilty to falsifying quarantine documents, stating that she had made a mistake due to sleep deprivation. she was placed on a $1,000 one-month good behavior bond for producing a false document; heard and depp also released a video in which they apologized for their behavior and urged people to adhere to the insecurity laws. the guardian called the case the ""highest-profile criminal quarantine case"" in australian history. + +depp was born on june 9, 1963, in owensboro, kentucky, the youngest of four children of waitress betty sue palmer (née wells) and civil engineer john christopher depp. depp moved frequently during his childhood, he and his siblings lived in more than 20 different places, eventually settling in miramar, florida in 1970. depp's parents divorced in 1978 when he was 15, his mother married robert palmer, whom depp has called ""an inspiration"". at the 2016 grammys, depp played a song in tribute to palmer, stating, ""so the words of the song were this toast by my stepfather, who made his exit about 15 years ago, he was this really cool guy. he was a bit of a rounder; he spent about half his life in prison, in statesville, illinois. with the gift of a guitar from his mother when he was 12, depp began playing in various bands. a year after his parents' divorce, he dropped out of miramar high school to become a rock musician; he attempted to go back to school two weeks later, but the principal told him to follow his dream of being a musician, he played with the kids, a band that enjoyed modest local success, from 1980 to 1984. the kids set out together for los angeles in pursuit of a record deal, changing their name to six gun method, but the group split up before signing a record deal. depp subsequently collaborated with the band rock city angels. depp married lori anne allison, the sister of his band's bassist and singer. + +heard was born in austin, texas, to patricia paige (née parsons), an internet researcher (1956–2020), and david clinton heard (born 1950), who owned a small construction company. she has a younger sister, whitney. the family lived outside austin. heard's father broke horses in his free time, and she grew up riding horses, hunting, and fishing with him. she also participated in beauty pageants, although as an adult she has said that she can no longer ""support the objectification"". heard, who was raised catholic, subsequently declared herself as an atheist. at the age of 17, she no longer felt comfortable in texas and dropped out of her catholic high school to move to new york city. she eventually earned a diploma through a home-study course. in new york, she supported herself by modeling but soon moved to los angeles to pursue acting. she made her film debut in a minor role in the sports drama friday night lights (2004), followed by brief supporting roles in films such as drop dead sexy (2005), north country (2005), side fx (2005), price to pay (2006), you are here (2006), and alpha dog (2006), and a guest-starring spot in an episode of the police procedural criminal minds. heard received her first leading role in the unconventional slasher film all the boys love mandy lane, + +▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ +wanna see more of our content?? checkout these playlists- + +1. the dark/untold truth of celebrities- https://youtube.com/playlist?list=plpnjpkwdx5zhwb4imx_pzbjvyen2izwum + +2. simpsons predictions- https://youtube.com/playlist?list=plpnjpkwdx5zjifsvowqgktbixx5l9r5yp + +3. life of billionaire celebrities- https://youtube.com/playlist?list=plpnjpkwdx5zixfuk3nxo_oy1dvhbgiudx +▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬ + +subscribe here- https://www.youtube.com/c/celebmania?sub_confirmation=1 + +#johnnydepp #amberheard #crazyrelationship",8.0,120.0,,,,,,111.0,1.0,0.0,0.0,the crazy relationship of johnny depp and amber heard,,,,,,,,,, +1221,https://www.youtube.com/watch?v=9rC1gEB5wSk,0,0,{'Fire Amber Heard'},1,youtube,video,original video,fire amber heard 😡,2.0,6.0,,,,,,4.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 24,,,,,,,,,, +1222,https://www.youtube.com/watch?v=G1Ge-eq_Uu4,0,0,{'Prabh Langford'},1,youtube,video,original video,"🌈🌈🌈🌈🌈🌈🌈🌈🌈 +🌻🌻🌻🌻🌻🌻🌻🌻🌻 + +#katherinelangford + +#amberheard + +#prabhtoor2004 + + + +bio: + + +name: amber laura heard + +nick name: amber van ree. + +sex: female. + +date of birth: 22 april 1986. +age 34 years in 2020. + +birth place: austin, texas, usa. + +home town: austin, texas, usa + +profession: actress, producer. + +mother tongue: agnostic. + +religion: atheism. + +nationality: american. + +sexual orientation: bisexual + +zodiac sign: taurus. + +first movie: +friday night lights (2004). + +first tv (show): jack & bobby (2004) + +amber heard family: +father: david heard (contractor) + +mother: paige parsons (internet researcher). + +sisters: whitney heard: + +marital status: divorced. + +husband: vito schnabel (2018) + +body measurements: +height: 170 cm +(inches 5’7″). + +weight: 60kg. + +body measurement +34-27-34. + +bra size/breast: 34 b. + +bodytype: hourglass + +dress size: 6 (us) + +chest size: 34 inches +waist size: 27 inches +hips size: 34 inches. + +eye colour: green +hair colour: blonde. + +qualification: high school (dropped out). + +school: st. michael's catholic academy (dropped out). + +hobbies: golf, +rock climbing, +horseback riding. + +favourite things: + +favorite color: pink, blue, red + +favorite actor: +sylvester stallone, arnold schwarzenegger. + +favorite actress: +kristen stewart. + +favorite food: hamburgers + + +socail media accounts: + +facebook: +amber heard. +377,499+ likes. + +instagram: +amberheard. +followers: 3.9 million. +following: 54. + +twitter: +@realamberheard. +followers: 150k +following: 158. + + +net worth: $8 million in 2020. + + + +made by: prabhjot singh toor + +from: perth, australia. + +🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈 +🌻🌻🌻🌻🌻🌻🌻🌻🌻🌻",23.0,123.0,,,,,,87.0,1.0,0.0,12.0,biography and lifestyle of amber heard 🌈🌻.,,,,,,,,,, +1223,https://www.youtube.com/watch?v=mSyEigTo1ug,0,0,{'The Amber Heard Playlist!!'},1,youtube,video,original video,https://catmelodeonnews.com/amber-heard-found-guilty-of-witchcraft/,,,,,,,,250.0,,0.0,,#justiceforjohnnydepp!!? (amber heard playlist!!),,,,,,,,,, +1224,https://www.youtube.com/watch?v=pOHE1uyjCpQ,0,0,{'InformOverload'},1,youtube,video,original video,"family banned from united airlines after this +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +a family has been banned for life by united airlines when their 2 year old daughter refused to wear a mask. the family was apparently travelling from colorado to new jersey over the weekend and told the attendant that they had flown all summer with no issues prior to this. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#unitedairlines #elizorban #banned #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +johnny rogers: https://www.instagram.com/thejohnnyrogers/ + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +jennire narvaez: https://www.instagram.com/jennirenarvaezphotography/ + + +📱instagram: https://www.instagram.com/informoverload +📱twitter: https://twitter.com/informoverload +✉️email | contact: informoverload@gmail.com",2822.0,63716.0,,,,,,59852.0,104.0,0.0,938.0,family banned from united airlines after this,,,,,,,,,, +1225,https://www.youtube.com/watch?v=Glmrbzmo2Ms,0,0,{'Fire Amber Heard'},1,youtube,video,original video,i'm a regular,2.0,16.0,,,,,,14.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 21,,,,,,,,,, +1226,https://www.youtube.com/watch?v=gsB_nI07k6U,0,0,{'Bia Contursi'},1,youtube,video,original video,"divórcio de johnny depp e amber heard está tendo muita treta a alguns anos e hoje vou explicar tudo sobre a treta até esse momento + +***************** +universidade cosplayer: +https://go.hotmart.com/f32640095d + +lojinha: +https://www.facebook.com/biancacontursi/shop/?ref=page_internal + +apoiase: +https://apoia.se/biancacontursi + +assine amazon prime video: +https://amzn.to/2to0gbi + +******************************* +aqui você encontra muita cultura pop: dicas filmes, séries, livros e cosplays. além de conteúdos sobre viagens, moda e comportamento. + +se inscreva no canal e me siga nas redes sociais também! + +this channel is dedicated to pop culture and cosplay universe. subscribe to receive the latest updates and more! + +#desperteseugeekinterior +#embranceyourinnergeek + +site: http://www.blogdicasdabia.com.br + +redes sociais/ social media: +* facebook: http://www.facebook.com.br/biancacontursi +* instagram: http://www.instagram.com.br/biancacontursi +* twitter: http://www.twitter.com/blogdicasdabia +* pinterest: http://www.pinterest.com/blogdicasdabia + +***************************** +parcerias e contato comercial/ for press or commercial inquiries: contato@bureau21.com.br +*****************************",757.0,16933.0,,,,,,15919.0,42.0,0.0,215.0,explicando treta johnny depp e amber heard,,,,,,,,,, +1227,https://www.youtube.com/watch?v=1yuki8YG3xA,0,0,{'Sydney Watson'},1,youtube,video,original video,"the first 100 people to go to https://www.blinkist.com/sydneywatson are going to get unlimited access for 1 week to try it out. you’ll also get 25% off if you want the full membership! + + +links: + +my other video on female abusers: https://youtu.be/b7ejpq6o1p8 + +harry walker agency: https://www.harrywalker.com/speakers/amber-heard + +evie article: https://www.eviemagazine.com/post/amber-heard-is-now-being-paid-thousands-of-dollars-to-give-domestic-violence/ + +not firing heard from aquaman: https://wegotthiscovered.com/movies/wb-reportedly-thinks-firing-amber-heard-aquaman-2-create-worse-pr/ + +johnny depp is radioactive: https://wegotthiscovered.com/movies/industry-insiders-johnny-depp-blacklisted-hollywood/ + +depp fired from fantastic beasts: https://www.thewrap.com/johnny-depp-forced-to-quit-fantastic-beasts-3/ + +sun article detailing alleged abuse by depp: https://www.thesun.co.uk/news/12094756/johnny-depp-amber-heard-allegations-list/ + + +find me: +patreon: https://www.patreon.com/sydneywatson +gab: https://gab.com/sydneywatson +facebook: https://www.facebook.com/sydneywatsonofficial +twitter: https://twitter.com/sydneylwatson +instagram: https://www.instagram.com/sydneywatson__​ + +sign up to my email list (i promise not to harass you haha): https://www.sydneywatson.com",36166.0,464290.0,,,,,,423171.0,307.0,0.0,4646.0,rewarding abusive women: the amber heard story (wtf is this?),,,,,,,,,, +1228,https://www.youtube.com/watch?v=o9w1klOHg4Y,0,0,{'kinowetter'},1,youtube,video,original video,"more clips and interviews: http://kinowetter.com/ +like us on facebook: https://facebook.com/kinowetter +follow us on instagram: https://www.instagram.com/kinowetter/ +follow us on twitter: https://twitter.com/kinowetter + +© 2020 kinowetter.ch + +#jovanadepo +#amberheard +#thestand",14.0,2241.0,,,,,,1738.0,417.0,0.0,72.0,jovan adepo & amber heard the stand interview,,,,,,,,,, +1229,https://www.youtube.com/watch?v=QdbCNQtX8sI,0,0,{'All In One 》world Info'},1,youtube,video,original video,"amber heard reflected on the challenges, she encountered in 2020 and imparted some advice ,to viewers in a recent video interview ,that had netizens dissing the actress for allegedly, lying about being a victim of domestic abuse. + +the ""aquaman"" actress has received even more hate, after johnny depp lost his libel case against the sun in london's high court, where she testified against the actor. since then fans have been relentless in finding fault in everything she does ,and voicing their support for the ""pirates of the caribbean"" star. + +heard's recent interview with access hollywood about her new miniseries, ""the stand"" is no different. it received more dislikes than likes on youtube. it has 269,000 dislikes and only 2,145 likes as we speak. most of the over 90,000 comments are repeated accusation ,directed at the actress for allegedly lying ,about being a victim of domestic abuse. + +""she is not a victim"" someone wrote and quoted what the actress said, in leaked audiotapes of her conversation with depp, ""they won't believe you,because you are a man."" + + +while the 'access' youtube clip of amber heard does demonstrate, how disliked she is.the fact it got over a million views is a win for them engagement wise.",42.0,2244.0,,,,,,2119.0,40.0,0.0,43.0,"""record"" 200k dislikes for amber heard: amber's youtube interview disliked by over 200k people",,,,,,,,,, +1230,https://www.youtube.com/watch?v=2i4WKTnYOuk,0,0,{'Dla Ciekawskich'},1,youtube,video,original video,"zobaczcie nasz odcinek ► jack sparrow - johnny depp stworzył legendę większą niż oryginał! 👉 https://youtu.be/cklkysvm0yi +johnny depp + heard, paradis, moss, ryder... problematyczny casanova? johnny depp od kilku lat żyje w cieniu skandalu jakim skończyła się jego miłość do amber heard. kompromitujące oskarżenia byłej żony i kolejne batalie sądowe stały się dla aktora codziennością. to jednak nie była pierwsza kobieta którą kochał i to nie ona zmieniła go na zawsze! jak wyglądało jego życie uczuciowe na przestrzeni lat? jak były jego związki z takimi paniami jak winona ryder, kate moss, i vanessa paradis, która została matką jego dzieci? z kim jeszcze się spotykał i dlaczego te związki się kończyły? zobaczcie! +#johnnydepp #amberheard #winonaryder + +zobacz także: orlando bloom - narzeczony katy perry uzależniony od kobiet? https://youtu.be/pg4rhzureci + +jeśli podobał się wam filmik, zostawcie łapkę w górę! 👍 +nie zapomnijcie też o subskrypcji! 👉 https://bit.ly/2pcnnil +facebook ► https://www.facebook.com/kfiatki + +muzyka biblioteka youtube",537.0,11958.0,,,,,,11365.0,7.0,0.0,49.0,"johnny depp + heard, paradis, moss, ryder... problematyczny casanova?",,,,,,,,,, +1231,https://www.youtube.com/watch?v=et4jiWft1qc,0,0,{'#JohnnyDeppIsRacist'},1,youtube,video,original video,,1.0,,,,,,,15.0,1.0,0.0,,why isn't amber in jail? (amber heard playlist!!),,,,,,,,,, +1232,https://www.youtube.com/watch?v=XsFovwPiu4M,0,0,{'READY TO GLARE'},1,youtube,video,original video,"go to https://www.casetify.com/readytoglare today to get 20-percent off your new favourite phone case! + +------------------- + +prior videos: + + +https://youtu.be/omwd6veacx0 + + +https://youtu.be/ke14y7x-w-a + +------------------------ +intro by : https://dserpentes.carrd.co/ + +—————————————- + + + +find me on other platforms: + +merch: https://outloudmerch.com/collections/ready-to-glare + +second channel: https://www.youtube.com/channel/uc-cdm1lnd3sncx8qd2gidtw + +patreon: https://www.patreon.com/readytoglare + +younow: https://www.younow.com/readytoglare + +instagram: https://www.instagram.com/readytoglare/ + +twitter: https://twitter.com/readytoglareyt + +tumblr: http://readytoglare.tumblr.com + +email: readytoglare@gmail.com",8937.0,120663.0,,,,,,110438.0,89.0,0.0,1199.0,amber heard is being paid to talk about dv,,,,,,,,,, +1233,https://www.youtube.com/watch?v=3StVX15SkkE,0,0,{'Popcorned Planet'},1,youtube,video,original video,"i've seen the rumors, as we wait to find out if amber heard in fact was not telling the truth about her donations to children's hospital of los angeles and the aclu. an action that was part of her settlement with johnny depp. #justiceforjohnnydepp + +also just wanted to signal boost this great article from carla: https://carlapaolap.medium.com/amber-heard-is-the-donald-trump-of-the-metoo-movement-cd256e64d13a + +s u p p o r t t h i s. c h a n n e l: +subscribe, donate and follow andy here: https://linktr.ee/andysignore + +and join this channel to get access to perks: +https://www.youtube.com/channel/uccdicbo4cle4s1wbxjjsusg/join + + +f o l l o w m y f r i e n d s: +jody’s corner: https://www.youtube.com/channel/uc4ukkunzwgbjyesalvqdqcg +nerd report: https://www.youtube.com/user/nukethefridgetv +the planet of nerds with stef, chris & kev - https://www.youtube.com/channel/ucqdpgnhfwqt-ujeqkwinkda +adan @ nerdtots: https://www.youtube.com/channel/ucpeik5xccv2hgfqrnna074g +damian''s indie horror trailer the other side: https://www.youtube.com/channel/ucir9krgjjkz3vbbrgqtmt6wa +darth daddy lunga's the grey council - https://www.youtube.com/channel/uc2zzqsodtynawkug8ww--qw + +a b o ut t h i s c h a n n e l : +@popcornedplanet offers passionate takes on all things movies, tv & pop culture, created and led by andy signore (creator of screenjunkies, honest trailers, moviefights, man at arms and more) you can learn about andy’s journey here: https://www.youtube.com/watch?v=3wgofa4a0um + +andy also launched hugging the cactus, a channel & series detailing the dangers of cancel culture, stories of redemption and life experience, which you can learn more here: http://www.uncanceled.com or subscribe at: http://youtube.com/huggingthecactus + +c o n t a c t / b u s i n e s s : +popcornedplanet@gmail.com",1570.0,20815.0,,,,,,18879.0,62.0,0.0,304.0,amber heard took back charity to children's hospital!?! - justice for johnny depp,,,,,,,,,, +1234,https://www.youtube.com/watch?v=lrImdakr9R8,0,0,{'Api Talk'},1,youtube,video,original video,"elon musk sinhala video about becomes world's second billionaire sinhala tech entrepreneur elon musk has topped microsoft founder bill gates to become the world's second richest man after a meteoric rise in his personal fortune. + +mr musk's net worth jumped by $7.2bn (£5.4bn) to $128bn after shares in his car firm tesla surged. + +#elon_musk_sinhala #elon_musk_biography #elon_musk_life_story +#elon_musk_spacex #elon_musk_brain_chip + + +motivational speaker - jeenu dharmakeerthi , jayspot motivational compilation #31 , sinhala motivational video , fail big , sinhala inspirational vide , sinhala motivational speech , the best sinhala motivation , most powerful sinhala motivation +fail big - life story of elon musk - sinhala motivational video +elon musk's secret projects on mars +real life iron man elon musk life story - sinhala | part 1 +elon musk full biography (sinhala) | gs episode 04 +10 things you didn’t know about elon musk sinhala | elon musk ගැන නොදන්නා කරැණු +who is elon musk?? |cyber truck | sinhala +elon musk | ඊලෝන් මස්ක් | sinhala [gd ramesh] entrepreneur, investor, engineer | sky drops +#elon_musk_sinhala +#tesla +#vega +#apitalk +elon musk sinhala, elon muskge jeewitha kathawa, elon musk life story in sinhala, elon musk sinhala full biography, tesla ceo full life story sinhala, granville studios, space x sinhala, tesla sinhala, elon musk lifestyle, elon musk motivation sinhala, sinhala motivation, tesla, space x motivational speaker - jeenu dharmakeerthi, jayspot motivational compilation #31, sinhala motivational video, fail big, sinhala inspirational vide, sinhala motivational speech, the best sinhala motivation, most powerful sinhala motivation victory is sweetest when you've known defeat - sinhala motivational video, jayspot motivational compilation #47 motivational speaker - jeenu dharmakeerthi, jayspot motivation video, sinhala motivational video, motivation sinhala, motivational video sinhala, jayspot motivation, motivational video, sinhala motivation, motivational speech sinhala, jayspot motivational video, jay spot, sinhala motivational speech, j spot, motivational speech in sinhala, positive thinking sinhala malinda alahakoon, malinda, techtrack, techtrackshow, sri lanka, sinhala, science, technology, education, elon musk, mars, starship, boring company, the boring company, solar city, tesla motors, cybertruck, hyperloop amber heard, johnny depp, elon musk, elon musk and amber heard video, elon musk and amber heard cctv, johnny depp and elon musk, johnny depp amber heard and elon musk, aquaman 2 resign, fantastic beasts new 2022, mads mikkelsen, aquaman amber heard, amber heard sinhala, watapita, watapita vlog, elon musk and amber heard in elevator video, elon musk and johnny depp, johnny depp fantastic beasts, resign leteer amber heard, amber heard videos, johnny and amber, johnny, depp + +✔️ like 🖤 share ❤️ subscribe and click the bell 🔔 + +---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- + +✅ lets connect! + +facebook ► https://www.facebook.com/apitalkcreators/ + +instagram ► https://www.instagram.com/ruwansri_ + + https://www.instagram.com/lahindraj + +----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------",27.0,1053.0,,,,,,1015.0,3.0,0.0,8.0,elon musk sinhala video about becomes world's second billionaire sinhala - api talk,,,,,,,,,, +1235,https://www.youtube.com/watch?v=lnLN7lN4tdM,0,0,{'Zaburzenia Fikcji'},1,youtube,video,original video,"🔥 wspieraj kanał: https://patronite.pl/zaburzeniafikcji +📧 kontakt: zaburzeniafikcji@gmail.com +📸 instagram: https://www.instagram.com/zaburzeniafikcji/ +📘 facebook: https://www.facebook.com/groups/2788409557889255/ +🎙️ podcast: https://anchor.fm/bezfikcji",345.0,5596.0,,,,,,5094.0,23.0,0.0,134.0,z życia johnny depp'a i amber heard,,,,,,,,,, +1236,https://www.youtube.com/watch?v=fhOyh1PfWlk,0,0,{'#JohnnyDeppIsRacist'},1,youtube,video,original video,,1.0,,,,,,,48.0,2.0,0.0,,did amber heard beat up her girlfriend? (amber heard playlist),,,,,,,,,, +1237,https://www.youtube.com/watch?v=kUn_5zR8uCU,0,0,{'TheFilmJunkee'},1,youtube,video,original video,"afsp link: https://afsp.donordrive.com/index.cfm?fuseaction=donordrive.personalcampaign&participantid=2384952 + +subscribe: https://www.youtube.com/user/thefilmjunkee + +support me on patreon: https://www.patreon.com/user?u=2799939&ty=h + +website: http://filmjunkee.com/ + +instagram: https://www.instagram.com/junkeefilm/ + +twitter: https://twitter.com/daveepena + +facebook: https://www.facebook.com/thefilmjunkee",231.0,4284.0,,,,,,3991.0,15.0,0.0,47.0,zack snyder's justice league could be r-rated w/ f-bomb from batman | amber heard talks nerds,,,,,,,,,, +1238,https://www.youtube.com/watch?v=H44bcc21YqQ,0,0,{'Cinema Hub'},1,youtube,video,original video,"cinemagazin ilk bölümü youtube üzerinde yayında. +--------------------------------------------------------------------------------------------------------------------------- +bu yeni serimizde oğuzhan ve oğuzhan olarak sinema etrafında dönen magazinsel olayları kendi çapımızda yorumlayıp eleştirdik. biz sohbet ederken çok eğlendik. umarım sizler de dinlerken eğlenirsiniz. +--------------------------------------------------------------------------------------------------------------------------- +⏩cinemahub social: http://social.cinemahub.org +⏩cinemahub blog: http://blog.cinemahub.org +⏩i̇nstagram : http://instagram.com/cinemahub1 +--------------------------------------------------------------------------------------------------------------------------- +⭐sosyal medyamıza katılarak yeni arkadaşlar edinebilir,yeni projelere katılabilir,set ürünlerinizi satabilir,yaratıcı fikirleriniz için fon toplayabilirsiniz.⭐",5.0,79.0,,,,,,72.0,0.0,0.0,2.0,"cinemagazin - haykırışlar,i̇mkan,warner bros,nolan,johnny depp ve amber heard ilişkisi - cinemahub",,,,,,,,,, +1239,https://www.youtube.com/watch?v=mY7lerp0LDE,0,0,{'whatsapp fun movies trailer'},1,youtube,video,original video,"creating aquaman 2 was challenging because i was not into this franchsie. but my dc lover side made me appreciate this film more. i watched this film once and i thought it was decent. the fresh clips are not too hard to find since there are plenty of cosplay to chose from. to avoid making this dream trailer feel low budget i chose clips from the aquaman movie it self. such as the atlantic city. + +the music was great, despite the lack of humor the soundtrack by the equalizer 2 trailer #2 was great because it had lots of trailer fling to it. the main actor himself had lots of movies to chose from since this is the first time i made a project about him. not the first aquaman project though, i did one back in 2020 for one of the trailer style of the infinity saga.",6.0,67.0,,,,,,53.0,6.0,0.0,2.0,"aquaman 2 2022 teaser trailer jason momoa, amber heard",,,,,,,,,, +1240,https://www.youtube.com/watch?v=EuLlH9uG55A,0,0,{'Stevie J Raw'},1,youtube,video,original video,"greg ellis joins me live to discuss his support for johnny depp regarding amber heard. johnny depp is innocent and after working with him on pirates of the caribbean greg ellis is someone who can speak directly to the type of man depp is. + +this is outrageous and johnny deserves justice!!! + +johnny depp tribute by inspired with johnny depp - https://www.youtube.com/watch?v=jqng_fs5cyg&t=1391s + +charity link gosh - https://www.justgiving.com/fundraising/stevie-j-raw1 + +petition to get johnny back - https://www.change.org/p/warner-brothers-bring-johnny-depp-back-to-fantastic-beasts?recruiter=24448735&recruited_by_id=229d8750-1a30-0130-d3ed-3c764e04873b&utm_source=share_petition&utm_medium=copylink&utm_campaign=petition_dashboard + +t-shirt link - https://teespring.com/buy-not-a-bot?utm_swu=3426&utm_campaign=edit_live_listing_minor&utm_source=sendwithus_seller&utm_medium=email_transactional&pid=525&cid=101933 + +let's talk. +join us and enjoy! + +sign the petition here!! - https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2 + +johnny depp is innocent and amber heard must be held accountable for what she has done. + +checkout the stream and let us know what you think. + +website - steviejraw.com + +thanks for watching!! + +website - steviejraw.com + +hit that subscribe button for more news & entertainment. + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - steviejraw@outlook.com + +thanks for watching!! +#goshjohnnydepp #justiceforjohnnydepp #gregellis",858.0,8085.0,,,,,,6946.0,7.0,0.0,274.0,actor greg ellis and his support for johnny depp v amber heard,,,,,,,,,, +1241,https://www.youtube.com/watch?v=_qENuCmZBUI,0,0,{'UnBoxPHD'},1,youtube,video,original video,"amber heard audio tape to johnny depp. what did she say about that evening on the james corden show. + +#jamescorden #amberheard #johnnydepp",154.0,5280.0,,,,,,5083.0,10.0,0.0,33.0,amber heard james corden interview,,,,,,,,,, +1242,https://www.youtube.com/watch?v=1Q1S8jve-2o,0,0,{'Macam TV'},1,youtube,video,original video,"aquaman has been blinded in a mysterious event. years have passed and soon he regains his sight. however, damage to his land has been done. its up to him and mera to find out what happened. + +hey guys i would like to make it clear that this trailer is fan made. that means it contains clips from other movies, put together with special effects using wondershare filmora video editor and photopea (photopea.com) photo editor. + +►what is fan made movie trailer? + +in a nutshell fan made trailers are created for extreme movie fans. that's why its not for everybody because just like pro-wrestling, some hate it some love it. if you are into fan made trailers which means you appreciate bringing new ideas to your favorite movies. but my trailers, are not like any other, one word to describe it, realistic. + +►macamtv's purpose + +if you are new here my name is jr macam, i'm the man behind your realistic dream trailers. the purpose of the channel is simple (not to trick people haha) , to create a community that is passionate to bring dream movies to life. if that sounds like you want to become a part of, subscribe!!!! + +►support macamtv + +creating this video take days to produce and publish. i do lots of research and takes a lot of time. help macamtv make more dream trailers by supporting in patreon. +link here: https://www.patreon.com/macamtv + +►thanks to my patrons! +danielle moore +nazzaria grendanin +jazmyn +lynn queen +james johnson + +#restoresnyderverse +---------------------------------- +editing details: + +creating aquaman 2 was challenging because i was not into this franchsie. but my dc lover side made me appreciate this film more. i watched this film once and i thought it was decent. the fresh clips are not too hard to find since there are plenty of cosplay to chose from. to avoid making this dream trailer feel low budget i chose clips from the aquaman movie it self. such as the atlantic city. + +the music was great, despite the lack of humor the soundtrack by the equalizer 2 trailer #2 was great because it had lots of trailer fling to it. the main actor himself had lots of movies to chose from since this is the first time i made a project about him. not the first aquaman project though, i did one back in 2020 for one of the trailer style of the infinity saga. + +the line ""is only a myth"" is great connection to how aquaman is a mystical character. the film see had great lines talking about ""gods"" that perfectly fits this dream trailer. speaking of perfectly fits, the clip with aquaman attacks the bad guy we get a transition to a guy getting attacked in the water. + +video credits | aquaman | see (2019) | 3 days to kill | the hollow | the undoing | togo (2019) | candyman (2020) | creating aquaman's suit | ikon collectibles 1:1 by cosplay chris | aquaman cosplay by mike kirts | aquaman's mera costume | diy aquaman cosplay tattoos by the woodland elf | mulher maravhilha vs aquaman by franklin fernandes +music credits | the equalizer 2 trailer #2 soundtrack +--------------------------------------- +►music credit: youtube audio library and thanks to feature presentation youtube channel for providing the trailer soundtracks. + +------------------------------------- + +if you like this video feel free to hit that notification icon to become part of the macamtvfam. + + +►►subscribe to my youtube channel: +youtube.com/c/macamtv + + +►►twitter @macamtvofficial + +why you should follow me on twitter? + +i will be posting what i'm currently working on. this is the only way for you to get an idea of what is coming weeks before! + + +►►instagram @macamtvofficial + +why you should follow me on instagram? + +if you like pictures then this is for you. basically i will be posting the most recent video's cool posters and fan art created by me! + + +►►facebook @macamtvofficial + +why you should follow me on facebook? +i will be posting deleted videos that never made it to the channel! +------------------------------------------------------------------------ + +copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use.",8579.0,1029729.0,,,,,,1017877.0,3058.0,0.0,215.0,"aquaman 2 (2022) teaser trailer - jason momoa, amber heard (fan made)",,,,,,,,,, +1243,https://www.youtube.com/watch?v=ig7D0lFr5Gs,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx + +#amberheard #johnnydepp #thestand",3471.0,70542.0,,,,,,66511.0,50.0,0.0,510.0,"amber heard's 1st interview breaks judge's order, attacking johnny depp through sky!",,,,,,,,,, +1244,https://www.youtube.com/watch?v=39LKse-B4m4,0,0,{'What About'},1,youtube,video,original video,"activism is just a showcase of various acts & plays: race play, gender play with the gender wars and age play with the generation gap, etc... +- +- +- +- +#amberheard #domesticviolence #mainstreammedia #arigold #warnersbros #harrywalkeragency #endeavorcontent #johnnydepp #movienews #aquaman #mera #domesticabuse #theobamas #theclintons #actress #celebrity #misogyny #rant #dccomics #politics #comicsgate #fandommenace #movies #cancelculture #media #comicbookcharacter #justiceleague #activist #dceu #sexism",50.0,433.0,,,,,,370.0,0.0,0.0,13.0,amber heard & the mainstream's mocking of domestic violence,,,,,,,,,, +1245,https://www.youtube.com/watch?v=UCqBZopmgsA,0,0,{'The A.V. Club'},1,youtube,video,original video,"whoopi goldberg’s been eyeing the role of the stand’s mother abagail for the past 26 years. as she explained to vanity fair, she wanted the part back in 1994, when stephen king’s epic was first getting the miniseries treatment at abc, though the role eventually went to ruby dee. mother abagail is the 108-year old prophet who, thanks to her line of communication with god, becomes the unifying force behind the boulder free zone, a community of peaceful apocalypse survivors. “i’ve been fighting with not making her the magic negro because she’s complicated,” goldberg said, a longtime fan of king’ work. she’s part of a sprawling cast of stars assembled to bring the author’s best-selling novel to life yet again—this time as a nine-episode miniseries for cbs all access—which (with king’s blessing) looks to update the classic tale of good versus evil for a modern audience. during a virtual press junket ahead of the stand’s premiere, the a.v. club was given the opportunity to speak with goldberg and her co-stars about the legacies of their iconic characters; greg kinnear, jovan adepo, amber heard, nat wolff, odessa young, katherine mcnamara, and james marsden all weighed in on what it means to step into these well-known roles, and shared how they hope to highlight different shades to king’s work. + +the stand premieres on cbs all access on december 17, and will air new episodes weekly ever thursday. + +visit: http://avclub.com +like: http://www.fb.com/theavclub +follow: http://www.twitter.com/theavclub + +#whoopigoldberg #thestand #stephenking",41.0,6768.0,,,,,,6714.0,10.0,0.0,3.0,whoopi goldberg and the cast of the stand on bringing new textures to stephen king's beloved epic,,,,,,,,,, +1246,https://www.youtube.com/watch?v=OtfSkSUuwDY,0,0,{'Fire Amber Heard'},1,youtube,video,original video,give me money.,1.0,3.0,,,,,,2.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 8,,,,,,,,,, +1247,https://www.youtube.com/watch?v=JEefuAiXeAw,0,0,{'BroManLegion'},1,youtube,video,original video,"hey what is up everybody! today we're talking about the dispute going on between johnny depp and amber heard to ask one simple question. who's the real victim here? this situation is crazy so you're not gonna want to miss it and in the mean time make sure you like and subscribe for more great content in the future. ill see you in the next one. peace + +patreon: +https://www.patreon.com/bromanlegion + +twitter: +https://twitter.com/bromanlegion",151.0,1369.0,,,,,,1147.0,1.0,0.0,70.0,johnny depp vs amber heard. who's the real victim!?,,,,,,,,,, +1248,https://www.youtube.com/watch?v=RyCBxjCukug,0,0,{'eHacker'},1,youtube,video,original video,"amber heard's incredibly creepy love letter to johnny depp! (scary!) +check out channel membership if you are keen to support the channel! +new members get their names in the credits! + +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods + +""podcast series"" means i will not appear on facecam and the edits will usually be light.",1017.0,16765.0,,,,,,15374.0,10.0,0.0,364.0,amber heard's incredibly creepy love letter to johnny depp! (scary!),,,,,,,,,, +1249,https://www.youtube.com/watch?v=0YrPGo2cU0k,0,0,{'Curious Edits'},1,youtube,video,original video,#amberheard #shorts,142987.0,2503033.0,,,,,,2355617.0,3565.0,0.0,864.0,amber heard | aquaman | whatsapp status #wharan full screen 🔥,,,,,,,,,, +1250,https://www.youtube.com/watch?v=ywjsa9X_C9o,0,0,{'Fire Amber Heard'},1,youtube,video,original video,see told you it will happen everyday.,1.0,4.0,,,,,,3.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 15,,,,,,,,,, +1251,https://www.youtube.com/watch?v=kTI0Sd6DnKo,0,0,{'Yahoo Entertainment'},1,youtube,video,original video,"amber heard, james marsden, and the cast of 'the stand' talk to yahoo entertainment about what it was like filming a tv show about a pandemic during the coronavirus pandemic. + +** subscribe: https://yhoo.it/2nlr2nw ** + +follow us on: +facebook: https://www.facebook.com/yahooenterta... +instagram: https://www.instagram.com/yahooentert... +twitter: https://twitter.com/yahooent",35.0,4022.0,,,,,,3415.0,487.0,0.0,85.0,the cast of 'the stand' on filming a tv show about a pandemic during an actual pandemic,,,,,,,,,, +1252,https://www.youtube.com/watch?v=VcwS5ch6aOM,0,0,{'Charly Mustaine'},1,youtube,video,original video,"es tiempo de ver lo mas destacable de la comunidad con capa en esta semana. + +video de kate: https://www.youtube.com/watch?v=dm2cb3egdui&feature=emb_logo +hawkeye: https://blogdesuperheroes.es/hawkeye-jeremy-renner-hailee-steinfeld-rodaje-nueva-york/ +eco en hawkeye: https://www.youtube.com/watch?time_continue=1&v=kxyp3zjtsuo&feature=emb_logo",505.0,5337.0,,,,,,4736.0,11.0,0.0,85.0,"¡¡¡tom holland usara el traje negro, amber heard en piratas del caribe y mas...!!!",,,,,,,,,, +1253,https://www.youtube.com/watch?v=ToXopOzSZJs,0,0,{'iamnitinnk'},1,youtube,video,original video,"hi iamnitinnk i made status people fall in love with #marvel #dc #webseries #bollywood #hollywood + + + +follow me instagram--: +https://instagram.com/iamnitinnk",14892.0,417022.0,,,,,,401701.0,351.0,0.0,78.0,aquaman mera whatsapp status in vertical | amber heard |,,,,,,,,,, +1254,https://www.youtube.com/watch?v=7-glyknR_gs,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"amber heard gets absolutely ratioed from her interview with access hollywood on adapt and survive. also mild news from dc comics/ warner brothers regarding her roll in aquaman. let me know what you think! + +💕 don't forget to like & subscribe! 💕 + + + +backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + + +become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +if you want to support my channel, please check out my patreon and subscribe star below: + +patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp #deppmovienight #deppcember #westandwithjohnnydepp #dccomics #aquaman #aquaman2 #mera #warnerbrothers",1217.0,14168.0,,,,,,12626.0,32.0,0.0,293.0,amber heard gets btfo'd by fans! | most hated woman in hollywood!,,,,,,,,,, +1255,https://www.youtube.com/watch?v=YQ4cDxFNL3Q,0,0,{'Washington Post'},1,youtube,video,original video,"washington post journalists who covered the 2020 campaign reveal their top takeaways and preview what to watch for in 2021. + +politics and accountability anchor libby casey interviews thirty-six colleagues about their work, including political reporters assigned to cover the campaign, the washington post’s director of polling, and the washington post fact checker. they talk about the challenges facing president-elect joe biden to unite and run the country, questions surrounding the future of both the democratic and republican parties, and the need for vice president-elect kamala harris to show americans what she offers to the electorate. + +the washington post journalists also focus on president donald trump and his continued role defining the republican party, even after he leaves office on january 20th, 2021. the journalists share their goals going forward, including closely covering hispanic and asian voter registration, and why the “youthquake” predicted by bernie sanders didn’t turn out at the polls. they also discuss their concerns about misinformation and the country’s divisions. the team digs into polling and discusses how it should be used in political coverage. libby casey also asks how the reporters did their jobs amid the coronavirus pandemic, which restricted travel and meeting with voters. + +featuring: dan balz, philip rucker, eugene scott, arelis hernández, amber phillips, cleve wootson, david weigel, jacqueline alemany, jm rieger, michael scherer, robert costa, tom hamburger, martine powers, lenny bronner, emma brown, scott clement, rhonda colvin, matt viser, karen tumulty, david fahrenthold, glenn kessler, michelle ye hee lee, jose del real, joyce koh, chelsea janes, vanessa williams, amy gardner, aaron blake, caroline kitchener, jeremy bowers, colby itkowitz, philip bump, james hohmann, annie linskey, ashley parker, and amy wang. + +follow us: +twitter: https://twitter.com/washingtonpost +instagram: https://www.instagram.com/washingtonpost/ +facebook: https://www.facebook.com/washingtonpost/ + +subscribe to the washington post on youtube: https://wapo.st/2qodcqk + +#washingtonpost #journalism #2020takeaways",361.0,13102.0,,,,,,12368.0,165.0,0.0,208.0,what we learned in 2020 | how to be a journalist,,,,,,,,,, +1256,https://www.youtube.com/watch?v=D2154l1h7hU,0,0,{'eHacker'},1,youtube,video,original video,amber heard was slammed by elon musk's friend!?,708.0,8846.0,,,,,,7821.0,8.0,0.0,309.0,amber heard was slammed by elon musk's friend!?,,,,,,,,,, +1257,https://www.youtube.com/watch?v=y9VhT8jw7zI,0,0,{'InformOverload'},1,youtube,video,original video,"man goes to jail for trying to see girlfriend in lockdown +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +lockdown has seen people go to quite extreme lengths in order to get what they want. for some, the idea of staying home and waiting for all this to pass isn’t such a big deal. for others, one day of being locked up in their homes is enough to make them want to escape their new found living hell. either way, to say that these unprecedented times have led to people doing things they likely normally wouldn’t do, is pretty accurate. and that is exactly what happened to dale mclaughlan, who has been sent to jail for a month after breaking coronavirus lockdown protocols. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#lockdown #arrested #jailtime #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +jarred bronstein: http://instagram.com/bronst7 + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +dylan lamovsek: https://twitter.com/uptownduck00 + +📱instagram: https://www.instagram.com/informoverload +📱twitter: https://twitter.com/informoverload +✉️email | contact: informoverload@gmail.com",961.0,19493.0,,,,,,18312.0,29.0,0.0,191.0,man goes to jail for trying to see girlfriend in lockdown,,,,,,,,,, +1258,https://www.youtube.com/watch?v=OX2l_iH6eI4,0,0,{'HG Tudor - Knowing The Narcissist : Ultra'},1,youtube,video,original video,"#narcissism #amberheard #depp +amber heard goes under the tudorscope to ascertain whether she might be a very performing narcissist? + +advanced understanding : analysis of heard & depp telephone conversation https://gum.co/nlpyr",1537.0,35907.0,,,,,,33859.0,34.0,0.0,477.0,amber heard : a very performing narcissist?,,,,,,,,,, +1259,https://www.youtube.com/watch?v=90LEF4TqAP0,0,0,{'Captain jack Sparrow UK'},1,youtube,video,original video,haha when johnny sees amber,159.0,3555.0,,,,,,3366.0,0.0,0.0,30.0,captain jack runs into mera 🏴‍☠️ johnny depp / amber heard,,,,,,,,,, +1260,https://www.youtube.com/watch?v=gqpC6jcKvus,0,0,{'In News English'},1,youtube,video,original video,"subscribe i n news english youtube channel to all the big news of the world. + +a petition seeking to have amber heard removed from warner bros.' aquaman 2 recently surpassed 1.5 million signatures. + +the change.org petition was created several years ago, in the wake of heard's messy divorce from johnny depp and reports that both actors were physically violent during their tumultuous relationship. the petition is addressed to courtney simmons, svp of publicity & communications for dc warner bros. and paul mcguire, corporate communications of dc entertainment. + +it read in part, ""in his $50 million lawsuit, johnny depp describes many incidents of domestic abuse that he suffered at the hands of his (then) wife amber heard, including one incident where she punched him twice in the face and another where she shattered his finger with a vodka bottle, and his finger had to be surgically reattached. he will bear the scar from that for the rest of his life."" + +the author of the petition further explained that heard ""was arrested in 2009 for abusing a former domestic partner, tasya van ree"" and alleged that the actor has ""systematically crusaded to ruin depp in hollywood, repeating multiple accounts of fake incidents in which she had actually abused johnny depp, but lied and created false accounts of him being the abuser."" + +it was reported back in 2019 that depp had called on warner bros. to remove heard from the first aquaman film, in which she portrayed superheroine and warrior mera. however, this didn't come to pass, and heard recently confirmed she will reprise the role in the upcoming sequel. the petition started trending again -- and currently sits at 1.6 million signatures -- after depp lost a libel case in early november against the sun. + +following the ruling on the libel case, which was over a headline that referred to depp as a ""wife beater,"" warner bros. asked the actor to resign from fantastic beasts 3. while depp obliged, the nature of his contract means warner bros. still needs to pay the actor's $10 million salary, as he'd already filmed a scene. depp tried to appeal the case, but judge andrew nicol ruled against him last week. nicol denied depp's appeal because he determined it did not have ""a reasonable prospect of success."" the judge also ruled that the actor must pay an initial £628,000 ($837,437) in legal fees to the sun. + +directed by james wan, aquaman 2 stars jason momoa as aquaman, amber heard as mera, patrick wilson as ocean master and yahya abdul-mateen ii as black manta. the film is currently scheduled to arrive in theaters on dec. 16, 2022.",0.0,24.0,,,,,,24.0,0.0,0.0,0.0,petition to remove amber heard from aquaman 2 surpasses 1.5 million signatures,,,,,,,,,, +1261,https://www.youtube.com/watch?v=_v8Hogx-qDg,0,0,{'eHacker'},1,youtube,video,original video,amber heard joins meghan markle and harry's speaking agency!,303.0,2903.0,,,,,,2330.0,6.0,0.0,264.0,amber heard joins meghan markle and harry's speaking agency!,,,,,,,,,, +1262,https://www.youtube.com/watch?v=1tu1NAg82_k,0,0,{'IMDb'},1,youtube,video,original video,"a divided country, a grab for power, a worldwide pandemic… despite being based on #stephenking's novel that’s now over 40 years old, #thestand is operating in familiar territory. #amberheard, #jamesmarsden, #odessayoung, #gregkinnear, #bradwilliamhenke, #henryzaga, #natwolff, #jovanadepo, #katherinemcnamara and the series executive producers sound off on the new cbs all access adaptation of “the stand.” + +the nine-part miniseries that premieres december 17, 2020, and airs weekly after that also stars #owenteague as harold lauder, #whoopigoldberg as mother abigail and #alexanderskarsgård as randall flagg, with #ezramiller appearing as trashcan man. the novel was first published by king in 1978 as his take on an american version of j.r.r. tolkein’s “lord of the rings” novels.the new miniseries is directed in part by ‘the new mutants’ helmer josh boone. stephen king also wrote a new coda for this version of his epic novel.",28.0,1237.0,,,,,,1194.0,8.0,0.0,7.0,find out why “the stand” is the most 2020 show,,,,,,,,,, +1263,https://www.youtube.com/watch?v=val9ZFMBjmc,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"elon musk and amber heard busted lying!; depp wins by forcing elon to testify! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #elon musk",4606.0,167085.0,,,,,,161633.0,155.0,0.0,691.0,elon musk and amber heard busted lying!; depp wins by forcing elon to testify!,,,,,,,,,, +1264,https://www.youtube.com/watch?v=U_MYHvZZizY,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"the judge is sick of amber heard; he's had enough! gives depp a big win! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #johnnydepp #amberheard",9602.0,142687.0,,,,,,132222.0,110.0,0.0,753.0,the judge is sick of amber heard; he's had enough! gives depp a big win!,,,,,,,,,, +1265,https://www.youtube.com/watch?v=76BEjJnt_7s,0,0,{'Have It All Daily'},1,youtube,video,original video,"title: while johnny depp is losing projects. amber heard is unlocking new money minting avenue + +read more stories here: www.haveitalldaily.com + +description: + +if you have followed the famous johnny depp amber heard and the sun uk “wife beater” case, one thing is for sure, there was physical altercation from both sides while the couple was in a relationship. +what is attack and what is defense was subjective and the only person who had a say on this was the london high court judge, but what happened after that? + +one of the most unethical workplace, yes you guessed it right, hollywood, that has continued for years with people like harvey weinstein, kevin spacey, people with past drug dealing history, a place for casting couch and misogyny has decided to play the moral police. +johnny depp is losing projects after project and on the other side amber heard is using this opportunity to mint money. + +one more interesting fact is that the fan following of johnny is increasing every day and yes we don’t mean fans who appreciated his acting, that has already been huge, but these are the fans who really feel johnny is getting an unfair treatment. on the other side amber heard is getting equal amount of hate. + +but it seems, she knows this is an opportunity and she is busy making the most of it, she is giving lectures on domestic violence, may be because she survived it and wants to change the world to be a better place, yeah only after charging $ 33000. + +here is the quote from the source article: + +out of everything you might think amber heard has lost, it is undoubtedly not work. the actor holds her ground in all her projects regardless of the massive hatred she is subjected to by the online users. while she still stands strong and continues to get on board for more movies, the latest reports tell us that she has unlocked one more money-minting avenue in her life. heard has been roped by an agency to give talks on domestic violence and her remuneration for a single session is huge for just talking. + +now you might be wondering if there was a physical altercation from both sides, why is amber heard even being heard on domestic violence and paid hefty sums. well it will take us back to where we started, attack and defense. + +on the other hand, same day you read about johnny depp being blocked from the project he made iconic. + +according to the daily mail uk, the entertainment conglomerate had distanced itself from the 57-year-old actor even before his 'wife beater' libel trial in the uk. +also the report says disney 'balked' at executive producer jerry bruckheimer's idea of bringing back depp for a cameo in the female-centric spin-off of the franchise, rumored to be led by margot robbie. + +now we don’t know what is true and what they are making up, but everything happening together and the contrast we see on how the two are dealt with makes me wonder if the new normal is court passing a judgment and big firms deciding how to punish and reward people. + +specially hollywood that has made money over years portraying that the character has done something wrong in front of the law, works through it, make changes, hustles and come out as a better and more successful person. + +what do you think? has hollywood lost the hope it has been selling for years. + + +thanks for watching have it all daily.",4.0,381.0,,,,,,342.0,27.0,0.0,8.0,while johnny depp is losing projects. amber heard is unlocking new money minting avenue,,,,,,,,,, +1266,https://www.youtube.com/watch?v=t_OGIt4sBhA,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"judge denies amber heard, ruining her plans! now depp knows! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #johnnydepp #amberheard",7251.0,129181.0,,,,,,121099.0,58.0,0.0,773.0,"judge denies amber heard, ruining her plans! now depp knows!",,,,,,,,,, +1267,https://www.youtube.com/watch?v=6FzzWlhjRM4,0,0,{'Podcast Now'},1,youtube,video,original video,"amber heard has a new job, which pays quite well, talking about her life experiences....well in a way. let's talk about it! let me know what you think and make sure to subscribe to the channel for more content!! #amberheard #johnnydepp #amberjohnny + +jays stuff!! +https://www.youtube.com/channel/uc7kpcktwb4wf3ql9tivvroa +https://www.youtube.com/channel/ucquxquagade5ek_daiehdkw + +follow us on twitch - https://www.twitch.tv/podcastnow + +subscribe to my second channel!! -https://www.youtube.com/channel/ucwl_77_rksghvimkpjcb3xw + +join our discord server! - https://discord.gg/c2de68m + +follow me on twitter - https://twitter.com/podcastnow15",92.0,1130.0,,,,,,1009.0,11.0,0.0,18.0,amber heard has a new job that's perfect for her - feat. degenerate jay,,,,,,,,,, +1268,https://www.youtube.com/watch?v=TlKz297_eKs,0,0,{'Fire Amber Heard'},1,youtube,video,original video,last of 2030 dude.,3.0,13.0,,,,,,10.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 25(last),,,,,,,,,, +1269,https://www.youtube.com/watch?v=nzPi7QANXt4,0,0,"{""Doesn't Matter Podcast Live""}",1,youtube,video,original video,"il monolite è sparito dallo iutah ed è stato ritrovato in romania. una petizione online con quasi 2 milioni di firme, vuole amber heard fuori dalla warner bros e, un gundam alto 18 metri, è stato inaugurato in giappone. tutto questo, nella punta di oggi! + +➜ spotify: https://open.spotify.com/show/4itpwiw0gongjxshipsgk4 +➜ itunes: https://podcasts.apple.com/it/podcast/doesnt-matter-podcast/id1533250551 + +➜ iscriviti: https://www.youtube.com/user/doesntmatterpodcast?sub_confirmation=1 +➜ e buonanotte: https://amzn.to/2pceort +➜ twitch: https://www.twitch.tv/doesntmatterpod +➜ amazon: https://www.amazon.it/shop/danieledoesntmatter + +indirizzo: show reel media group, daniele doesn't matter - via stresa 6, milano 20125 + +***la mia attrezzatura*** +➜ https://www.amazon.it/shop/danieledoesntmatter + +***social*** +➜ facebook: https://www.facebook.com/danieledoesntmatter +➜ twitter: https://twitter.com/doesntmatterpod +➜ instagram: https://www.instagram.com/doesntmatterpod/ +➜ tiktok: doesntmatterpodcast +➜ twitch: https://www.twitch.tv/doesntmatterpod +➜ amazon: https://www.amazon.it/shop/danieledoesntmatter + +***scarica la nuova sigla*** +➜ spotify: https://open.spotify.com/album/2vaqqxy6fz2alkhcymcytr +➜ amazon: https://amzn.to/2gd18xo + +***altro*** +- romanzo: https://amzn.to/2pceort +- libro: https://amzn.to/2zzumh8 +- tshirt: https://teespring.com/stores/doesntmatter-shop +- web: http://www.doesntmatter.it/ +- email: d.matter.podcast@gmail.com +- email commerciale: danieledoesntmatter@artisti.show-reel.it",223.0,2132.0,,,,,,1890.0,1.0,0.0,18.0,amber heard fuori dalla warner bros - doesn't matter podcast,,,,,,,,,, +1270,https://www.youtube.com/watch?v=7Vuw4M9kZCI,0,0,{'SUCCESS KEY JOB INFO'},1,youtube,video,original video,"nirdpr recruitment 2020 || nirdpr recruitment 2020 in telugu || young fellow || success key job info + +#nirdpr #nirdprrecruitment #nirdprexam #nirdprjobs + +notification : +https://drive.google.com/file/d/1akvjgii00qzswm-3igdufrxty1qefd6v/view + +website : +http://nirdpr.org.in/ + + +jobs telugu 2020, jobs telangana 2020, jobs telugu latest, jobs telangana, jobs ap, jobs telugu ap , jobs telugulo, telugu jobs, telugu jobs notifications, telugu jobs 2020, telugu jobs in hyderabad, telugu jobs in telangana, telugu jobs notification 2020, telugu jobs latest, telugu job point, telugu job updates, telugu job portal, telugu jobs info, success key jobs info, government jobs telugu telangana ap, government jobs 2020 telangana ap, government jobs 2020 in telugu, govt jobs 2020 telugu telangana, latest job notification 2020 in telugu, govt job telugu latest, +jobs telugu new, jobs telugulo, latest job notification 2020 ap, latest job notification telugu, latest job notification 2020 telugu, latest job notification 2020 telangana, +nirdpr recruitment 2020, nirdpr recruitment for 510 vacancies in telugu, job updates in telugu, nirdpr, nirdpr recruitment, nirdpr recruitment for state program coordinator, nirdpr recruitment for 250 fellow jobs, nirdpr recruitment for cluster level resource persons 250, nirdpr recruitment details in telugu, nirdpr vacancy, nirdpr exam pattern and syllabus, nirdpr recruitment 2020 selection process, job updates in telugu 2020, job updates in telugu for today, free job alert telugu, nirdpr recruitment 2020, nirdpr jobs 2020, jobs in nirdpr, vacancy in nirdpr, apply online for job in nirdpr, apply online for nirdpr jobs 2020, freshers jobs in nirdpr, how to apply online for job in nirdpr, nirdpr young fellows jobs 2020, govt jobs 2020, latest government jobs 2020, latest government news, government vacancy 2020, panchayati raj, nirdpr jobs apply online 2020, rural development, latest job information, latest jobs, latest jobs information, govt jobs 2020, govt jobs, telangana jobs, ap jobs, nirdpr, nirdpr young fellow selection process, nirdpr jobs, nirdpr jobs apply online 2020, panchayati raj jobs 2020, panchayati raj jobs in telangana, panchayati raj job, young fellows, crp, jobs 2020, +tech guruvu, ap10th jobs, apcos jobs, ap latest jobs, ap govt jobs, degree jobs, ap data entry jobs, job updates, telugu job updates, latest jobs in telugu, ap new jobs, ap jobs, ap supervisor jobs, pg jobs, telugu lo jobs, diploma jobs, ap inter jobs, grama sachivalayam jobs, panchayath jobs, nirdpr recruitment 2020 in telugu, nirdpr, nirdpr recruitment 2020, panchayat raj department jobs 2020, hyderabad nirdpr jobs, govt jobs 2020, government jobs 2020, central govt jobs 2020, latest nirdpr notification 2020-21, nirdpr govt jobs 2020, nirdpr recruitment 2020 selection, nirdpr recruitment 2020 apply online, nirdpr recruitment 2020 young fellow, young fellow jobs in nirdpr, nird&pr notification 2020, nirdpr vacancy 2020, 510 vacancies in nirdpr, nirdpr young fellow, +sir w arthur lewis, man city vs marseille, ajax vs atalanta, ak vs ak, bayern vs lokomotiv moscow, johnny depp amber heard, vj chitra, burger king ipo allotment status, elon musk, parthiv patel, mumbai city vs chennaiyin fc, chelsea vs krasnodar, midtjylland vs liverpool, real madrid vs mönchengladbach, alien, william shakespeare, vj chithra, sonia gandhi, netflix streamfest, burger king allotment status, vj chithra news, taylor swift, amit shah, actor sarath kumar, niharika konidela marriage, lanka premier league",4.0,127.0,,,,,,120.0,1.0,0.0,2.0,nirdpr recruitment 2020 || nirdpr recruitment 2020 in telugu || young fellow || success key job info,,,,,,,,,, +1271,https://www.youtube.com/watch?v=FQ8z3AT59ZY,0,0,{'Stevie J Raw'},1,youtube,video,original video,"this johnny depp charity stream is for all the people who do not have a voice but who are in desperate need support. +johnny depp has come forward as a male victim of dv alleging that ex-wife amber heard repeatedly assaulted him. +let's raise some money and awareness everyone affected by this abhorrent behavior. + +please donate here - https://live.justgiving.com/pages/donate/5209beaa-90b5-4502-97e1-326d7415f97b + +great ormond street hospital - https://www.gosh.org/ + +not a bot t's - https://teespring.com/en-gb/stores/my-store-10453714 + +justice for johnny t's - https://t.co/jeqo30gdhe?amp=1 + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#goshjohnnydepp #justiceforjohnnydepp #gosh",1050.0,10976.0,,,,,,9741.0,13.0,0.0,172.0,johnny depp charity stream - raising awareness for dv victims & supporting gosh,,,,,,,,,, +1272,https://www.youtube.com/watch?v=JQxk2FIVnaU,0,0,{'Stevie J Raw'},1,youtube,video,original video,"join me with tiffany c for a feminist take on the johnny depp v amber heard case and why amber heard is no victim. + +this is outrageous and johnny deserves justice!!! + +johnny depp tribute by inspired with johnny depp - https://www.youtube.com/watch?v=jqng_fs5cyg&t=1391s + +charity link gosh - https://www.justgiving.com/fundraising/stevie-j-raw1 + +petition to get johnny back - https://www.change.org/p/warner-brothers-bring-johnny-depp-back-to-fantastic-beasts?recruiter=24448735&recruited_by_id=229d8750-1a30-0130-d3ed-3c764e04873b&utm_source=share_petition&utm_medium=copylink&utm_campaign=petition_dashboard + +t-shirt link - https://teespring.com/buy-not-a-bot?utm_swu=3426&utm_campaign=edit_live_listing_minor&utm_source=sendwithus_seller&utm_medium=email_transactional&pid=525&cid=101933 + +let's talk. +join us and enjoy! + +sign the petition here!! - https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2 + +johnny depp is innocent and amber heard must be held accountable for what she has done. + +checkout the stream and let us know what you think. + +website - steviejraw.com + +thanks for watching!! + +website - steviejraw.com + +hit that subscribe button for more news & entertainment. + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - steviejraw@outlook.com + +thanks for watching!! +#goshjohnnydepp #justiceforjohnnydepp #amberheardisaliar",867.0,10769.0,,,,,,9598.0,8.0,0.0,296.0,a feminist take on johnny depp v amber heard - with tiffany c,,,,,,,,,, +1273,https://www.youtube.com/watch?v=VIPL4Gw82Dg,0,0,{'eHacker'},1,youtube,video,original video,amber heard and why i criticize her besides the johnny depp case!,522.0,4356.0,,,,,,3670.0,8.0,0.0,156.0,amber heard : why i criticize her besides the johnny depp case!,,,,,,,,,, +1274,https://www.youtube.com/watch?v=PBPkyW_KKdY,0,0,{'InformOverload'},1,youtube,video,original video,"influencer sentenced to 10 years in prison +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +sahar tabar, whose real name is fatemeh khishvand, initially shocked the world with her attempts at looking like actor angelina jolie. before her instagram account was deleted she had garnered around 486,000 followers by regularly posting photos of her haunting new look. now she is facing jail time for these photos and we have everything you need to know. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#zombieangelinajolie #sahartabar #cosmeticsurgery #photoshop #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +johnny rogers: https://www.instagram.com/thejohnnyrogers/ + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +jennire narvaez: https://www.instagram.com/jennirenarvaezphotography/ + + +📱instagram: https://www.instagram.com/informoverload +📱twitter: https://twitter.com/informoverload +✉️email | contact: informoverload@gmail.com",3762.0,98394.0,,,,,,93911.0,115.0,0.0,606.0,influencer sentenced to 10 years in prison,,,,,,,,,, +1275,https://www.youtube.com/watch?v=Wsn4aXVptWU,0,0,{'Moondoria'},1,youtube,video,original video,"before people get this the wrong way, i believe that johnny is the victim here. amber turd is the abuser.",27.0,280.0,,,,,,247.0,0.0,0.0,6.0,amber heard’s plans to take down johnny depp.,,,,,,,,,, +1276,https://www.youtube.com/watch?v=R-IrIOZwedk,0,0,{'Fire Amber Heard'},1,youtube,video,original video,fire amber heard 😉,2.0,13.0,,,,,,10.0,0.0,0.0,1.0,solving a rubik's cube everyday until amber heard gets fired - day 17,,,,,,,,,, +1277,https://www.youtube.com/watch?v=83-dIoztcak,0,0,{'Cae Valentine'},1,youtube,video,original video,"links: + +https://www.youtube.com/watch?v=cg9svqsmnoe + +https://www.harrywalker.com/speakers/amber-heard + +https://eu.usatoday.com/story/life/movies/2016/06/07/amber-heard-arrested-2009-charge-hitting-girlfriend/85563338/ + +https://www.health.harvard.edu/newsletter_article/in_brief_domestic_violence_not_always_one_sided + + +please consider donating to the channel. + +https://www.paypal.me/caeruleusv + +patreon: https://www.patreon.com/caev + +merch: https://www.teepublic.com/user/caeruluesvalentinius1 + + +avi by piper steed twitter here +https://twitter.com/fyzzgiggidy + +end card by vipersword100, sub here: +https://www.youtube.com/channel/ucr65ozmlubkvdbwt9_vroiq + +overlay by rurik: https://www.youtube.com/channel/ucvhxetxirwulkx_uczkbbzw + +discord server: +nonexistant + +streamlabs: +https://youtube.streamlabs.com/caeruleusvalentiniuscae + +patrons + + +james' channel: https://www.youtube.com/user/jamesu1990 +chatmort: https://www.youtube.com/user/fluffypurplekitty + +fair use notice +this video may contain copyrighted material; the use of which has not been specifically authorized by the copyright owner. we are making such material available for the purposes of criticism, comment, review and news reporting which constitute the 'fair use' of any such copyrighted material as provided for in section 107 of the us copyright law. not withstanding the provisions of sections 106 and 106a, the fair use of a copyrighted work for purposes such as criticism, comment, review and news reporting is not an infringement of copyright.",27.0,154.0,,,,,,119.0,1.0,0.0,7.0,amber heard now being paid to give talks on domestic violence,,,,,,,,,, +1278,https://www.youtube.com/watch?v=SpGq-Q19Vbo,0,0,{'enigma'},1,youtube,video,original video,"some videos to watch: + +body language proof amber heard is the worst actor in the world lying about johnny depp | https://www.youtube.com/watch?v=4r8ujv97gjm + +amber heard on the stand in johnny depp's libel case | https://www.youtube.com/watch?v=it2kiyt7-rk + +celebrities who defended amber heard | https://www.youtube.com/watch?v=52k_6mntyf4 + +amber heard's 2020 takeaway: 'adapt & survive' | https://www.youtube.com/watch?v=uretrfma-io + +#amberheard #johnnydepp #bodylanguage + +intro music | https://www.youtube.com/c/whirlingmusic",5016.0,103080.0,,,,,,97581.0,53.0,0.0,430.0,body language analyst reacts to amber heard on the stand in johnny depp's libel case,,,,,,,,,, +1279,https://www.youtube.com/watch?v=m5iSI9aWDyA,0,0,{'Ben Cardall - The Deductionist'},1,youtube,video,original video,"here we have the finishing part to my piece on this series. the final word as it were. i don't see there is any alternative, at least f rom a behavioural standpoint that is. what do you guys reckon? leave a comment below. + +don’t forget to subscribe to my newsletter through my website https://www.bencardall.com + +you can support the channel and get your own copy of the monographs here: https://linktr.ee/bencardall + +https://www.bencardall.com/1-on-1-coaching/ contact me for further details + +don’t be strangers + +ben x + +#johnnydepp #bodylanguage #peoplereading",1093.0,23499.0,,,,,,22049.0,17.0,0.0,340.0,johnny and amber part 2 | body language explained | incredible insight,,,,,,,,,, +1280,https://www.youtube.com/watch?v=deprVL9eLh8,0,0,{'ATTITUDE OF OWN'},1,youtube,video,original video,"aquaman +aquaman attitude +aquaman attitude status +aquaman whatsapp +aquaman whatsapp attitude +aquaman whatsapp attitude status +aquaman secrets +aquaman power +aquaman scene +aquaman clips +aquaman review +aquaman meetup +aquaman love +aquaman fan made +aquaman love from fan +aquaman audience +aquaman audience love +aquaman audience videos +aquaman videos +aquaman best scene +aquaman best clips +aquaman best videos +aquaman viral +aquaman viral videos +aquaman new +aquaman new attitude +aquaman new video +aquaman new attitude status +aquaman new status +aquaman new whatsapp +aquaman new whatsapp attitude +aquaman new whatsapp status + + +#aquaman +#aquaman_attitude +#aquaman_attitude_status +#aquaman_whatsapp +#aquaman_whatsapp_attitude +#aquaman_whatsapp_attitude_status +#aquaman_secrets +#aquaman_power +#aquaman_scene +#aquaman_clips +#aquaman_review +#aquaman_meetup +#aquaman_love +#aquaman_fan_made +#aquaman_love_from_fan +#aquaman_audience +#aquaman_audience_love +#aquaman_audience_videos +#aquaman_videos +#aquaman_best_scene +#aquaman_best_clips +#aquaman_best_videos +#aquaman_viral +#aquaman_viral_videos +#aquaman_new +#aquaman_new_attitude +#aquaman_new_video +#aquaman_new_attitude_status +#aquaman_new_status +#aquaman_new_whatsapp +#aquaman_new_whatsapp_attitude +#aquaman_new_whatsapp_status + +jason momoa +jason momoa attitude +jason momoa attitude status +jason momoa whatsapp +jason momoa whatsapp attitude +jason momoa whatsapp status +jason momoa whatsapp attitude status +jason momoa attitude scene +jason momoa secrets +jason momoa new +jason momoa new attitude +jason momoa new attitude status +jason momoa new whatsapp +jason momoa new whatsapp status +jason momoa new whatsapp attitude +jason momoa new whatsapp attitude +jason momoa love +jason momoa love status +jason momoa fan made +jason momoa fan +jason momoa meetup +jason momoa audience +jason momoa audience meet +jason momoa interview +jason momoa review +jason momoa new movies +jason momoa movies +jason momoa movies shoot +jason momoa photoshoot +jason momoa photos +jason momoa video +jason momoa viral +jason momoa viral photos +jason momoa viral videos +jason momoa unseen photos & videos +jason momoa trailers + + +#jason_momoa +#jason_momoa_attitude +#jason_momoa_attitude_status +#jason_momoa_whatsapp +#jason_momoa_whatsapp_attitude +#jason_momoa_whatsapp_status +#jason_momoa_whatsapp_attitude_status +#jason_momoa_attitude_scene +#jason_momoa_secrets +#jason_momoa_new +#jason_momoa_new_attitude +#jason_momoa_new_attitude_status +#jason_momoa_new_whatsapp +#jason_momoa_new_whatsapp_status +#jason_momoa_new_whatsapp_attitude +#jason_momoa_new_whatsapp_attitude +#jason_momoa_love +#jason_momoa_love_status +#jason_momoa_fan_made +#jason_momoa_fan +#jason_momoa_meetup +#jason_momoa_audience +#jason_momoa_audience_meet +#jason_momoa_interview +#jason_momoa_review +#jason_momoa_new_movies +#jason_momoa_movies +#jason_momoa_movies_shoot +#jason_momoa_photoshoot +#jason_momoa_photos +#jason_momoa_video +#jason_momoa_viral +#jason_momoa_viral_photos +#jason_momoa_viral_videos +#jason_momoa_unseen_photos_&_videos +#jason_momoa_trailers + +amber heard +amber heard attitude +amber heard attitude status +amber heard whatsapp +amber heard whatsapp status +amber heard whatsapp attitude status +amber heard johnny depp +johnny depp amber heard +amber heard johnny depp case +amber heard news +johnny depp news +johnny depp +johnny depp attitude +johnny depp attitude status +johnny depp new attitude +johnny depp new +johnny depp new attitude status +johnny depp new whatsapp +johnny depp new whatsapp status +johnny depp meet amber heard + +#amberheard +#amber_heard_attitude +#amber_heard_attitude_status +#amber_heard_whatsapp +#amber_heard_whatsapp_status +#amber_heard_whatsapp_attitude_status +#amber_heard_johnny_depp +#johnny_depp_amber_heard +#amber_heard_johnny_depp_case +#amber_heard_news +#johnny_depp_news +#johnny_depp +#johnny_depp_attitude +#johnny_depp_attitude_status +#johnny_depp_new_attitude +#johnny_depp_new +#johnny_depp_new_attitude_status +#johnny_depp_new_whatsapp +#johnny_depp_new_whatsapp_status +#johnny_depp_meet_amber_heard",22.0,1067.0,,,,,,1044.0,0.0,0.0,1.0,aquaman attitude status | aquaman whatsapp status | amber heard whatsapp status,,,,,,,,,, +1281,https://www.youtube.com/watch?v=9ILLMyWcUdE,0,0,{'TheQuartering'},1,youtube,video,original video,"i've got to admit, you have to admire this womans hustle. getting paid $33,000 to speak about being a victim? ha + + + +support the channel directly! (super helpful) +https://www.youtube.com/channel/ucfwe_odi1ytbdjkzusi1nag/join + +follow me +twitch-https://www.twitch.tv/thequartering +parler-https://parler.com/profile/thequartering/ +twitter-https://twitter.com/thequartering +discord-https://discord.gg/pqvtwa2vvm +subreddit-http://reddit.com/r/thequartering +politics channel -https://www.youtube.com/channel/uc577sigte1cjpdosladwndw",6616.0,78267.0,,,,,,70683.0,100.0,0.0,868.0,amber heard rage inducing news....damage control for hbo max justice league & aquaman 2 ramps up,,,,,,,,,, +1282,https://www.youtube.com/watch?v=YaBYpUzGq38,0,0,{'ZAWADEIGH I AESTHETIC'},1,youtube,video,original video,"the narcissist female can be hard to spot or is it???? it really don't have to be difficult for you to spot just don't overlook the small things because it will become better in the future. + +socials +zawadeigh | aesthetic + +#narcissist #amber #heard #johnnydepp #explorepage #npd",10.0,138.0,,,,,,121.0,0.0,0.0,7.0,amber heard & johnny depp | how to spot a narcissist female partner,,,,,,,,,, +1283,https://www.youtube.com/watch?v=hmMTVsMXesc,0,0,{'Roblox 13+'},1,youtube,video,original video,"how amber heard framed johnny depp + +everywhere you go, from grocery store checkout lanes to your home with the news on, it won't take long to come across an article or news about the never-ending legal battles between johnny depp and amber heard. and over the year, people became confused on who was telling the truth between them about their case. in today's video, join us as we show you how amber heard lied about johnny depp. + +in the previous years, people turned against johnny depp as it was rumored that he was the abusive one in their relationship. but in reality, it's the other way around. in fact, there are a lot of shocking receipts that prove johnny depp is innocent and amber heard is lying. be sure to watch the whole video and see what lies amber heard has been hiding all these years! in addition, do us a favor and like the video and subscribe and turn on the notification bell. we’ll see you in the next video! + +subscribe if you haven’t already!: +https://www.youtube.com/channel/uc0rpd-lnyw6x6vbar9sotcw?sub_confirmation=1 + +in this video, we breakdown how amber heard framed johnny depp. be sure to subscribe to celebrity insight. thanks for watching this video: how amber heard framed johnny depp + +#amberheard #framed #johnnydepp",108.0,1457.0,,,,,,1314.0,2.0,0.0,33.0,how amber heard framed johnny depp,,,,,,,,,, +1284,https://www.youtube.com/watch?v=g4C5yXIY-no,0,0,{'InformOverload'},1,youtube,video,original video,"subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +shia lebeouf has been in the spotlight since he was a kid. at just 10 years old, he started doing stand up comedy, as he saw it to be an escape from the hostile environment he grew up in. he was an up and coming movie star, who had been in the spotlight long enough that everyone got familiar with the name and face. and then, everything seemed to go down hill fairly quickly. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#shialabeouf #fkatwigs #weneedtotalk #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +jocelyn bedard: http://instagram.com/jocebedard + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +shreshth singh: https://www.instagram.com/avisionoftomorrow/ + + +📱instagram: https://www.instagram.com/informoverload +📱twitter: https://twitter.com/informoverload +✉️email | contact: informoverload@gmail.com",1543.0,30930.0,,,,,,29162.0,33.0,0.0,192.0,we need to talk about shia labeouf,,,,,,,,,, +1285,https://www.youtube.com/watch?v=1khEVKpz6Qw,0,0,{'Sky News'},1,youtube,video,original video,"actress amber heard talks exclusively to sky news about her new tv series - in a year where johnny depp's libel case dominated her year. + +'the stand' - which was made before coronavirus existed - is about a flu which kills 99% of the population. + +filming on the show was completed in march, just before the pandemic took hold across the world. + +read more here: +https://news.sky.com/story/amber-heard-nothing-could-have-prepared-me-for-2020-12164247 + +subscribe to our youtube channel for more videos: http://www.youtube.com/skynews + +follow us on twitter: https://twitter.com/skynews and https://twitter.com/skynewsbreak + +like us on facebook: https://www.facebook.com/skynews + +follow us on instagram: https://www.instagram.com/skynews + +for more content go to http://news.sky.com and download our apps: + +apple https://itunes.apple.com/gb/app/sky-news/id316391924?mt=8 + +android https://play.google.com/store/apps/details?id=com.bskyb.skynews.android&hl=en_gb + +sky news videos are now available in spanish here/los video de sky news están disponibles en español aquí https://www.youtube.com/skynewsespanol",208.0,138038.0,,,,,,105829.0,30068.0,0.0,1933.0,exclusive: 'nothing could have prepared me for 2020' - amber heard,,,,,,,,,, +1286,https://www.youtube.com/watch?v=D4dVnUap0R8,0,0,{'Courtshake'},1,youtube,video,original video,"my spoiler-filled review of 'the stand' s01e02, ""pocket savior"" from director tucker gates and cbs all access. the episode stars jovan adepo, heather graham, nat wolff, amber heard, odessa young, james marsden, owen teague, and alexander skarsgard. + +premise: musician larry underwood is on the cusp of his big break when ""captain trips"" strikes new york. alone and wandering an empty city, he meets an alluring new acquaintance also desperate to escape. meanwhile, an incarcerated lloyd henreid comes face-to-face with randall flagg, the dark man himself, who makes him an enticing offer. - from imdb. + +thanks very much for watching! if you enjoyed this video, please hit that thumbs up, and share if you really enjoyed it. most importantly, what did you think of 'the stand' episode 2? what was your favourite moment of the episode? hit the comments below and let's get a conversation going. be sure to subscribe to this channel, and ring that bell for more movie reviews, trailer reactions, entertainment news, and other fun stuff. cheers! + +#thestand #pocketsavior #review + +follow me! + +twitter: https://twitter.com/courtshake +facebook: https://www.facebook.com/courtshake/ +instagram: https://www.instagram.com/courtshake/ +patreon: https://www.patreon.com/courtshake",194.0,3548.0,,,,,,3211.0,5.0,0.0,138.0,"stephen king's the stand | episode 2: ""pocket savior"" review | spoilers",,,,,,,,,, +1287,https://www.youtube.com/watch?v=ytO1DnYKdFg,0,0,{'Flixet'},1,youtube,video,original video,"in today’s video are going to tell about amber heard is now being paid to speak about domestic abuse. + +subscribe for more : http://bit.ly/32rc7vi +__________________________________________________ + +amber heard has a new gig, but it isn’t your standard hollywood casting role and might not be something she ever intended to speak about publicly. but her recent high profile and rather disturbing run through the media because of publicized marital issues have landed heard a public speaking job. for a price, amber heard will be speaking about, among other things, domestic abuse issues. + + +music in this video : + +track: odessa — liqwyd & scandinavianz +music provided by audio library plus +watch: https://youtu.be/jny-dp3lgcg",46.0,1366.0,,,,,,1211.0,56.0,0.0,53.0,amber heard getting paid for giving speech on domestic abuse | flixet,,,,,,,,,, +1288,https://www.youtube.com/watch?v=F7flOBTSiCE,0,0,{'TV Moments'},1,youtube,video,original video,"amber heard interview | compilation her worst interviews +like and subscribe",344.0,37696.0,,,,,,37130.0,77.0,0.0,145.0,amber heard interview,,,,,,,,,, +1289,https://www.youtube.com/watch?v=HZtHi9Ho94U,0,0,{'eHacker'},1,youtube,video,original video,amber heard called out as abuser by ben shapiro's daily wire!,1682.0,22171.0,,,,,,20090.0,15.0,0.0,384.0,amber heard called out as abuser by ben shapiro's daily wire!,,,,,,,,,, +1290,https://www.youtube.com/watch?v=QDA7Q8Xivy0,0,0,{'Facts: Almas Jacob [LIVE]'},1,youtube,video,original video,"#geonews #city42 #etnow #gnn + +become a member to do video call on skype with me! record your message and i will upload it on this channel! click on the link below to become partner! +https://www.youtube.com/channel/ucg4koruprqcw2wjrew7uqzg/join + +technical almas jacob channel link: https://www.youtube.com/channel/ucofrmbaja2xckidi2x9euow + +facts: what they don't tell you about | johnny depp | amber heard | almas jacob +facts: what they don't tell you about | johnny depp | amber heard | almas jacob +------------------------------------------------------------------------------------------- +follow me on facebook: https://web.facebook.com/wearewatchersendtimesnwo + +follow me on instagram: https://www.instagram.com/almasjacoblive + +follow me on tiktok: https://vm.tiktok.com/p2qxdc + +follow me on pinterest: https://www.pinterest.com/rickyjacob_1988 + +join our telegram channel: t.me/almasjacoblive + +---------------------------------------------------------------------------------------------------------- +facts: what they don't tell you about | bill gates 2020 | mark of beast | end times | abp news +https://youtu.be/hkxmq9ir2o0 +facts: what they don't tell you about | gray state movie | new world order | +https://youtu.be/rgd-oawsol8 +facts: what they don't tell you about | corona virus | 2020 | urdu/hindi +https://youtu.be/op9ctt68kgg +facts: what they don't tell you about | 29 april 2020 nasa | nasa 29th april 2020 | hindi | urdu +https://youtu.be/fxsnldlfjp8 + +------------------------------------------------------------------------------------------------------------------------ +joyce meyer | be inspired | donald trump | kangana ranaut | climate change | ufc |",3517.0,47003.0,,,,,,42777.0,248.0,0.0,461.0,facts: what they don't tell you about | johnny depp | amber heard | almas jacob | #geonews,,,,,,,,,, +1291,https://www.youtube.com/watch?v=NgwLODWv5YU,0,0,{'Fire Amber Heard'},1,youtube,video,original video,please be shocked vc i solve a cube *sed laaif*,3.0,18.0,,,,,,15.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 7,,,,,,,,,, +1292,https://www.youtube.com/watch?v=kE3EjRPRUx8,0,0,{'Incredibly Incredible'},1,youtube,video,original video,"this video is a clip which was excluded from the cut-up, edited and leaked recording by johnny depp’s team in january. the full version was recorded by johnny depp and amber heard during their marriage (september 2015). the full recording is being used as evidence in the johnny depp v the sun uk libel case. depp decided to sue the sun for publishing an article where they brand him a ‘wife-beater’, for abusing his then wife, amber heard. + +when the cut-up/edited 46 minute version leaked in january by depp’s team, it was made to portray a certain narrative and was used as propaganda. it was leaked 6 months before the trial began and used to lead people and potential jurors to believe that it was somehow an official piece of evidence, which it was not. it was incomplete. + +if you’d like to read the official case documents, they can be found here: https://www.nickwallis.com/depp-trial + +this recording was obtained through courttv and can be found here: https://www.courttv.com/news/amber-heard-witness-statements-depp-blamed-the-monster-for-physical-verbal-abuse/ + +you can listen to the full recording here: https://youtu.be/k9pbrbmhi58 + +comments are disabled to combat abuse.",,,,,,,,4865.0,,0.0,,johnny depp gaslights amber heard / audio,,,,,,,,,, +1293,https://www.youtube.com/watch?v=alhBKPOO7B4,0,0,{'InformOverload'},1,youtube,video,original video,"celebrities exposed by their former assistants | marathon +🔥let's hit 2 million, subscribe here ☛ http://bit.ly/2xb5cqa +▶️recent uploads: https://bit.ly/3qf38d7 + +there are few people who know celebrities and people in power as well as their assistants. they know everything about their schedules, who they are seeing, who they don't want to see and what they act like when the camera’s aren't rolling. which is why, if you ever get famous or rich, you should make sure you treat your assistant with a ton of kindness and respect. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#celebrities #exposed #formerassistant #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +charlotte dobre: http://instagram.com/charlaychaplin + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +lucy mcphee @lucymcphee + +📱instagram: https://www.instagram.com/informoverload +📱twitter: https://twitter.com/informoverload +✉️email | contact: informoverload@gmail.com",24303.0,865984.0,,,,,,837331.0,1082.0,0.0,3268.0,celebrities exposed by their former assistants | marathon,,,,,,,,,, +1294,https://www.youtube.com/watch?v=SqIWhW9n5Ic,0,0,{'Eline Margot'},1,youtube,video,original video,"[warning: explicit content] please watch the full video, the juiciest stuff is in the end. #justiceforjohnny + +johnny depp and amber heard: guilty until proven innocent - full documentary 2020 + +content used in this video: +https://www.youtube.com/watch?v=xiuuzvzmyro&list=wl&index=55&ab_channel=flixet +https://www.youtube.com/watch?v=33n6ls4dlt0&list=wl&index=56&ab_channel=crimetalk +https://www.youtube.com/watch?v=ehnkxb99li8&ab_channel=amberturd +https://www.youtube.com/watch?v=aca0kwohtqq&t=1552s&ab_channel=incrediblyaverage +https://www.youtube.com/watch?v=ewijmdzzeju&t=1379s&ab_channel=incrediblyaverage +https://www.fairfaxcounty.gov/circuit/high-profile-cases +https://www.youtube.com/watch?v=cg9svqsmnoe&t=571s&ab_channel=incrediblyaverage +https://www.youtube.com/watch?v=o3dbfiow_mk&t=1329s&ab_channel=incrediblyaverage +https://www.youtube.com/watch?v=vdp9nvqmixw&t=908s&ab_channel=incrediblyaverage + +if you want to learn more about the case: +https://www.youtube.com/watch?v=d0xwusw1nzk&list=wl&index=56&ab_channel=rob%27srules +https://www.youtube.com/watch?v=hqffm_x2lps&list=wl&index=56&ab_channel=popcornedplanet +https://www.youtube.com/channel/ucg0c-n_mpyyoxyf4t3jmxnq/videos +https://www.youtube.com/watch?v=a_dq_4i-ias&ab_channel=bencardall-thedeductionist +https://www.youtube.com/watch?v=nczuqjc-jhu&ab_channel=jadoredepp + +songs used: +https://www.youtube.com/watch?v=9jisi4vyheq&ab_channel=victmolina +https://www.youtube.com/watch?v=guwuxgajwdc&ab_channel=co.agmusic",291.0,4510.0,,,,,,4052.0,5.0,0.0,162.0,johnny depp and amber heard: guilty until proven innocent - full documentary 2020,,,,,,,,,, +1295,https://www.youtube.com/watch?v=_nGfEVPqi68,0,0,{'Fire Amber Heard'},1,youtube,video,original video,i'm ordering donuts.,1.0,7.0,,,,,,6.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 12,,,,,,,,,, +1296,https://www.youtube.com/watch?v=l61O6QWAoLs,0,0,{'ICPSR'},1,youtube,video,original video,"dr. amber bryant (university of michigan) and dr. lindsey malcom-piqueux (caltech) discuss dr. malcom-piqueux's newest book release, from equity talk to equity walk: expanding practitioner knowledge for racial justice in higher education. dr. malcom-piqueux is the chief institutional research officer at the california institute of technology. this book truly marries dr. malcom-piqueux’ lived experiences as a stem education scholar as well as her research expertise on the subject. listen to this book talk to learn more about practical ways to be a better advocate for equity at your institution. + +available for purchase here: https://www.amazon.com/making-excellence-inclusive-framework-advancing/dp/1119237912 + +hosted by peers data hub +partnerships for expanding education research in stem + +with support from the national science foundation, the american educational research association (aera) and the inter-university consortium for political and social research (icpsr) have created a research data hub and collaborative space for diverse stem education research communities to build and advance knowledge through sharing innovative ideas, methods, and tools. visit the hub at peersdatahub.org. + +*note: this recording is audio-only. + +icpsr is the world's largest archive of digital social science data. we acquire, preserve, and distribute original social science research data. icpsr is a partner in social science research.",4.0,510.0,,,,,,504.0,2.0,0.0,0.0,booktalk: from equity talk to equity walk by dr. lindsey malcom-piqueux,,,,,,,,,, +1297,https://www.youtube.com/watch?v=QWs72qXytno,0,0,{'DarthN3ws'},1,youtube,video,original video,"📬📦 feel free to sends me stuffs: + po box 301. dexter, mi. 48130 + +*my channel is not monetized* + +please consider supporting my work- + +💻 https://darthnews.com/ (merch) +🙏 https://www.patreon.com/darthnews (helps feed my dog & keeps the lights on) +💸 cashapp: $darthnews +🐦 twatter: @darth_news +🎶 dikdok: darth_news +📸 insta: @darthnews / second acct: @darth_news + + i'm a space case and completely forgot to mention the official rotten tomatoes score: +*critics/53% audience/35%* + +video quick guide + +00:00 - intro + +02:19 - how to guarantee your tv show fails in 2020 + +03:37 - reads rotten tomatoes audience reviews + +09:57 - judge orders amber's arrest records & information proving she donated $7m to charity + +13:24 - i'm not watching the stand & neither should you + +16:24 - (super cringe) improv dad jokes aka another dne roast of amber turd + +22:39 - this video's sponsor! + + +#everybodyhatesamber #thestand #stephenking #amberheard #darthnews #j4j #aquaman2 #insufferable #justiceforjohnny #barnwitch #johnnydepp #ditchthewitch #amberturd #rant #justiceforjohnny #mera #defamation #sociopath #domesticviolence #metoo #abuse #lawsuit #cancelculture #update",884.0,9309.0,,,,,,8004.0,40.0,0.0,381.0,amber heard's new tv show 'the stand' bombs with critics & audiences | lets read some reviews 😆,,,,,,,,,, +1298,https://www.youtube.com/watch?v=t0yi602FOZo,0,0,{'eHacker'},1,youtube,video,original video,amber’s true self!,1133.0,23908.0,,,,,,22116.0,200.0,0.0,459.0,amber heard gets nasty in interview!,,,,,,,,,, +1299,https://www.youtube.com/watch?v=UZl19dvbmxQ,0,0,{'SEC'},1,youtube,video,original video,"join this channel to get access to perks: +https://www.youtube.com/channel/ucseatdlh3kfgl17dnarfw2g/join + +tip jar ~ tips and donations are not expected but greatly appreciated. +https://paypal.me/lesleepowers + + +➤twitter + https://twitter.com/spirituallyemp1 + +➤for one on one coaching with me + https://bookwithspirituallyempoweredcoaching.as.me/ + +➤email me +support@empowerandthrive.ca + +➤ instagram +www.instagram.com/spiritually_empowered/ + +#justiceforjohnnydepp",886.0,10044.0,,,,,,8868.0,8.0,0.0,282.0,amber heard tries to block donation receipts again!!!,,,,,,,,,, +1300,https://www.youtube.com/watch?v=Kn2U4XaAg2k,0,0,{'ET Canada'},1,youtube,video,original video,"amber heard and jovan adepo discuss “the stand”, the new miniseries based on stephen king’s novel about a deadly virus that wipes out most of the planet's population, forcing survivors to choose to work together or succumb to a dark and sinister force. although the book was written 40 years ago, the stars say it raises a lot of the same questions as the coronavirus pandemic has. + +#thestand #amberheard #jovanadepo #stephenking + +subscribe to our channel: + +https://www.youtube.com/user/etcanadaofficial + +follow us here: + +http://www.etcanada.com + +facebook: https://www.facebook.com/etcanada + +twitter: http://www.twitter.com/etcanada + +instagram: http://www.instagram.com/etcanada",76.0,21600.0,,,,,,17069.0,3815.0,0.0,640.0,"amber heard, jovan adepo talk pandemic series ‘the stand’",,,,,,,,,, +1301,https://www.youtube.com/watch?v=3yeuRMa1CMQ,0,0,{'Fire Amber Heard'},1,youtube,video,original video,i'm hungry.,1.0,3.0,,,,,,2.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 10,,,,,,,,,, +1302,https://www.youtube.com/watch?v=DeYfIUAzBSU,0,0,"{""Rob's Rules""}",1,youtube,video,original video,"wednesday at 6:30 pm est / 11:30 pm uk 🇬🇧 +gary robinson of “ amber waves of pain “ fame, joins me to discuss the week that was for johnny depp and amber heard +#jusiceforjohnnydepp",207.0,2094.0,,,,,,1818.0,1.0,0.0,68.0,🔴 livestream with gary robinson as we discuss the johnny depp vs amber heard case,,,,,,,,,, +1303,https://www.youtube.com/watch?v=6Z4aLTvD4q4,0,0,{'The Amber Heard Playlist!!Johnny Depp es racista'},1,youtube,video,original video,,2.0,,,,,,,15.0,1.0,0.0,,where's amber heard's evidence?,,,,,,,,,, +1304,https://www.youtube.com/watch?v=k1kVj97FWV0,0,0,{'Schwanenwerder'},1,youtube,video,original video,,,,,,,,,114.0,,0.0,,amber heard johnny depp dreier elon musk carla delivigne scheidung prozess london gb uk 2020,,,,,,,,,, +1305,https://www.youtube.com/watch?v=QlXxOEaspF8,0,0,{'Walkerworld _'},1,youtube,video,original video,"aquaman protector of the deep. jason mamoa as aurther cury. king of atlantis and seven kingdoms. + +i do not own this song or clip. i only own the mixing. no copyright infringement intended. + +#fanvidfeed #dceu #aquaman",30.0,832.0,,,,,,787.0,1.0,0.0,14.0,aquaman - protector of the deep | battle royal-apashe | jason mamoa-amber heard | dceu | walkerworld,,,,,,,,,, +1306,https://www.youtube.com/watch?v=qRjKDWj7j0Q,0,0,{'Top 10 Beyond The Screen'},1,youtube,video,original video,"the real reason hollywood won't cast amber heard +subscribe to beyond the screen: https://bit.ly/2txttsd +watch our recent videos here: https://bit.ly/3mmfo8g + +amber heard is on the outs in hollywood after her very public fallout with ex-husband johnny depp, with the two battling it out in court, with heard coming out on top. however, most are still on the side of depp, with people calling for amber to be fired from aquaman 2. here is all the celebrity news you need with the real reason hollywood won't cast amber heard right here on top 10 beyond the screen! + +#celebrities #top10 #amberheard #therealreason #hollywood #hollywoodnews #top10celebrities #top10celebrity #top10hollywood #celebritynews #amberheardjohnnydepp #amberheardfired + +hosted by: +johnny rogers: https://www.instagram.com/thejohnnyrogers/ + +edited by: +sidhant sharma: https://www.instagram.com/sidd_happens",1398.0,32437.0,,,,,,30755.0,46.0,0.0,238.0,the real reason hollywood won't cast amber heard,,,,,,,,,, +1307,https://www.youtube.com/watch?v=P63ArpiBbzQ,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard gets destroyed by her huge public lies! numbers never lie! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #amberheard #johnnydepp",4179.0,55257.0,,,,,,50383.0,43.0,0.0,652.0,amber heard gets destroyed by her huge public lies! numbers never lie!,,,,,,,,,, +1308,https://www.youtube.com/watch?v=zis29lX5xqQ,0,0,{'Wajeeh'},1,youtube,video,original video,"يعطيكم العافية على المشاهدة! +تابعوني على منصات التواصل الإجتماعي : +https://www.instagram.com/wajeeho2/ +https://www.snapchat.com/add/wajeeho2 +https://twitter.com/wajeeho2",11243.0,150518.0,,,,,,138257.0,227.0,0.0,791.0,جوني ديب وأمبير هيرد | johnny depp and amber heard,,,,,,,,,, +1309,https://www.youtube.com/watch?v=RQZ2z0AZSpI,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"johnny depp's epic call out of uk judge while blasting amber heard! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#thatumbrellaguy #johnnydepp #amberheard",6433.0,99487.0,,,,,,92315.0,43.0,0.0,696.0,johnny depp's epic call out of uk judge while blasting amber heard!,,,,,,,,,, +1310,https://www.youtube.com/watch?v=0SMSKHxj2eE,0,0,{'DazzlingKate22'},1,youtube,video,original video,"it's being told that amber's role in the upcoming sequel of aquaman to be reduced as they bring in a new character to take her place to be a new plan for in case amber heard's accusations fall to the ground. i'm sort of surprised warner bros. finally pulled their head out of their ass to finally get an understanding that more than 1 million consumers don't want heard involved in future dceu projects. + +follow me on my other social media~ + +my twitter: https://twitter.com/katedazzling +my deviantart: https://www.deviantart.com/dazzlingkate +my facebook: https://www.facebook.com/dazzlingkate22",2.0,17.0,,,,,,14.0,0.0,0.0,1.0,aquaman star amber heard role reduced???,,,,,,,,,, +1311,https://www.youtube.com/watch?v=6mFqJFovz3U,0,0,{'Stevie J Raw'},1,youtube,video,original video,"la bar staff share nightmare experiences serving amber heard! but johnny depp was always kind. leigh nieves joins me live! + +this is outrageous and johnny deserves justice!!! + +johnny depp tribute by inspired with johnny depp - https://www.youtube.com/watch?v=jqng_fs5cyg&t=1391s + +charity link gosh - https://www.justgiving.com/fundraising/stevie-j-raw1 + +petition to get johnny back - https://www.change.org/p/warner-brothers-bring-johnny-depp-back-to-fantastic-beasts?recruiter=24448735&recruited_by_id=229d8750-1a30-0130-d3ed-3c764e04873b&utm_source=share_petition&utm_medium=copylink&utm_campaign=petition_dashboard + +t-shirt link - https://teespring.com/buy-not-a-bot?utm_swu=3426&utm_campaign=edit_live_listing_minor&utm_source=sendwithus_seller&utm_medium=email_transactional&pid=525&cid=101933 + +let's talk. +join us and enjoy! + +sign the petition here!! - https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2 + +johnny depp is innocent and amber heard must be held accountable for what she has done. + +checkout the stream and let us know what you think. + +website - steviejraw.com + +thanks for watching!! + +website - steviejraw.com + +hit that subscribe button for more news & entertainment. + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - steviejraw@outlook.com + +thanks for watching!! +#goshjohnnydepp #justiceforjohnnydepp #steviejraw",1369.0,18421.0,,,,,,16629.0,28.0,0.0,395.0,nightmare experiences with amber heard! ft. leigh nieves,,,,,,,,,, +1312,https://www.youtube.com/watch?v=A5fIhUNjYF4,0,0,{'MARVEL MIRACLE'},1,youtube,video,original video,#aquaman #amberheard #dceu,3.0,187.0,,,,,,183.0,0.0,0.0,1.0,mera / amber heard #status 😍,,,,,,,,,, +1313,https://www.youtube.com/watch?v=Com7uQXVu54,0,0,{'Broken Heart'},1,youtube,video,original video,"#mera #amber_heart #broken_heart +#aquaman_mera #vertical_whatsapp_status +#cute_girl_attitude_status + + + +copyright disclaimer under section 107 of the copyright act 1976, allowance is made for fair use for purposes such as criticism, comment, news reporting, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favour of fair use. + + + +if you love❤ +then, + + +#like +#share & +#subscribe🙏 + + + +thanks for watching...",422.0,8528.0,,,,,,8083.0,18.0,0.0,5.0,aquaman mera - amber heard | vertical | whatsapp status | love me like you do,,,,,,,,,, +1314,https://www.youtube.com/watch?v=ZCAoEGxOUE4,0,0,{'Fire Amber Heard'},1,youtube,video,original video,i win.,1.0,4.0,,,,,,3.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 16,,,,,,,,,, +1315,https://www.youtube.com/watch?v=C9YxJzIDyN8,0,0,{'Fire Amber Heard'},1,youtube,video,original video,guys the discription is gonna be the same everyday so don't waste your time this s**t.,2.0,12.0,,,,,,10.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 2.,,,,,,,,,, +1316,https://www.youtube.com/watch?v=TqK2vdPUdF0,0,0,{'eHacker'},1,youtube,video,original video,amber heard is called out by actor steven crowley as a user!,708.0,4050.0,,,,,,3108.0,0.0,0.0,234.0,amber heard is called out by actor steven crowley as a user!,,,,,,,,,, +1317,https://www.youtube.com/watch?v=WLfeMet7fO8,0,0,{'Lost Beyond Pluto'},1,youtube,video,original video,"related videos: + + +analysing the ""judgment"" https://youtu.be/khshyyuul1o + + +a biased judge? https://youtu.be/mzbwmaj73uq + + +social media + +patreon: https://www.patreon.com/lostbeyondpluto + +instagram: https://www.instagram.com/lostbeyondpluto + +twitter: https://twitter.com/lostbeyondpluto + +tumblr: https://lostbeyondpluto.tumblr.com/ + +soundcloud: https://soundcloud.com/lost-beyond-pluto + +music videos: + +blue eyes: https://www.youtube.com/watch?v=wm2-kyp18ww + +once a liar: https://youtu.be/bgwc09ptuhm + + + +stars intro theme by eva grace",1350.0,14903.0,,,,,,13248.0,13.0,0.0,292.0,johnny depp v amber heard - a legal perspective on impartiality & bias,,,,,,,,,, +1318,https://www.youtube.com/watch?v=cRFZHo5_7v0,0,0,{'DarthN3ws'},1,youtube,video,original video,"friendly reminder: all my videos are nsfw. +recommend turning the volume down in public.. if you're not using headphones 🤷‍♂️ + +📬📦 feel free to sends me stuffs: + po box 301. dexter, mi. 48130 + +*my channel is not monetized* + +please consider supporting my work- + +💻 https://darthnews.com/ (merch) +🙏 https://www.patreon.com/darthnews (helps feed my dog & keeps the lights on) +💸 cashapp: $darthnews +🐦 twatter: @darth_news +🎶 dikdok: darth_news +📸 insta: @darthnews / second acct: @darth_news + + +#everbodyhatesamber #burnthebarnwitch #booamber #amberheard #darthnews #j4j #update #instagram #johnnydepp #ditchthewitch #amberturd #thesun #justiceforjohnny #mera #darthnews #defamation #sociopath #domesticviolence #metoo #abuse #aquaman2 #media #dceu #zacksnyder #snydercut #cringe",431.0,3075.0,,,,,,2430.0,2.0,0.0,212.0,"amber heard is getting paid $33,000 to speak out against domestic violence | this is not a joke",,,,,,,,,, +1319,https://www.youtube.com/watch?v=sdjQqwJAqL4,0,0,{'Fire Amber Heard'},1,youtube,video,original video,the fucking donuts.,2.0,8.0,,,,,,6.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 13,,,,,,,,,, +1320,https://www.youtube.com/watch?v=NJavToboteQ,0,0,{'Ma Thi Hồng'},1,youtube,video,original video,"✅ amber heard comparte foto como nadine cross, personaje que interpretará en 'the stand' +💖 please subscribe: https://www.youtube.com/channel/ucwe-mm9isgorvz4zcub3yta?sub_confirmation=1 +💖 #amberheardthestandnadinecross, #serie, #personajestephenking +💖 source: http://www.milenio.com/espectaculos/famosos/amber-heard-comparte-imagen-nadine-cross-serie-the-stand",0.0,7.0,,,,,,7.0,0.0,0.0,0.0,"✅ amber heard comparte foto como nadine cross, personaje que interpretará en 'the stand'",,,,,,,,,, +1321,https://www.youtube.com/watch?v=_IlXdBOCdrA,0,0,{'Stevie J Raw'},1,youtube,video,original video,"this johnny depp charity stream is for all the people who do not have a voice but who are in desperate need support. +johnny depp has come forward as a male victim of dv alleging that ex-wife amber heard repeatedly assaulted him. +let's raise some money and awareness everyone affected by this abhorrent behavior. + +please donate here - https://live.justgiving.com/pages/donate/5209beaa-90b5-4502-97e1-326d7415f97b + +great ormond street hospital - https://www.gosh.org/ + +not a bot t's - https://teespring.com/en-gb/stores/my-store-10453714 + +justice for johnny t's - https://t.co/jeqo30gdhe?amp=1 + +join this channel to get access to perks: +https://www.youtube.com/channel/ucak03rcnvtlk1_llgrtoh2w/join +art of elysium donation page - https://www.pledge.to/the-art-of-elysium + +thanks for watching!! + +hit that subscribe button for more news & entertainment. + +website - https://steviejraw.com/ + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - contact@steviejraw.com + +thanks for watching!! +#goshjohnnydepp #justiceforjohnnydepp #gosh",138.0,1004.0,,,,,,825.0,3.0,0.0,38.0,donate a dollar - johnny depp charity stream raising awareness for dv victims & supporting gosh,,,,,,,,,, +1322,https://www.youtube.com/watch?v=eGnfbtRqdjc,0,0,"{""Keira's world""}",1,youtube,video,original video,"johnny depp 'did not get fair trial', lawyers tell appeal court +johnny depp “did not receive a fair trial” and the high court ruling that stated he assaulted his ex-wife amber heard and put her in fear for her life is “plainly wrong”, lawyers for the hollywood star have told the court of appeal. + +the 57-year-old sued the sun over a column by its executive editor, dan wootton, which referred to “overwhelming evidence” that he had attacked heard, 34, during their relationship and described him as a “wife beater”. +in the initial ruling, last month, mr justice nicol dismissed depp’s claim, saying the paper’s owner, news group newspapers, had proved what was in the article to be “substantially true”. +dismissing depp’s libel case, nicol found that 12 of the 14 alleged incidents of domestic violence relied on by ngn did occur. the judge said depp put heard “in fear of her life” during what she described as a “three-day hostage situation” in australia in march 2015. +depp’s barrister, david sherborne, has asked the appeal court to “set aside the judgment and order a new trial” if permission to appeal against nicol’s judgment is given. in documents filed with the appeal court on thursday, depp’s lawyers claimed nicol’s ruling was “manifestly unsafe”. +depp’s legal team claim nicol “failed to undertake any, or an adequate analysis, of ms heard’s shifting account, despite the importance of consistency as a consideration of a witness’s testimony”. +sherborne, said nicol “concluded that the appellant was guilty of serious physical assaults without taking account of or even acknowledging that ms heard had been untruthful in her evidence, without testing her account against the documentary evidence and the evidence of other witnesses, and without making any findings that he disbelieved those witnesses”. +the barrister also argued: “the conclusion which flows from an overall assessment of the judgment is that (mr justice nicol) decided to find for the ‘victim’ but failed to provide the necessary analysis to explain or justify that conclusion. +“also he excluded relevant evidence from his consideration, ignored or dismissed as irrelevant matters that substantially undermined ms heard, made findings unsupported by the evidence, and failed to assess whether her allegations could withstand proper scrutiny",12.0,58.0,,,,,,43.0,0.0,0.0,3.0,johnny dep didn't get a fair lawsuit,,,,,,,,,, +1323,https://www.youtube.com/watch?v=JUndrUOhBV8,0,0,{'Mr H Reviews'},1,youtube,video,original video,"amber heard petition has blown up how will warner bros react? + +christmas merch - https://teespring.com/stores/mr-h-reviews + +per deadline - an online petition urging studio personnel to remove amber heard from the upcoming aquaman sequel has received more than 1.5 million signatures. + +created by jeanne larson, the petition crossed the signature milestone after deadline reported that mads mikkelsen will replace johnny depp in the latest fantastic beasts film and is addressed to executives at both dc entertainment and warner bros. to date the petition has received a total of 1,579,927 signatures, more than half of its targeted 3,000,000 pledges. + + + +https://www.comicbookmovie.com/aquaman/aquaman_2/petition-to-remove-aquaman-star-amber-heard-from-the-sequel-surpasses-15-million-signatures-a180487#gs.meawyc + +https://deadline.com/2020/11/petition-johnny-depp-axe-amber-heard-aquaman-1-5-million-signatures-1234622804/ + + + +my website - https://www.productionhfilms.com/ + + + +support my new lovecraft film - https://www.gofundme.com/f/1wjly9r91c + + + + +production h films socials - +https://twitter.com/hstudiofilm +https://www.instagram.com/productionhfilms/ + +#johnnydepp #amberheard #news + + +teespring - https://teespring.com/en-gb/stores/mr-h-reviews + +amazon affiliate link - https://amzn.to/2hljfzh + +those wanting to become a patron - https://www.patreon.com/mrhreviews + +follow me on twitter to interact with me and suggest future videos - https://twitter.com/mrhreviews + +for business and general inquiries - mrhreviews@gmail.com",1031.0,13412.0,,,,,,12137.0,24.0,0.0,220.0,amber heard petition has blown up how will warner bros react?,,,,,,,,,, +1324,https://www.youtube.com/watch?v=3Dqld54iEFE,0,0,{'A Voice For Survivors 2021 Project'},1,youtube,video,original video,"welcome all, + +this video is a #publiclettertoamberheard from a #survivorofdv. +contained within the video is the letter and below are links related to the video. +please excuse our poor editing skills as photo editing isnt our strong suit. + +thank you to @steviejraw, @spirituallyempoweredcoaching and @shelbysoup, for all the help and info provided to us to help this process go ahead. + +our twitter is @justiceforsurv4 + +uk court documents are available at www.nickwallis.com + +and importantly our change.org petition which you can find at http://chng.it/rgqt4cnxpd. + +#justiceforjohnnydepp #amberheard #domesticviolenceknowsnogender #justiceforsurvivors",1980.0,23636.0,,,,,,21173.0,109.0,0.0,374.0,a public letter to amber heard from a survivor of dv,,,,,,,,,, +1325,https://www.youtube.com/watch?v=8OJXelGFMpo,0,0,{'#JohnnyDeppIsRacist'},1,youtube,video,original video,,0.0,,,,,,,10.0,3.0,0.0,,was amber heard arrested? (amber heard playlist!!),,,,,,,,,, +1326,https://www.youtube.com/watch?v=z67W67KmusA,0,0,{'Fire Amber Heard'},1,youtube,video,original video,i still don't get why they didn't fire amber heard.,1.0,5.0,,,,,,4.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 22,,,,,,,,,, +1327,https://www.youtube.com/watch?v=w0pAQWY77Mg,0,0,{'Viral Flash'},1,youtube,video,original video,"amber heard reportedly in talks for ‘pirates of the caribbean’ reboot!! +______________________________________________ +for more videos subscribe : https://bit.ly/2zopgqj +______________________________________________ +while the hits keep coming for johnny depp in his continuing estrangement battles against his ex-wife, this time she’s coming for his most iconic role. + +in today’s video are going to tell about amber heard reportedly in talks for ‘pirates of the caribbean’ reboot + +johnny depp, now 55, and amber heard, 32, met on the set of the rum diary in 2011 and commenced dating fresh off his relationship with vanessa paradis. depp and heard's marriage was short-lived, only lasting from february 2015 until she filed for divorce in may 2016. + +amber heard and johnny depp: the dramatic divorcee gift that keeps on giving. just a few years ago, johnny depp was one of the highest-paid actors on the planet, but allegations of violence made him box office poison. petitions calling for his removal from the pirates of the caribbean and fantastic beasts franchises emerged. depp, during a lawsuit against his ex-wife amber heard, claimed that her allegations had hurt his career. while the role of grindelwald is that the sole career casualty he’s faced so far in his epic years-long showdown with heard, depp’s legendary status as captain jack sparrow could even be commandeered by his estranged ex-wife. not only is she keeping her role in aquaman 2, but she will even be within the running for a task within the new pirates of the caribbean reboot. if this information is true, she would be joining ranks with margot robbie’s pirates reboot, promising “lots of girl power.” + +while it’s unclear if the actress has had talks with the studio just yet about it, or if she’s only discussed it with the birds of prey star at this stage, booting depp from pirates of the caribbean then drafting heard in to sail the body of water instead would little question send the online into a fit of rage? that being said, within the eyes of the law, amber is technically the victim here, and if warner bros is willing to possess her headline a significant blockbuster. + +johnny depp continues to receive blows after losing his appeal against the united kingdom’s court ruling on the sun’s ‘wife-beater’ defamation case. new reports have circulated stating that aquaman star amber heard is talking with margot robbie to hitch depp’s former franchise. + +while this is often ready to be a huge blow to depp, we’re unsure jerry bruckheimer, producer of pirates and longtime friend of the actor, would allow such disrespect. fans are also on depp’s side, with nearly 350,000 signatures on a petition to bring him back because of the famed captain. heard has her own, not so flattering petition to fireside her from aquaman, which claims quite 1.5 million signatures. + +the new developments in depp and heard’s careers still unfold while their legal battle ensues. it's interesting to determine how things would find yourself later and if heard’s movies will receive the impact of the involves boycotts that fans are campaigning for. the pirates of the caribbean sixth installment with margot robbie remains in development. disney dropped johnny depp from the pirates of the caribbean franchise four days after amber heard's op-ed within the washington post, his attorneys allege, which they see the events as connected. + +johnny depp's lawyers just filed a $50 million defamation suit against amber heard, arguing her abuse allegations ""were a neighborhood of an elaborate hoax to urge positive publicity for ms. heard and advance her career."" since the op-ed was published on december 18, the lawsuit also suggests it had been done to help promote her film aquaman. + +what are your views all about? are you disappointed that the jack sparrow actor won’t be making an appearance in any future pirates of the caribbean installments, or are you happy with disney’s decision to cut ties with the alleged abuser? let us know your thoughts in the comments section below and if you haven’t subscribed to my channel yet, please do so. see you in the next video. +______________________________________________ +about my channel : +welcome to the viral flash! in this channel we upload videos related to celebrity gossip, entertainment news, top 10 list videos, updates on royal family etc. as far as possible, we upload 4 videos each week. thanks for watching! +__________________________________________________ +for more videos subscribe : https://bit.ly/2zopgqj",9.0,139.0,,,,,,124.0,3.0,0.0,3.0,amber heard reportedly in talks for ‘pirates of the caribbean’ reboot!!,,,,,,,,,, +1328,https://www.youtube.com/watch?v=6e2xw5WB0ZE,0,0,{'celebsfire Tv'},1,youtube,video,original video,,102.0,26650.0,,,,,,26527.0,9.0,0.0,12.0,nude video celebs » amber heard sexy machete kills 2013,,,,,,,,,, +1329,https://www.youtube.com/watch?v=YCvHrxo4GWw,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"we have a full on media attack happening against johnny depp after losing his warner brothers deal for fantastic beast and the hollywood reporter hit piece, including both watch mojo and access hollywood over amber heard. plus the amazing idea of #deppmovienight! + +let me know what you think! + +💕 don't forget to like & subscribe! 💕 + + + +backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + +become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +if you want to support my channel, please check out my patreon and subscribe star below: + +patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp #deppmovienight #deppcember #westandwithjohnnydepp #thestand",340.0,3856.0,,,,,,3385.0,2.0,0.0,129.0,both watchmojo & access hollywood attack johnny depp to spotlight amber heard! | #deppmovienight,,,,,,,,,, +1330,https://www.youtube.com/watch?v=Cii8T1awZgY,0,0,{'Atticus TheDeathMetaller'},1,youtube,video,original video,"pirates of the caribbean and escape from the sadistic bitch in atlantis. now playing everywhere despite the rona outbreak but fuck that shit! + +ranterinshades - https://www.youtube.com/user/ranterin... + +eddie linderos for the new title - https://www.youtube.com/user/eddie666... + +previous video - https://www.youtube.com/watch?v=c0347gpeac8 + +article 1 - https://www.nytimes.com/2020/11/02/arts/johnny-depp-libel-case.html + +article 2 - https://www.cinemablend.com/news/2558370/johnny-depp-leaving-fantastic-beasts-following-loss-in-libel-lawsuit-harry-potter-amber-heard + + +i do not own the copyright material and content used in this video. the video, and the content that is provided is all under fair use - https://www.copyright.gov/title17/92c.. + +ice nine kills - the world in my hands - https://www.youtube.com/watch?v=oxklthwide4 + +facebook - https://www.facebook.com/atticusthede... +instagram - https://instagram.com/atticuscousland/ +discord - discord - https://discord.gg/hgnnzw +bunny & friends potcast - https://www.youtube.com/channel/ucboijysayu7jef46fh_pbea",151.0,1452.0,,,,,,1258.0,1.0,0.0,42.0,amber heard still cunt of 2020 #justiceforjohnnydepp #metoo,,,,,,,,,, +1331,https://www.youtube.com/watch?v=w57Tf3JS7u4,0,0,{'Christina Taft'},1,youtube,video,original video,"showing #bots against amber heard created from #machinelearning coders and hate groups which were incited by adam waldman and johnny depp. coded bias shows tay the bot created on twitter. ""the largest 21st century story."" - 2020 shows the stand pandemics & artificial intelligence for bad. + +on nov 2, judge nicol ruled 12/14 violent incidents were valid against amber and that she feared for her life from her ex-husband. + +bots under the video ""amber heard's 2020 takeaway: 'adapt & survive'"" login with an account, dislike, post same comment, like other comments of accounts tagged as part of the swarm, logout, login with new account, & repeat. it's automatic & can be from one bot with multiple bats. + +""we got 1.35 million votes and we will continue no matter the cost"" says ptegaming in a reddit hate group 1 month before the bot swarm under accesshollywood's video with #amberheard: https://youtu.be/uretrfma-io + +""it's ironic the topics of the stand"" and of #blackmirror's nosedive episode from 4 years ago. + +after much investigation & #reporting, it's clear social platform companies refuse to stop cyberabuse because of no #discrimination laws online. + +add recaptcha: +bots have been reported for 6 months now via forbes, the times, hollywood reporter. +4 change petitions had abusive comments closed. + +it causes repeated death, physical, coercive threats based on imaginary numbers increasing consistently per day. it causes what would be hate crimes in countries overseas. they already had to use a police escort in july. + +""many of them are bots, their objective is to bully, demean, sway, or drown out opinions... they've started pointless petitions, angry tweets, and continued their threats towards his ex-wife, amber heard, judge nicols, and even myself for speaking out."" +https://www.forbes.com/sites/jeetendrsehdev/2020/11/09/heres-why-dior-needs-to-ditch-brand-ambassador-johnny-depp + +""according to a report from the well-respected times of london, ny law firm kaplan hecker & fink employed bot sentinel, a group that uses artificial intelligence to detect and track troll bots & suspect twitter accounts, to assess anti-amber heard tweets and to investigate if the actress “had been a victim of an ongoing targeted harassment and smear campaign.” + +the concluding report claims to have identified active inauthentic accounts created specifically to target... account[s] of ms heard and two anti-amber heard change.org petitions asking she be fired from two high profile projects. the report says “we noted the suspicious timing and strange activity associated with the petitions.” + +“while monitoring the remove amber heard from aquaman 2 petition, we observed a significant number of fraudulent signatures, and we estimate 1 out of every 3 signatures were conspicuously fake or highly suspicious.” +tweets are being automated and implies associates of mr. depp could have instructed bot specialists to do the job... report also says “accounts that were targeting ms heard were also promoting and praising adam waldman… it was unusual that inauthentic accounts were tweeting about mr. waldman and using similar talking points.”"" +https://www.thegeekbuzz.com/the-basement/troll-bots-positively-identified-in-cyber-warfare-against-aquaman-actress-amber-heard + +#hollywood #reporter: +""bots amplifying... +""our clients are suing the white supremacists and neo-nazis responsible for the violence in charlottesville. i have clients who are suing donald trump. but, by far, the one case that has generated the greatest amount of hostile social media attacks is johnny depp v. amber heard. not even close."""" +https://www.hollywoodreporter.com/features/hes-radioactive-inside-johnny-depps-self-made-implosion + +#amberheard's counterclaim filed in august 2020 counters with breaking a law in virginia against harassment via #computer: + +""10. as part of his ongoing smear campaign, mr. depp and/or his agents acting on his behalf have directed both authentic and inauthentic social media accounts, and/or non-human controlled “bots,” to target ms. heard. .. the talking points in these accounts are strikingly similar but use slightly different text and content to evade [detection] +11. there are a number of newly created... accounts specifically or predominantly designed to damage ms. heard. many of these accounts have cyrillic signatures... +...which inauthentic accounts... amplify, which further evidence a coordinated smear campaign... +16. mr. depp, through his agents and attorneys in virginia, including specifically waldman, have engaged in a campaign to harass and damages ms. heard through the use of computers and computer accessible vehicles. + +this conduct also has the potential effect of polluting the jury pool .... +37. in december 2018, ms. heard published an op-ed in the washington post calling for “changes to laws and rules and social norms” + +it perpetuates abuse towards #women and other victims #online who have gone into the crossfires. + +#elonmusk #endvaw #aclu #sdgs #ai #life",,,,,,,,1545.0,,0.0,8.0,"amber heard vs bots swarm tech, depp, waldman - coded bias 2020 - the stand",,,,,,,,,, +1332,https://www.youtube.com/watch?v=OlA43f4Rjx8,0,0,{'Fire Amber Heard'},1,youtube,video,original video,thank you if you're reading this. now where's my money?,0.0,0.0,,,,,,0.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 5,,,,,,,,,, +1333,https://www.youtube.com/watch?v=qJZ6iBWGCz8,0,0,{'InformOverload'},1,youtube,video,original video,"elon musk wants son to be 'prince of canada' +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +elon musk sure has an interesting sense of humor, and cracks jokes all the time on his twitter. which is definitely very different from other famous billionaires we have seen. but his latest joke has people scratching their heads, even though people have learned never to underestimate elon’s far fetched humor. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#elonmusk #canada #elonmuskbaby #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +mackenzie smith: http://instagram.com/mackenziesmitth\ + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +dylan lamovsek: https://twitter.com/uptownduck00 + +📱instagram: https://www.instagram.com/informoverload +📱twitter: https://twitter.com/informoverload +✉️email | contact: informoverload@gmail.com",565.0,10954.0,,,,,,10267.0,24.0,0.0,98.0,elon musk wants son to be 'prince of canada',,,,,,,,,, +1334,https://www.youtube.com/watch?v=mQLnp0Z6I3o,0,0,{'SkayWol'},1,youtube,video,original video,"parece ser que la warner planea echar o reducir como minimo la presencia de amber heard en la segunda parte de aquaman...interesante la noticia de hoy con respecto al futuro de la ex de johnny depp en la segunda parte del hombre de atlantis. + +enlace noticia https://spoiler.bolavip.com/cine/johnny-depp-warner-bros-considera-despedir-a-amber-heard-de-aquaman-2-20201225-0004.html + +#amberheard#aquaman2#skaywol",2.0,57.0,,,,,,53.0,1.0,0.0,1.0,amber heard apartada de aquaman 2 ? +johnny depp,,,,,,,,,, +1335,https://www.youtube.com/watch?v=sQnH7eDYgvY,0,0,{'60 Second News'},1,youtube,video,original video,"#shorts + + +main channel: https://www.youtube.com/c/lukehunter1 + +all news sourced from reddit and fact-checked on individual sites. + + + + +amber heard now being paid $33,000 to give talks on domestic violence – presumably a “how to” guide + +florida puppy that escaped alligator's jaws becomes sheriff’s 'deputy dog' – immediately starts barking at black people + +religious leaders from around the world come together to demand ban on gay conversion therapy – i don’t think it’s all that bad really, in fact, i think all the lgbtqa+ community should learn how to convert… at least as long as the bloody americans keep rejecting the metric system + +man mauled to death by pet hippo he described as 'like a son' – the hippos name was oedipus, + +20% americans have reportedly gotten hurt while setting up christmas trees this year – this just in, christmas more dangerous than covid. + +twitter to scrub posts claiming vaccines ‘cause harm’ or are ‘used to control populations’ in latest ‘conspiracy’ crackdown – yet they still allow the imaginary state wyoming to be mentioned! i will not let this go",7.0,118.0,,,,,,111.0,0.0,0.0,0.0,60 second news 17th dec (amber heard/dogs),,,,,,,,,, +1336,https://www.youtube.com/watch?v=RQqIqJO7jFc,0,0,{'Geeks + Gamers'},1,youtube,video,original video,#amberheard #johnnydepp #brielarson,5733.0,59637.0,,,,,,52875.0,206.0,0.0,823.0,amber heard dethrones brie larson for most hated person on the internet!,,,,,,,,,, +1337,https://www.youtube.com/watch?v=9gI8hojy77E,0,0,{'Mannix'},1,youtube,video,original video,"amber heard and johnny depp saga continues, today there is some good news update for johnny depp fans and hilarious fail for amber heard as she might lose her role in aquaman 2! +new video on second channel: https://bit.ly/mannixplus + + +follow me on twitter @sirmannix",5262.0,71354.0,,,,,,65344.0,92.0,0.0,656.0,terrible news for amber heard! she gets destroyed!,,,,,,,,,, +1338,https://www.youtube.com/watch?v=y7rNkTJsiSU,0,0,{'The DC Life'},1,youtube,video,original video,"a new rumor suggests that during the “knightmare” sequence of the snyder cut of justice league, we will see amber heard’s mera take over as ruler of atlantis. + +more content from dc life: + +my other channel: https://www.youtube.com/channel/ucsdc7pwgltphbjppfiutilw + +instagram: https://instagram.com/the_dclife?igshid=e68fk2fkw42y + +tiktok: https://vm.tiktok.com/jfcbk3v",31.0,1132.0,,,,,,1049.0,9.0,0.0,43.0,amber heard’s mera will become ruler of atlantis in the snyder cut of justice league,,,,,,,,,, +1339,https://www.youtube.com/watch?v=kxCFkHY3Rbo,0,0,{'In News English'},1,youtube,video,original video,"subscribe i n news english youtube channel to all the big news of the world. + +johnny depp attempted to have ex-wife amber heard replaced on aquaman. depp and heard were married from 2015-2017, and their relationship continues to have a major impact on the entertainment industry. the two made headlines for legal issues both during and after their marriage. last month, depp lost a lawsuit against the sun, which called him a ""wifebeater"" in a 2018 article. following this decision, depp was asked to resign from the upcoming film fantastic beasts and where to find them 3, where he was to reprise his role as gellert grindelwald. despite only filming one scene, depp received millions for his work on the movie. + +following depp's exit from the fantastic beasts franchise, a subset of fans have similarly called for heard to be fired from aquaman 2. the actor starred as mera in the first movie and will play the part again in the sequel. last month, a petition titled ""remove amber heard from aquaman 2"" was started on change.org. it quickly surpassed one million signatures and now sits at over 1.7 million. shortly after, heard debunked rumors mera would be recast in the film, stating, ""i'm excited to get started next year."" now, it seems those who signed the petition aren't the only ones who had an interest in having heard replaced in the aquaman franchise. + +according to a new article from thr, at one point, depp told his sister, christi dembrowski, a producer with pull at warner bros., that he wanted heard ""replaced on the wb film."" in the process of the trial, depp revealed the film in question was aquaman. + +the reveal about depp comes after a similar report last year alleged the same. though this more concrete information is shocking, it also lines up with what's already known about depp and heard's volatile relationship. ultimately, it seems depp's attempts to interfere with heard's career amounted to nothing, as the actor remained a part of aquaman. still, the news is disconcerting to say the least, especially considering the power depp once wielded in the industry. it's clear he was willing to use any sway he had against heard, which is troubling. + +it remains to be seen if this reveal about depp will have any impact on heard's future in the dc extended universe. if anything, it seems to reinforce warner bros' commitment to heard. if depp did follow through with contacting the studio through his sister, apparently his request was denied. though there have been new developments in the last year or so, this could bode well for heard's role in the next aquaman movie.",0.0,29.0,,,,,,24.0,2.0,0.0,3.0,johnny depp tried to get amber heard replaced on aquaman,,,,,,,,,, +1340,https://www.youtube.com/watch?v=yGcwxQPB_NY,0,0,{'Lost Beyond Pluto'},1,youtube,video,original video,"https://www.nickwallis.com/courtofappeal + + +related videos + + +analysing the 'judgment': https://youtu.be/khshyyuul1o + + +the appeals process: https://youtu.be/vzq89nk9t-0 + + +an example of a successful libel appeal in the uk: https://youtu.be/9dmldzbjw6k + + +social media + +patreon: https://www.patreon.com/lostbeyondpluto + +instagram: https://www.instagram.com/lostbeyondpluto + +twitter: https://twitter.com/lostbeyondpluto + +tumblr: https://lostbeyondpluto.tumblr.com/ + +soundcloud: https://soundcloud.com/lost-beyond-pluto + +music videos: + +blue eyes: https://www.youtube.com/watch?v=wm2-kyp18ww + +once a liar: https://youtu.be/bgwc09ptuhm + + + +stars intro theme by eva grace",2410.0,31278.0,,,,,,28365.0,17.0,0.0,486.0,johnny depp v amber heard (the sun/ngn) - analysing johnny's appeal arguments,,,,,,,,,, +1341,https://www.youtube.com/watch?v=IsJXZPhqfHY,0,0,{'ikereviews 2'},1,youtube,video,original video,,24.0,202.0,,,,,,176.0,0.0,0.0,2.0,the stand is a flop boycott begins over amber heard,,,,,,,,,, +1342,https://www.youtube.com/watch?v=gV5Pe79pHlo,0,0,{'afeludga'},1,youtube,video,original video,"amber heard comparte foto como nadine cross, personaje que interpretará en 'the stand' +please subscribe: https://www.youtube.com/channel/ucy6sohctpef5rq00cx7mfsq?sub_confirmation=1 +source: http://www.milenio.com/espectaculos/famosos/amber-heard-comparte-imagen-nadine-cross-serie-the-stand +#amberheard, #comparte, #foto, #comonadinecross, #personaje, #interpretará, #thestand",0.0,17.0,,,,,,17.0,0.0,0.0,0.0,"amber heard comparte foto como nadine cross, personaje que interpretará en 'the stand'",,,,,,,,,, +1343,https://www.youtube.com/watch?v=C_u5YuUzy1s,0,0,{'Fire Amber Heard'},1,youtube,video,original video,let's make it official. i'm hungry 😁,1.0,3.0,,,,,,2.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 11,,,,,,,,,, +1344,https://www.youtube.com/watch?v=IkTwNd4JYa0,0,0,{'YellowFlash 2'},1,youtube,video,original video,"it's been a crazy year! but, sometimes karma can come through to collect some tall debts! ah your bill is past due! + +►check out my store: https://teespring.com/stores/yellowflash-merch + +►check out my patreon: https://www.patreon.com/yellowflashcomics + +►check out my twitch: https://www.twitch.tv/yellowflashtwo + +►follow me on twitter: @yellowflashguy + +►follow me on parler: https://parler.com/profile/yellowflash +#amberheard #johnnydepp #justiceforjohnny",10233.0,214465.0,,,,,,202347.0,166.0,0.0,1719.0,instant regret for amber heard! karma comes to collect over johnny depp injustice!,,,,,,,,,, +1345,https://www.youtube.com/watch?v=hf-Udu30Lzs,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"yesterday, johnny depp got a massive win in the case in fairfax virginia, amber will have to show proof a multiple things including receipts and mugshots. let me know what you think! + +💕 don't forget to like & subscribe! 💕 + + + +backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + + + +become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +if you want to support my channel, please check out my patreon and subscribe star below: + +patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp #thesun #ngn #aquaman2",902.0,11342.0,,,,,,10216.0,16.0,0.0,208.0,johnny depp gets a huge win against amber heard | bring those reciept baby!,,,,,,,,,, +1346,https://www.youtube.com/watch?v=L1x07aqi1-0,0,0,{'Steven And Jason'},1,youtube,video,original video,"in this episode we discuss the extremely volatile amber heard and johnny depp situation. + +as steven has worked with amber before, he offers his opinion and expresses his concern about the ongoings of this very public battle. we do not condone domestic abuse or violence of any kind, no matter what party is involved, and empower anyone who is a victim to speak up and come forward. + +if you or someone you know is a victim of domestic abuse and needs help getting out, please contact https://www.thehotline.org/ + +if you or someone you know is experience troubles with substance abuse, please contact https://www.samhsa.gov/find-help/national-helpline + +there is more to the story, but this topic came out of nowhere and maybe deserves a longer, more nuanced episode. let us know your thoughts in the comments below. + +*editors note at 28:11. steven said 'never back down' had not come out yet, but it had. + +00:00 intro & a quick catch up +05:45 happy birthday corona +06:30 steven passes 100k on tiktok while charli d'amelio passes 100m +08:30 jason tries to remember 'girl with no job' +12:27 steven discusses his viral amber heard tiktok +15:50 amber heard & johnny depp discussion +38:34 jason remembers 'girl with no job' + + + +add us on instagram: +https://www.instagram.com/stevenrcrowley +https://www.instagram.com/stevenjasonpodcast + +add us on tiktok: +https://www.tiktok.com/@stevencrowley + +listen: +spotify: https://spoti.fi/2eawjph + +the equipment used: https://www.amazon.com/shop/stevencrowley",949.0,19343.0,,,,,,17906.0,74.0,0.0,414.0,let's talk about amber heard & johnny depp,,,,,,,,,, +1347,https://www.youtube.com/watch?v=VE7b0970xNs,0,0,{'Monkey Toes Studio'},1,youtube,video,original video,"kevin mcnally shares his experience of meeting amber heard on the set of pirates of the caribbean 5 and recounts the reasoning provided for why johnny depp missed days of filming. + +watch the full 2 hour episode premier of this illuminating episode of the respondent, sunday at 1pm pt.",769.0,8113.0,,,,,,7283.0,0.0,0.0,61.0,kevin mcnally: meeting amber heard during filming of pirates 5 & why johnny depp missed filming days,,,,,,,,,, +1348,https://www.youtube.com/watch?v=OMl-KVjK5lQ,0,0,{'Radezoysa'},1,youtube,video,original video,"did amber heard really donate the $7mil she got from divorce settlements +. +giveaway: https://youtu.be/0pceieeealg +. +for those of y'all who don't want to read the heaps of articles that i had to, in order to make this video. i hope y'all would enjoy. this is the timeline of the johnny depp and amber heard lawsuit case. +. +social media +instagram - https://www.instagram.com/radezoysa/ +twitter - https://twitter.com/radezoysa",24.0,315.0,,,,,,283.0,1.0,0.0,7.0,"update: johnny depp and amber heard (dior, mads mikklesen, donations) - everything you need to know",,,,,,,,,, +1349,https://www.youtube.com/watch?v=77l9gPRUZaw,0,0,{'Stevie J Raw'},1,youtube,video,original video,"in may 2016 amber heard's magic bruises seemed to only appear when it suited her. the thing is she didn't have a single mark on her despite saying that johnny depp had a$$aulted her. + +this is outrageous and johnny deserves justice!!! + +johnny depp tribute by inspired with johnny depp - https://www.youtube.com/watch?v=jqng_fs5cyg&t=1391s + +charity link gosh - https://www.justgiving.com/fundraising/stevie-j-raw1 + +petition to get johnny back - https://www.change.org/p/warner-brothers-bring-johnny-depp-back-to-fantastic-beasts?recruiter=24448735&recruited_by_id=229d8750-1a30-0130-d3ed-3c764e04873b&utm_source=share_petition&utm_medium=copylink&utm_campaign=petition_dashboard + +t-shirt link - https://teespring.com/buy-not-a-bot?utm_swu=3426&utm_campaign=edit_live_listing_minor&utm_source=sendwithus_seller&utm_medium=email_transactional&pid=525&cid=101933 + +let's talk. +join us and enjoy! + +sign the petition here!! - https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2 + +johnny depp is innocent and amber heard must be held accountable for what she has done. + +checkout the stream and let us know what you think. + +website - steviejraw.com + +thanks for watching!! + +website - steviejraw.com + +hit that subscribe button for more news & entertainment. + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - steviejraw@outlook.com + +thanks for watching!! +#goshjohnnydepp #justiceforjohnnydepp #amberheardisaliar",546.0,6910.0,,,,,,6155.0,4.0,0.0,205.0,amber heard's magic bruises - may 2016,,,,,,,,,, +1350,https://www.youtube.com/watch?v=p9Oole_sqYk,0,0,{'girl next door concept'},1,youtube,video,original video,"❤protect your online privacy: https://www.expressvpn.com/girlnextdoorconcept +amber heard and johnny depp give us a great example of a toxic, volatile relationship. there's a lot of narcissistic traits that can be seen and a lot that we, as a society, can learn from their relationship. + +this video is for entertainment purposes only, i am merely sharing my personal opinion on the topic - please do further research. + +lots of npd specialists have spoken out on the matter - please refer to their work for an expert mental health point of view. + +this video was created in fair use and is a commentary of topical issues. +_____________________________________________________ +various articles on the topic: +https://www.bbc.com/news/uk-53347044 + +https://www.expressandstar.com/news/uk-news/2020/07/07/johnny-depp-i-was-an-easy-target-for-calculating-narcissist-amber-heard/ + +https://www.nbcnews.com/think/opinion/johnny-depp-loses-libel-case-tied-amber-heard-win-domestic-ncna1245882 + +https://www.washingtonpost.com/world/europe/johnny-depp-lawsuit-wife-beter/2020/11/02/f36f8e9e-1cbb-11eb-ad53-4c1fda49907d_story.html + +https://theblast.com/c/johnny-depp-amber-heard-lawsuit-lapd-officers-testimony-abuse-defamation + +videos: +https://www.youtube.com/watch?v=lc4hf4w7qxa - the audio mentioned in the video +credit: hyperentertainment + +https://www.youtube.com/watch?v=msneqfbt-mk&t=245s - body language analysis on amber heard +credit: the dialogue body language +_____________________________________________________ +get 40% off skillshare premium: +https://skillshare.eqcm.net/c/2549313/774808/4650 +*affiliate link + +are you still searching for happiness?: +https://www.youtube.com/watch?v=h8uvi... + +my latest interview with npd specialist richard grannon: +https://www.youtube.com/watch?v=4ycvp... + +follow girl next door on instagram: +https://www.instagram.com/girlnextdoorconcept + +my blog posts on hot relationship topics: +https://www.girlnextdoorconcept.com/blog + + +xoxo, +a + +#girlnextdoorconcept #johnnydepp #amberheard",50.0,591.0,,,,,,508.0,0.0,0.0,33.0,let's chat! amber heard and johnny depp: narcissism or just a volatile relationship?,,,,,,,,,, +1351,https://www.youtube.com/watch?v=JWnyIsvmOTc,0,0,{'MechaRandom42'},1,youtube,video,original video,"amber heard is available to give lectures for the low low price of $33,000. is anyone going to hire her for this? #amberheard #aquaman2 #celebrities + +*all videos are intended for entertainment purposes only. + +watch mecha on the high council: https://youtu.be/_952dyacizi + +do we skip star wars? : https://youtu.be/y2kgtlblpbu + +watch the best mash up ever! : https://youtu.be/qfjtijkhfig + +check out a funny star trek video: https://youtu.be/ucm6rt6y5gu + +watch mecha live on midnight's edge after dark! https://www.youtube.com/channel/ucbnyrk-mtsjnq7y6u-eg3ka + +https://teespring.com/stores/mechamerch + +https://twitch.tv/randomgameuser42 + +https://patreon.com/randomgameuser42 + +donations: https://streamlabs.com/randomgameuser42 + +mecharandom42 +p.o. box 1566 +loveland, co 80539 + +sub to mecha's live channel: https://www.youtube.com/channel/ucncmif1muvtj9qyfxd-7xeq + +mecha's amazon wishlist: https://www.amazon.com/hz/wishlist/ls/2d0qjt6k4d84t?ref_=wl_share + +*disclaimer: youtube's advertisers may be using cookies to track your data weather you are logged in or not. all content on this channel is intended for an audience over the age of 30.",233.0,1987.0,,,,,,1684.0,6.0,0.0,64.0,amber heard gets paid big bucks for this?,,,,,,,,,, +1352,https://www.youtube.com/watch?v=mqNncJUjc-s,0,0,{'Viva Frei'},1,youtube,video,original video,"johnny depp sued the sun for branding him a spouse abuser in a 2018 article - on the basis of claims made by his ex amber heard. his lawsuit was dismissed, and the judgment itself can only be called questionable. but it highlights the risks and perils of leaving anything in the hands of a judge. + +#deppdefamed #johnnydepplawsuit #deppdissmissed",924.0,12814.0,,,,,,11701.0,15.0,0.0,174.0,hl-94: johnny depp defamation lawsuit dismissed - viva & barnes highlight,,,,,,,,,, +1353,https://www.youtube.com/watch?v=pO5Z-Ma8HAQ,0,0,{'Next Level Madame Defarge'},1,youtube,video,original video,"elon musk left amber heard after learning about an event in her past .could this be the information that drove him away? ++++++ +chime in and please comment about all the people whom committed perjury. let's virtually knit a list.",10.0,91.0,,,,,,77.0,1.0,0.0,3.0,elon dumps amber: ah @16yrs-vehicular manslaughter? what??,,,,,,,,,, +1354,https://www.youtube.com/watch?v=eNpXtQmikpU,0,0,"{'Geeks, Graves and Good Stuff'}",1,youtube,video,original video,"amber heard : is getting paid 33k a pop to give speeches on domestic violence + +link to the article: + +https://wegotthiscovered.com/movies/pay-amber-heard-33000-give-talk-domestic-violence/ + +#amberheard +#justiceforjohnnydepp",9.0,88.0,,,,,,76.0,0.0,0.0,3.0,amber heard : is getting paid 33k a pop to give speeches on domestic violence,,,,,,,,,, +1355,https://www.youtube.com/watch?v=wnm8zsPZFJM,0,0,{'Worldie - Social Media for Good'},1,youtube,video,original video,"showing #bots against amber heard created from #machinelearning coders and influence operations with hate incited by adam waldman & johnny depp. coded bias shows tay bot created on twitter. ""the largest 21st century story."" - 2020 shows the stand pandemics & artificial intelligence for bad. +social network analysis reveals volumes by a professional firm. hate groups incited is smoke and mirrors used by the firms to hide the firms. + +on nov 2, judge nicol ruled 12/14 violent incidents proved against amber & she feared for her life. + +bots under video ""amber heard's 2020 takeaway: 'adapt & survive'"" login with account, dislike, post same comment, like other comments of accounts tagged as part of swarm, logout, & repeat. it's automatic & can be one bot with multiple bats. + +""we got 1.35 million votes and we will continue no matter the cost"" - ptegaming in reddit hate group 1 month before bot swarm under accesshollywood's video with #amberheard: https://youtu.be/uretrfma-io + +""it's ironic the topics of the stand"" and of #blackmirror's nosedive episode from 4 years ago. + +after much investigation & #reporting, it's clear social companies refuse to stop cyberabuse with no #discrimination laws online. + +add recaptcha: +bots have been reported for 6 months now via forbes, the times, hollywood reporter. +4 change petitions had abusive comments closed. + +it causes repeated death, physical, coercive threats based on faked numbers increasing consistently per day. these are hate crimes in countries overseas. they had to use a police escort in july. + +""many of them are bots, their objective is to bully, demean, sway, or drown out opinions... they've started pointless petitions, angry tweets, and continued their threats towards his ex-wife, amber heard, judge nicols, and even myself for speaking out."" +https://www.forbes.com/sites/jeetendrsehdev/2020/11/09/heres-why-dior-needs-to-ditch-brand-ambassador-johnny-depp + +""according to a report from the well-respected times of london, ny law firm kaplan hecker & fink employed bot sentinel, a group that uses artificial intelligence to detect and track troll bots & suspect twitter accounts, to assess anti-amber heard tweets and to investigate if the actress “had been a victim of an ongoing targeted harassment and smear campaign.” + +the concluding report claims to have identified active inauthentic accounts created specifically to target... account[s] of ms heard and two anti-amber heard change.org petitions asking she be fired from two high profile projects. “we noted the suspicious timing and strange activity associated with the petitions.” + +“while monitoring the remove amber heard from aquaman 2 petition, we observed a significant number of fraudulent signatures, and we estimate 1 out of every 3 signatures were conspicuously fake or highly suspicious.” +tweets are being automated and implies associates of mr. depp could have instructed bot specialists to do the job... report also says “accounts that were targeting ms heard were also promoting and praising adam waldman… it was unusual that inauthentic accounts were tweeting about mr. waldman and using similar talking points.”"" +https://www.thegeekbuzz.com/the-basement/troll-bots-positively-identified-in-cyber-warfare-against-aquaman-actress-amber-heard/ + +#hollywood #reporter: +""bots amplifying... +""our clients are suing the white supremacists and neo-nazis responsible for the violence in charlottesville. i have clients who are suing donald trump. but, by far, the one case that has generated the greatest amount of hostile social media attacks is johnny depp v. amber heard. not even close."""" +https://www.hollywoodreporter.com/features/hes-radioactive-inside-johnny-depps-self-made-implosion + +#amberheard's counterclaim filed in august 2020 counters with breaking a law in virginia against harassment via #computer: + +""10. as part of his ongoing smear campaign, mr. depp and/or his agents acting on his behalf have directed both authentic and inauthentic social media accounts, and/or non-human controlled “bots,” to target ms. heard. .. the talking points in these accounts are strikingly similar but use slightly different text and content to evade [detection] +11. there are a number of newly created... accounts specifically or predominantly designed to damage ms. heard. many of these accounts have cyrillic signatures... +...which inauthentic accounts... amplify, which further evidence a coordinated smear campaign... +16. mr. depp, through his agents and attorneys in virginia, including specifically waldman, have engaged in a campaign to harass and damages ms. heard through the use of computers and computer accessible vehicles. + +this conduct also has the potential effect of polluting the jury pool .... +37. in december 2018, ms. heard published an op-ed in the washington post calling for “changes to laws and rules and social norms” + +it perpetuates abuse towards #women and other victims #online who have gone in crossfires + +#elonmusk #endvaw #aclu #sdgs #ai #code",,,,,,,,189.0,,0.0,1.0,amber heard vs bots swarm tech & influence operation using hate: adapt & survive 2020 discrimination,,,,,,,,,, +1356,https://www.youtube.com/watch?v=_shgJEJjCW4,0,0,{'The Amber Heard Playlist!!'},1,youtube,video,original video,https://www.the-sun.com/news/uk-news/1167274/amber-heard-johnny-depp-rape-threat-plane/,,,,,,,,263.0,,0.0,,johnny depp is a racist and a rapist!! (amber heard playlist!!),,,,,,,,,, +1357,https://www.youtube.com/watch?v=lFh1TRP-3q8,0,0,{'Thoughts With Jet'},1,youtube,video,original video,"is johnny depp getting fair treatment compared to amber heard ?! + +do you believe johnny depp should get fired while amber heard keeps working ?! + +is the johnny depp and amber heard situation equal or fair ?! + +if johnny depp got fired should amber heard get fired too ?! + +share your comments below and spread the word... + +#amberheard +#johnnydepp +#thoughtswithjet + +subscribe to the channel & follow me on ig @thoughtswithjet +artwork by @mallyswavez on ig",42.0,411.0,,,,,,357.0,0.0,0.0,12.0,amber heard and johnny depp drama,,,,,,,,,, +1358,https://www.youtube.com/watch?v=nwuoosZY9cs,0,0,{'Come Geek Some'},1,youtube,video,original video,"more ex employees now come forward! (including ones we know) + +link: https://www.sausageroll.com.au/lifestyle/celebrities/shes-a-sociopath-a-former-associate-of-amber-heard-speaks-out/ + +join this channel to get access to perks: +https://www.youtube.com/channel/uc4ltvxoxgzobqqduv9ixowg/join + +current channel members +hanne lærke sommer +morning tea +juanita schutte +jennifer willis +lisa lambert +susan redden +cat meissner +broly the mighty +humble bee +sarah wells +christine b-r +zombqueeen +tammy lockley +michieee +stephanie davis +bonnieb +janette tammaro +wendy postma +maureen kinross +deborah melendy +roamer mgtow +madamebebo +claire jones +mary scott +adriana adams +sarah kat +patti_c +steve kass +john le +kimmhy depp +night train blues +harbenja +l c +gelth walker +laura uk +judith hodgson +lifeofsarcasm +clairmbear +moxxie moon +anne holyday +k. kae-linn allison +megan o'shea +sylvan + +hello and welcome to come geek some! for all things geek, like and subscribe to the channel! + +please ignore or flag spam, negative, or hateful comments. we're here to have a good time. thanks everyone, and enjoy :] + +if you would like to support the channel and help us grow! +donations: https://streamlabs.com/comegeeksome + +i'm an avid adobe premiere pro user and have been for quite some time! i would recommend the software to anyone (if they have the spare money a month) + +ps4 player with pc gameplay now and again. still not used to pc gaming! + +interact with us on twitter! https://twitter.com/comegeeksome1 +twitch: https://www.twitch.tv/geeksomegaming + +#justiceforjohnnydepp",1587.0,22806.0,,,,,,20795.0,14.0,0.0,410.0,more ex employees now come forward! (including ones we know),,,,,,,,,, +1359,https://www.youtube.com/watch?v=O6LMM0WIXw8,0,0,{'Flixet'},1,youtube,video,original video,"in today’s video are going to tell you about the real reason why hollywood will think twice before casting amber heard. + +subscribe for more : http://bit.ly/32rc7vi +____________________________________________ + +people are opening up about the backlash after making allegations of abuse against ex-husband johnny depp. there were rumors that warner bros was even contemplating removing heard from the movie to save their iconic movie from the boycott. + +music in this video : + +track: odessa — liqwyd & scandinavianz +music provided by audio library plus +watch: https://youtu.be/jny-dp3lgcg",904.0,25265.0,,,,,,23912.0,217.0,0.0,232.0,the real reason why hollywood will think twice before casting amber heard | flixet,,,,,,,,,, +1360,https://www.youtube.com/watch?v=YvM-nQcJ24U,0,0,{'Mr H Reviews'},1,youtube,video,original video,"warner bros double down amber heard mera replacing aquaman in justice league scene + + + +per boundingintocomics - amber heard is sticking around as mera and may have a future as a dominant recurring female in the dc extended universe. she’s rumored to have taken part in the reshoots conducted recently by zack snyder to finish justice league, and there’s more. + + +https://boundingintocomics.com/2020/12/09/rumor-amber-heards-mera-to-replace-jason-momoas-aquaman-in-pivotal-scene-in-zack-snyders-justice-league/ + + +christmas merch - https://teespring.com/stores/mr-h-reviews + +my website - https://www.productionhfilms.com/ + +support my new lovecraft film - https://www.gofundme.com/f/1wjly9r91c + +production h films socials - +https://twitter.com/hstudiofilm +https://www.instagram.com/productionhfilms/ + + + +#justiceleague #dc #amberheard + + +teespring - https://teespring.com/en-gb/stores/mr-h-reviews + +amazon affiliate link - https://amzn.to/2hljfzh + +those wanting to become a patron - https://www.patreon.com/mrhreviews + +follow me on twitter to interact with me and suggest future videos - https://twitter.com/mrhreviews + +for business and general inquiries - mrhreviews@gmail.com",1321.0,20924.0,,,,,,19149.0,31.0,0.0,423.0,warner bros double down amber heard mera replacing aquaman in justice league scene,,,,,,,,,, +1361,https://www.youtube.com/watch?v=W_Dc073OdC0,0,0,{'Me'},1,youtube,video,original video,"i purely did this for no reason, spent 6 hours of my life. +i guess after i've seen the original clip of amber heard's cameo in zombieland (never realized she was in it), i just wanted to make this. it's quite ironic how her hostile characters represent her real, abusive personality. + +this video isn't supposed to be taken seriously, it was just for fun and i know the editing is terrible but it's supposed to be terrible + +anyway, #justiceforjohnnydepp and #amberheardisanabuser",39.0,643.0,,,,,,588.0,1.0,0.0,15.0,amber heard vs johnny depp in zombieland cameo,,,,,,,,,, +1362,https://www.youtube.com/watch?v=k-qJirGb3F4,0,0,{'Flixet'},1,youtube,video,original video,"in today’s video are going to tell about emilia clarke to take over as mera in 'aquaman 2' from amber heard. + +subscribe for more : http://bit.ly/32rc7vi +___________________________________________ + +game of thrones star emilia clarke suits up as mera to replace amber heard in a stunning new concept design for warner bros. and dc’s aquaman 2. amber heard and emilia clarke are being compared in aquaman 2 fan art, and some netizens prefer the latter. amber heard became even more popular when she played the role of mera in aquaman. however, due to her legal battle with johnny depp, many want her out of the superhero movie. + + +music in this video : + +track: odessa — liqwyd & scandinavianz +music provided by audio library plus +watch: https://youtu.be/jny-dp3lgcg",5037.0,146493.0,,,,,,139718.0,176.0,0.0,1562.0,emilia clarke to take over as mera in 'aquaman 2' from amber heard? | flixet,,,,,,,,,, +1363,https://www.youtube.com/watch?v=RrkuNLntR5M,0,0,{'InformOverload'},1,youtube,video,original video,"lil wayne faces 10 yrs in prison +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + + +recently rapper lil wayne was arrested and charged by federal prosecutors in miami with illegal possession of a gun as a convicted felon. this complaint alleged that dwayne michael carter jr, was in possession of a firearm on december 23rd, 2019, as reported by abc news. however today this case has finally come to a close with a guilty plea coming from lil wayne. i'm going to break it all down for you right here on io. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#io #lilwayne #lilwaynepleadsguilty #lilwaynearrested #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +johnny rogers: https://www.instagram.com/thejohnnyrogers/ + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +sidhant sharma: https://www.instagram.com/sidd_happens + +📱instagram: https://www.instagram.com/informoverload +📱twitter: https://twitter.com/informoverload +✉️email | contact: informoverload@gmail.com",1100.0,22991.0,,,,,,21687.0,31.0,0.0,173.0,lil wayne faces 10 yrs in prison,,,,,,,,,, +1364,https://www.youtube.com/watch?v=LpofHf07Rd8,0,0,{'Fire Amber Heard'},1,youtube,video,original video,fire her.,8.0,31.0,,,,,,22.0,0.0,0.0,1.0,solving a rubik's cube everyday until amber heard gets fired - day 23,,,,,,,,,, +1365,https://www.youtube.com/watch?v=_kmHXRVTCYk,0,0,{'The Movie Channel pak'},1,youtube,video,original video,"aquaman 2 (2022) teaser trailer | jason momoa, amber heard | fan made trailer + +dear viewers, please support my channel and subscribe to my channel so that my goal of ten thousand subscribers can be achieved. + ⏩⏩________________⏪⏪ + +if you like this movie feel free to hit that notification icon to become part of the -the movie channel. + +►►subscribe to my youtube channel: +https://www.youtube.com/channel/ucedigfgrzkswaahr6wi_ueq + + ⏩⏩_________________⏪⏪ + +*hey guys i love reading your thoughts and opinion's in the comments, but please keep it clean and positive. any negative or offensive comments will be removed.* + + ⏩⏩-------------------------------⏪⏪ + +hey guys i would like to make it clear that this is a fan made trailer. this trailer is not real. that means it contains clips from other movies, put together with special effects using wondershare filmora video editor and picmaker (picmaker.com) photo editor. + + +creating this video take days to produce and publish. i do lots of research and takes a lot of time. the thumbnails and posters you see are originally created by me. + + ⏪⏪----------------------⏩⏩ + +** copyright disclaimer under section 107 of the copyright act 1976, allowance is made for ""fair use"" for purposes such as criticism, commenting, news reporting, teaching, scholarship, and research. fair use is a use permitted by copyright statute that might otherwise be infringing. non-profit, educational or personal use tips the balance in favor of fair use. and if there is any objection to loading our video in it, please contact us, we will also delete it at the same time** + +all right reserved to the respective owners. for entertainment/promotional purpose only.. ** + +thanks for watching and subscriber the channel . + +share this movie link with friends",4.0,50.0,,,,,,44.0,2.0,0.0,0.0,"aquaman 2 (2022) teaser trailer | jason momoa, amber heard | fan made trailer",,,,,,,,,, +1366,https://www.youtube.com/watch?v=Q7oEyn1p0Zc,0,0,{'Fire Amber Heard'},1,youtube,video,original video,i literally have nothing to say.,0.0,1.0,,,,,,1.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 6,,,,,,,,,, +1367,https://www.youtube.com/watch?v=5RlfJtu5_G0,0,0,{'Fire Amber Heard'},1,youtube,video,original video,necesito dinero.,0.0,3.0,,,,,,3.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 9,,,,,,,,,, +1368,https://www.youtube.com/watch?v=74bDLtT6Khw,0,0,{'Viral Vision'},1,youtube,video,original video,"10 celebrities who defended johnny depp against amber heard... +there is a lot going on in the world of johnny depp right now. but despite all the things that have been said, there are a lot of celebrities who have come out of the woodwork if you will to defend him and say how good of a guy he is. but who would do such a thing? allow us to show you. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone, a look at the celebrities who have happily spoken up for johnny depp and defended his character both as a friend, as a man, and as a loving partner and father. do these testimonies further help you understand why johnny depp may be innocent in all of this? do you think that he is innocent? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",53582.0,1635309.0,,,,,,1576174.0,1292.0,0.0,4261.0,10 celebrities who defended johnny depp against amber heard...,,,,,,,,,, +1369,https://www.youtube.com/watch?v=iZrsX6OYMBY,0,0,{'InformOverload'},1,youtube,video,original video,"top 10 celebrities who went to prison 2020 +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +as we wind down yet another year, to no surprise, there have been tons of celebrities, influencers, actors, musicians, entertainers and so on who have found themselves locked behind bars. and as wild of a year as 2020 has been, at least you weren’t thrown in jail or prison right? unfortunately for the 10 folks featured on today’s list, they can’t say the same. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +jarred bronstein: http://instagram.com/bronst7 + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +claudia leung: https://www.instagram.com/claudzleung/ + + +📱instagram: https://www.instagram.com/informoverload +📱twitter: https://twitter.com/informoverload +✉️email | contact: informoverload@gmail.com",1785.0,44473.0,,,,,,42522.0,38.0,0.0,128.0,top 10 celebrities who went to prison 2020,,,,,,,,,, +1370,https://www.youtube.com/watch?v=FjGG__tAYPA,0,0,{'PD NOTICIAS'},1,youtube,video,original video,"heard interpreta en the stand, a nadine una mujer con serias dudas sobre cuál es la manera adecuada de afrontar la vida.... +► like & share video. +► folow facebook : https://www.facebook.com/pdnoticiasspain/",6.0,170.0,,,,,,151.0,13.0,0.0,0.0,"amber heard protagoniza the stand, serie que aborda la realidad y la ficción de una pandemia",,,,,,,,,, +1371,https://www.youtube.com/watch?v=QM1RWLgVuTM,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"1st amber heard, now this! cbs wrecked as the stand is boycotted again! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#henryzaga #thestand #amberheard",1768.0,20886.0,,,,,,18819.0,20.0,0.0,279.0,"1st amber heard, now this! cbs wrecked as the stand is boycotted again!",,,,,,,,,, +1372,https://www.youtube.com/watch?v=KvroU3Zx9dg,0,0,{'Brennpunkt Internet // NosTeraFucked'},1,youtube,video,original video,"auf anderen plattformen und download: https://lnkfi.re/brennpunktinternet +tino: https://www.instagram.com/tinoranacher/ +hörerwunsch►https://www.paypal.me/nosterafu + +►support: https://www.patreon.com/nosterafutv +- paypal : https://www.paypal.me/nosterafu +- amazon: https://www.amazon.de/gp/search?ie=utf8&tag=nosterafutv-21&linkcode=ur2&linkid=6eeb5d55340fe7d08d46ff7c4c64fd5f&camp=1638&creative=6742&index=videogames&keywords=videospiel +- d.tube (upvotes generieren kryptowährung) : https://d.tube/#!/c/nosterafu +♥♥♥danke♥♥♥ + +live: https://www.twitch.tv/robin_nosterafu + +• instagram : https://www.instagram.com/robin_nosterafu/ +• facebook : https://www.facebook.com/nosterafutvofficial +• twitter : https://twitter.com/nosterafu +• snapchat : @robin_nosterafu (aktuell inaktiv wegen handy) +• fb - robin : https://www.facebook.com/robinnosterafu + +• hauptkanal: https://www.youtube.com/nosterafutv + +herodes : +https://www.instagram.com/erich_kistner/ +https://www.facebook.com/herodes.armloch +kalle : +https://www.instagram.com/einerfuerkalle/ +https://www.facebook.com/ichgehenichtaufskloweilichmusssondernweilicheskann + +------------------------------------- +music: + +--------------------------------------------------------- +nosterafutv ist eine gruppe von leuten, die dumme videos macht. + +gebt uns feedback: +https://www.youtube.com/playlist?list=plci17a0ko6zt7ydpr_tpk52etsxcxdjdf",20.0,285.0,,,,,,255.0,0.0,0.0,10.0,"amber heard dislike rekord, neue corona mutation, scheißnachten // brennpunkt internet #95",,,,,,,,,, +1373,https://www.youtube.com/watch?v=XqdI8icEbDM,0,0,{'TheQuartering'},1,youtube,video,original video,"it looks like the public support of amber heard has entirely disappeared! save huge on private internet access! https://privateinternetaccess.com/thequarteringbf + + + +support the channel directly! (super helpful) +https://www.youtube.com/channel/ucfwe_odi1ytbdjkzusi1nag/join + +follow me +twitch-https://www.twitch.tv/thequartering +parler-https://parler.com/profile/thequartering/ +twitter-https://twitter.com/thequartering +discord-https://discord.gg/pqvtwa2vvm +subreddit-http://reddit.com/r/thequartering +politics channel -https://www.youtube.com/channel/uc577sigte1cjpdosladwndw",15025.0,181621.0,,,,,,164621.0,475.0,0.0,1500.0,amber heard gets demolished.....,,,,,,,,,, +1374,https://www.youtube.com/watch?v=CPEStm23I_k,0,0,{'The Daily Mash 24h'},1,youtube,video,original video,"ready for action. is “super excited” to return to the aquaman franchise despite petitions to have her removed from the upcoming sequel.  the texas native, 34, starred alongside , , and more in the 2018 dc superhero film as mera, aquaman’s love interest. amid rumors that she won’t be returning for the second film, heard told entertainment weekly that nothing would keep her from reprising the role.  “paid rumors and paid campaigns on social media don’t dictate [casting decisions] because they have no basis in reality,” she said in an interview published on thursday, november 12. “only the fans actually made aquaman and aquaman 2 happen. i’m excited to get started next year.”  the justice league actress added that she never expected “the amount of fan appreciation that aquaman has acquired” and credited viewers’ “excitement for aquaman and mera” for inspiring the cast to continue the characters’ stories. “i’m so excited to film that,” she told ew.  though heard is ready to return to set, aquaman 2 has yet to be officially approved by warner brothers. with the coronavirus pandemic continuing to force sets to halt production, there’s currently no timeline in place for filming to begin.  the pineapple express star’s swift shutdown of rumors about her role in aquaman 2 comes shortly after announced that he was asked to resign from the third fantastic beasts and where to find them movie.  heard and depp, 57, made headlines earlier this year with their nasty libel suit against a british tabloid that previously claimed that the edward scissorhands actor was abusive toward heard throughout their relationship. us weekly confirmed on november 2 that depp lost the lengthy court battle.  “in light of recent events, i would like to make the following short statement. firstly, i’d like to thank everybody who has gifted me with their support and loyalty,” the pirates of the caribbean star wrote via instagram days after the court’s ruling. “i have been humbled and moved by your many messages of love and concern, particularly over the last few days. secondly, i wish to let you know that i have been asked to resign by warner bros. from my role as grindelwald in fantastic beasts and i have respected and agreed to that request.”  depp began dating heard following his june 2012 separation from ex , with whom he shares daughter , 21, and son , 18. in february 2015, depp and heard tied the knot in a civil ceremony in los angeles, but the zombieland actress filed for divorce just over one year later.  despite apparent evidence of abuse brought forward against him in the duo’s recent legal battle, depp has continued to maintain his innocence.  “the surreal judgement of the court in the u.k. will not change my fight to tell the truth and i confirm that i plan to appeal,” he wrote via instagram after confirming his exit from the harry potter prequel. “my resolve remains strong and i intend to prove that the allegations against me are false. my life and career wi",0.0,47.0,,,,,,44.0,2.0,0.0,1.0,"amber heard claps back at petitions to have her fired from ‘aquaman 2,’ confirms her return to the f",,,,,,,,,, +1375,https://www.youtube.com/watch?v=wjE3DhwGI6s,0,0,{'eHacker'},1,youtube,video,original video,amber heard ad from 2003 shows she was always superficial!,659.0,5843.0,,,,,,5016.0,3.0,0.0,165.0,amber heard ad from 2003 shows she was always superficial!,,,,,,,,,, +1376,https://www.youtube.com/watch?v=CBUI0ldWmzg,0,0,{'DazzlingKate22'},1,youtube,video,original video,"ugh, this woman getting work for talking about abuse she inflicts onto people. great. thanks hollywood. + +follow me on my other social media! +my twitter: https://twitter.com/katedazzling +my deviantart: https://www.deviantart.com/dazzlingkate +my facebook: https://www.facebook.com/dazzlingkate22",0.0,12.0,,,,,,12.0,0.0,0.0,0.0,amber turd speaks for victims of abuse while being paid 30k,,,,,,,,,, +1377,https://www.youtube.com/watch?v=d1dlUxa5Q5U,0,0,{'VIX Brasil'},1,youtube,video,original video,"eles se conheceram em 2009 e se casaram em 2015. porém, a vida de casados foi marcada por muita violência e acusações graves. quem você que tem razão? + +gostou? dê o seu joinha 👍, inscreva-se em http://bit.ly/youtube-vixbrasil e toque o sininho 🔔 para receber notificações de novos vídeos. você também pode nos seguir no facebook para mais: https://facebook.com/iconsbyvixpopbrasil/",277.0,23479.0,,,,,,23123.0,8.0,0.0,71.0,o fim polêmico do casamento de johnny depp e amber heard: o que aconteceu? i famosos i vix icons,,,,,,,,,, +1378,https://www.youtube.com/watch?v=2cLct-0KeDM,0,0,{'Psychic Bella Love'},1,youtube,video,original video,"book your own reading with me: + +psychicbellalove.com + +use coupon code bella20 for 20% off your phone reading + +50% of all readings are donated to organizations helping the black community and women in need. + +follow me on instagram! instagram.com/psychicbellalove + +donations to the channel: cashapp $psychicbellalove",159.0,3282.0,,,,,,3077.0,5.0,0.0,41.0,johnny depp and amber heard,,,,,,,,,, +1379,https://www.youtube.com/watch?v=Ap4Ubl6i7Uw,0,0,{'eHacker'},1,youtube,video,original video,amber heard made a youtube channel!?,660.0,11685.0,,,,,,10673.0,36.0,0.0,316.0,amber heard made a youtube channel!?,,,,,,,,,, +1380,https://www.youtube.com/watch?v=mA-gLmklY58,0,0,{'eHacker'},1,youtube,video,original video,"amber heard's access stand video bombs at 80,000+ dislikes! (and climbing fast) +check out channel membership if you are keen to support the channel! +new members get their names in the credits! + +my twitter: https://twitter.com/enterhacker (@enterhacker) +mail me articles or topics (with source best!): campsmithmedia@gmail.com + +https://christhead.bandcamp.com/releases christ head album here! + +patreon channels! check them out! + +adega's book: https://www.amazon.com/evolution-adega/dp/1645305953/ref=sr_1_1?crid=3ge2myd9lnpmo&keywords=evolution+by+adega&qid=1584844229&sprefix=evolution+by+%2caps%2c247&sr=8-1 + +titozworld channel : https://www.youtube.com/watch?v=2walmc4jcoa + +teresa martin : https://www.youtube.com/channel/ucotslvraws_pdhaqqkj1iyw + +wanna support the channel? check out some merch in the link below! + +https://teespring.com/stores/hacker-goods + +""podcast series"" means i will not appear on facecam and the edits will usually be light.",1059.0,6666.0,,,,,,5271.0,6.0,0.0,330.0,"amber heard's access stand video bombs at 80,000+ dislikes! (now 160,000+)",,,,,,,,,, +1381,https://www.youtube.com/watch?v=pueTfFnZYt4,0,0,{'Flixet'},1,youtube,video,original video,"amber heard: petition to remove from 'aquaman 2' nears 2 million mark. will it cross the 2million mark by the end of dec? + +subscribe for more : http://bit.ly/32rc7vi +____________________________________________ + +amber heard referred to online petitions as paid campaigns set to ruin her reputation. despite her claims, the number of people that want her fired from ""aquaman 2"" is only increasing by the second. an online petition calling on warner bros. to remove amber heard from the upcoming comic book tentpole “aquaman 2” has garnered over 1.6 million signatures and is fast approaching the 2 million mark. the petition gained traction over the holiday weekend after warner bros. confirmed mads mikkelsen would be replacing johnny depp as the villainous grindelwald in “fantastic beasts 3.” + + + +music in this video : + +track: odessa — liqwyd & scandinavianz +music provided by audio library plus +watch: https://youtu.be/jny-dp3lgcg",2382.0,72840.0,,,,,,69384.0,39.0,0.0,1035.0,amber heard: petition to remove from 'aquaman 2' nears 2 million mark | flixet,,,,,,,,,, +1382,https://www.youtube.com/watch?v=fkS6HiPzgR4,0,0,{'TheFilmJunkee'},1,youtube,video,original video,"afsp link: https://afsp.donordrive.com/index.cfm?fuseaction=donordrive.personalcampaign&participantid=2384952 + +subscribe: https://www.youtube.com/user/thefilmjunkee + +support me on patreon: https://www.patreon.com/user?u=2799939&ty=h + +website: http://filmjunkee.com/ + +instagram: https://www.instagram.com/junkeefilm/ + +twitter: https://twitter.com/daveepena + +facebook: https://www.facebook.com/the-film-droid-131317206900171/",111.0,1805.0,,,,,,1645.0,28.0,0.0,21.0,amber heard's mera has been recast for aquaman 2! - movie fake news broadcast network (not real),,,,,,,,,, +1383,https://www.youtube.com/watch?v=manLDA_zqVY,0,0,{'NewsMax News'},1,youtube,video,original video,"claims johnny depp wanted amber heard replaced in her aquaman role have resurfaced, following his highly-publicised libel trial.  earlier this year the pirates of the caribbean star lost his trial against the sun’s publisher ngn newspapers, over an article that labelled him a ‘wife-beater’. he has since applied to have the decision overturned.  during the trial it was put forward to the court that depp had demanded former wife heard – who he was married to from 2015 to 2017 – be stripped of her role as mera in warner bros’ aquaman sequel, with the details re-emerging this week in a lengthy profile on the star.  as was reported by press association during the trial in july, sasha wass qc, for ngn, told the court ‘from the moment ms heard petitioned for divorce and for a restraining order, the full brute force of mr depp and his pr machine was engaged’.  she said: ‘reports appeared in the press suggesting that she was a gold digger. mr depp personally set out to damage her career.’  wass said that after depp sent a text to his sister saying: ‘i want her replaced on that wb film’ – a reference to the warner brothers film aquaman – ‘a petition garnered the support of 400,000 people [quoted at the time of trial] to have ms heard removed from the film’.  according to the hollywood reporter, which published the profile this week, the messages were sent to depp’s sister, producer christi dembrowski, ‘who previously had a deal with the studio and was influential there’.  it comes amid a petition, titled ‘remove amber heard from aquaman 2′, which has reached 1.7million signatures.  however, the star, who appeared in the 2018 superhero film opposite jason momoa, confirmed last month she would be returning for the sequel which is set to film next year.  she recently said: ‘i’m super excited about the amount of fan love and the amount of fan appreciation that aquaman has acquired and that it has garnered so much excitement for aquaman and mera that it means we’ll be coming back. i’m so excited to film that.’  the petition, started by jeanne larson, alleged that amber is a ‘known and proven abuser’, and claims that she has ‘systematically crusaded to ruin depp in hollywood’.  both depp and heard alleged abuse by the other during the libel trial, and also both denied allegations against them.  a judge eventually ruled in favour of the sun, saying they were accurate in calling depp a ‘wife beater’ in an article headline.  in the wake of his trial loss, depp resigned from his role as gellert grindelwald in the fantastic beasts franchise, after being asked to by warner bros, and has since been replaced by mads mikkelsen however the profile claimed he was still paid $16million (£12m) for the one scene he’d shot before stepping down.  he continues to remain in advertisements for dior’s sauvage fragrance.",0.0,35.0,,,,,,28.0,4.0,0.0,3.0,johnny depp ‘wanted amber heard axed from aquaman’,,,,,,,,,, +1384,https://www.youtube.com/watch?v=a1l253OlO18,0,0,{'Viral Flash'},1,youtube,video,original video,"top 5 celebrities that defended amber heard +______________________________________________ +for more videos subscribe : https://bit.ly/2zopgqj +______________________________________________ +as amber heard‘s and johnny depp’s explosive divorce continues to escalate, friends, family, and celebrities are throwing their support behind each star. on may 23, 2016, heard was granted a short lived restraining order against her husband of 15 months, alleging in court documents that the 52-year-old actor physically abused her throughout their four-year relationship. + +celebrities and friends weigh in on the couple's split, and heard's allegations she was physically abused by depp. + +in today’s video are going to tell about 5 celebrities who defended amber heard. + +5) io tillett wright +artist, actor, and activist io wright maybe a friend of heard who purportedly came to her defense during heard’s alleged altercation with depp on saturday. consistent with heard’s court filings, depp demanded heard call wright to “prove his paranoid and irrational accusations about some delusional idea he was having.” heard claims johnny then “ripped the telephone from my hand and commenced screaming profanities and insults at io.” + +“i heard io yell at me to urge out of the house,” heard stated. “johnny then grabbed the telephone, aroused his arms sort of a baseball pitcher, and threw the telephone at me striking my cheek and eye with great force.” + +“i immediately covered my face and was crying due to the pain resulting from the phone hitting me. johnny charged at me, insisting on seeing my face. he taunted me, challenged whether or not the telephone hit me. he then forcibly pulled back my hair as i attempted to face up from the sofa. i then yelled out ‘call 911’ hoping it might be heard by io who was still on the phone. johnny continued screaming at me, pulling my hair, striking me, and violently grabbing my face,” heard alleged + +4) samantha spector +high-profile attorney samantha spector, who represented morena baccarin in her litigation with ex austin chick, is heard’s lawyer. + +“unfortunately, this is often not the primary incident of violence perpetrated by johnny against amber,” spector writes in court documents obtained by people. “there are two other incidents within the past six months. although amber is scared of johnny, she strongly insists that we do everything possible to stay this personal matter out of the media spotlight.” + +3) amanda de cadenet +while british chat show host amanda de cadenet hasn’t released a political statement, the 44-year-old retweeted several messages of support for heard on friday and saturday. + +one day after heard claimed she was abused by depp, de cadenet shared a photograph of herself with heard and model-turned-actress amber valletta during de cadenet’s may 23 birthday celebration. within the photo, which has since been deleted, heard is seen smiling but together with her hair placed over half her face. + +2) evan rachel wood +who? actress, known for true blood, mildred pierce and therefore the ides of march. +in a tweet that was later deleted, wood seemed to criticize the way some media outlets had written about heard's sexuality: “amber heard‘s sexuality is merely relevant therein bi women are at far greater risk of experiencing intimate partner violence. bisexuality however isn't a reason for violence. it doesn’t mean heard is somehow immoral or deserving of abuse.” + +1)andy richter +who? comedy star and screenwriter, known for his work on the talk show conan. on may 28, 2016, richter suggested that depp and his representatives might be attempting to fire up bad publicity for heard. + +on may 28, 2016, he tweeted that, one among the items you'll pay a publicist try to form your ex look bad within the press after you have been accused of abuse. + +what do you think about the allegations filed by heard? does johnny hit her? let us know your thoughts in the comments below and if you haven’t subscribed to my channel yet, please do so. see you in the next video. +______________________________________________ +about my channel : +welcome to the viral flash! in this channel we upload videos related to celebrity gossip, entertainment news, top 10 list videos, updates on royal family etc. as far as possible, we upload 4 videos each week. thanks for watching! +__________________________________________________ +for more videos subscribe : https://bit.ly/2zopgqj",13.0,997.0,,,,,,880.0,83.0,0.0,21.0,top 5 celebrities that defended amber heard,,,,,,,,,, +1385,https://www.youtube.com/watch?v=FCaqMNuvrLA,0,0,{'SOMOY TV'},1,youtube,video,original video,"#johnny_depp #amber_heard #aquaman_2 + +আরও বিস্তারিত জানতে ভিজিট করুন: https://www.somoynews.tv + +""somoy tv"" is the most reliable news source and leading 24/7 news based tv channel in bangladesh + +==================== +somoy tv has the sole rights of all contents and it does not give permission to any business entity or individual to use these contents except ‍somoy tv (somoy media limited). + +this channel is based on news and current affairs. the uploaded all contents are made by our own team. also sometimes we are using some third-party materials where we have the specific authorization and permission to use this on youtube. + + +stay connected with us: +==================== +""somoy tv (somoy media limited)"" is the leading 24/7 news based tv channel in bangladesh. + +website: http://www.somoynews.tv +google plus: https://plus.google.com/+somoytvnetupdate +youtube: http://www.youtube.com/somoytvnetupdate +facebook: http://www.facebook.com/somoynews.tv +twitter: http://www.twitter.com/somoytv",837.0,28887.0,,,,,,27973.0,23.0,0.0,54.0,অ্যাকুয়াম্যান-২ থেকে বাদ পড়লেন অ্যাম্বার | johnny depp | amber heard | somoy tv,,,,,,,,,, +1386,https://www.youtube.com/watch?v=w8G28tV6SlU,0,0,{'Promi News'},1,youtube,video,original video,"die aufregung um amber heards (34) aquaman-rolle reißt nicht ab! aufgrund der aussagen der 34-jährigen hat ihr ex johnny depp (57) nicht nur seinen ""frauenschläger""-verleumdungsprozess gegen eine britische zeitung verloren – sondern auch seine hauptrolle als gellert grindelwald im dritten teil von phantastische tierwesen. deshalb starteten seine fans vor ein paar wochen eine petition dafür, dass auch amber ihre nächste große rolle in ""aquaman 2"" abgeben soll. inzwischen hat die forderung rund 1,7 millionen anhänger. johnny selbst ging einen schritt weiter: er wollte seine ex-frau bereits aus dem ersten ""aquaman""-teil streichen lassen! +das berichtet nun das onlinemagazin the hollywood reporter, dem ein brief von johnny an seine schwester christi dembrowski vorliegen soll. letztere ist filmproduzentin und hatte zu dem zeitpunkt für warner bros. gearbeitet – also für das studio, das ""aquaman"" produziert hat. angeblich soll der 57-jährige darin gefordert haben: ""ich will, dass sie in dem film von warner bros. ersetzt wird."" wann genau das schreiben entstanden und abgeschickt worden ist, ist nicht bekannt. klar ist jedoch: erfolg hatte der schauspieler damit nicht. +die comicverfilmung flimmerte weltweit im jahr 2018 über die kinoleinwände – und mauserte sich schnell zu einem riesenerfolg. so verzeichnete ""aquaman"" bisher allein in deutschland rund 1,9 millionen besucher. amber spielt darin an der seite von game of thrones-hottie jason momoa (41) die rolle der meereskönigin mera, die wohl auch in teil zwei eine große rolle spielen wird. +könntet ihr euch die ""aquaman""-reihe ohne amber vorstellen?",0.0,8.0,,,,,,8.0,0.0,0.0,0.0,"johnny depp forderte ambers ""aquaman""-aus bei warner bros.",,,,,,,,,, +1387,https://www.youtube.com/watch?v=pGPXrzOnMzY,0,0,{'Steven And Jason'},1,youtube,video,original video,"in this episode we discuss the hollywood reporter's article, ""he's radioactive: inside johnny depp's self-made implosion"", written by tatiana siegel. we would love to hear your thoughts in the comments below. + +if you enjoyed please comment, like, share & subscribe. + +the hollywood reporter article: https://bit.ly/3gh9vb2 + +if you or someone you know is a victim of domestic abuse and needs help getting out, please contact https://www.thehotline.org/ + +if you or someone you know is experience troubles with substance abuse, please contact https://www.samhsa.gov/find-help/national-helpline + +add us on instagram: +https://www.instagram.com/stevenrcrowley +https://www.instagram.com/stevenjasonpodcast + +add us on tiktok: +https://www.tiktok.com/@stevencrowley + +listen: +spotify: https://spoti.fi/2eawjph + +the equipment used: https://www.amazon.com/shop/stevencrowley",860.0,9959.0,,,,,,8743.0,17.0,0.0,339.0,johnny depp did what to amber heard?!,,,,,,,,,, +1388,https://www.youtube.com/watch?v=EBOcw6Hothw,0,0,{'Layan Bubbly'},1,youtube,video,original video,"audio of johnny depp and amber heard reviewed by relationship coach! johnny depp tries to convince amber heard to not go to court for divorce and to handle their situation privately, but, she is persistent on the evidence she has. + +layan bubbly, relationship coach, reviews the audio between johnny depp and amber heard to share what seems obvious to most of us, and opposing to the court's decision to rule against him. + +learn to love yourself, avoid toxic relationships and attract your soulmate! discover more on how to get out of abusive relationships here: + +http://www.layanbubbly.com/love + +now, a bit about who i am! + +first and foremost, fellow bubbly soul! happy to be alive and always humbled to share a few fun moments with you! i truly believe in the power of true love and therefore, i made it my life mission to help you learn what has transformed my life along with the lives of the thousands of men and women i have coached since 2013. + +humbled by your dedication and loyalty, i always thrive to give you the best content i can, alongside with my mentorship programs on how to become irresistibly charismatic without having to change yourself to fit in! + +discover more on my website: http://www.layanbubbly.com",346.0,7678.0,,,,,,7203.0,8.0,0.0,121.0,audio johnny depp & amber heard relationship coach reacts,,,,,,,,,, +1389,https://www.youtube.com/watch?v=U00nRDrD3YU,0,0,{'Bacha Limited'},1,youtube,video,original video,don't forget to subscribe,11778.0,456437.0,,,,,,444213.0,398.0,0.0,48.0,aquaman and mera under water scene jason momoa and amber heard whatsapp statues,,,,,,,,,, +1390,https://www.youtube.com/watch?v=IBDLqO-7h3A,0,0,{'Abbey Sharp'},1,youtube,video,original video,"hi everyone, welcome to abbey's kitchen! in today’s highly requested video, we will be reviewing amberlynn reid. + +disclaimer: we shot and edited this review back in september, so it may or may not be an an up to date representation of where amberlynn is currently at in her weight loss journey. + +thanks again to alessandra magisano (eating disorder dietitian) for joining me! +see her contact information below if you're interested in getting in touch with her for some one-on-one support. + +alessandra magisano rd mhsc +@eating.disorder.nutritionist +https://www.instagram.com/eating.diso... +alessandra.magisano@gmail.com + +a few disclaimers: + +1) the information in this video is for education and entertainment purposes only, so you should always speak to a health care provider about your unique health needs. + +2) this video is not intended to diagnose or pathologize amberlynn. the intention of this video is to simply discuss the themes on her channel in an educational and compassionate format. + +3) please be kind in the comments, here and on amberlynn's channel. + +4) trigger warning: some graphics and discussions may be disturbing to some viewers so feel free to skip this video. + +5) don’t forget to subscribe to this channel and ring the little bell so you never miss out! + +research links + +https://pubmed.ncbi.nlm.nih.gov/23733771/ +https://pubmed.ncbi.nlm.nih.gov/26084689/ +https://www.nejm.org/doi/10.1056/nejmsr1606602 +https://www.unboundmedicine.com/medline/citation/26683956/full_citation +https://bmccancer.biomedcentral.com/articles/10.1186/s12885-017-3754-y +https://nutritionguide.pcrm.org/nutritionguide/view/nutrition_guide_for_clinicians/1342025/all/endometrial_cancer +https://pubmed.ncbi.nlm.nih.gov/18356847/ +https://pubmed.ncbi.nlm.nih.gov/18086724/ +https://pubmed.ncbi.nlm.nih.gov/11011912/ +https://pubmed.ncbi.nlm.nih.gov/19875483/ +https://pubmed.ncbi.nlm.nih.gov/16822530/ +https://pubmed.ncbi.nlm.nih.gov/17336795/ +https://pubmed.ncbi.nlm.nih.gov/24854804/ +https://pubmed.ncbi.nlm.nih.gov/22021603/ +https://pubmed.ncbi.nlm.nih.gov/17498514/ +https://pubmed.ncbi.nlm.nih.gov/11684524/ +https://www.cmaj.ca/content/192/31/e875 + +follow me on instagram! @abbeyskitchen https://www.instagram.com/abbeyskitch... + +check out my new merch line in support of sick kids hospital https://abbeyskitchenshop.com/ + +some important links: +my book, the mindful glow cookbook affiliate link: https://amzn.to/2nev0lf +the best baby feeding & eating gear (amazon #affiliate) https://amzn.to/36h1r4a +my favourite supplements (amazon #affiliate) https://amzn.to/39pgv3j +my favourite kitchen appliances and tools (amazon #affiliate) https://amzn.to/2ubqnxv +my favourite healthy snacks (amazon #affiliate) https://amzn.to/2ucc6dd +my favourite healthy breakfast foods (amazon #affiliate) https://amzn.to/2sk8b6s +my favourite intuitive eating books (amazon #affiliate) https://www.amazon.ca/shop/abbeysharp... +my favourite healthy meal ideas and snacks (amazon #affiliate) https://amzn.to/39oa3mc + +check out my blog for healthy recipes, parenting tips and tricks and busting nutrition myths and diets: www.abbeyskitchen.com + +if you liked this video, please leave me a comment below with your thoughts and let me know who you want me to review next! + +xoxo abbey + +contribution by: giselle segovia rd mhsc",23095.0,935994.0,,,,,,907847.0,1277.0,0.0,3775.0,dietitians thoughts on amberlynn reid’s diet & mukbangs (this might be hard to watch...),,,,,,,,,, +1391,https://www.youtube.com/watch?v=U9nd_qrld5k,0,0,{'Fire Amber Heard'},1,youtube,video,original video,guys the discription is gonna be the same everyday so don't waste your time reading this s**t.,4.0,39.0,,,,,,32.0,0.0,0.0,3.0,solving a rubik's cube everyday until amber heard gets fired - day 1.,,,,,,,,,, +1392,https://www.youtube.com/watch?v=Qw9L6zYkuMU,0,0,{'Viral Vision'},1,youtube,video,original video,"10 celebrities that tried to warn us about amber heard +the case going on right now between johnny depp and amber heard is one that is deep, complicated, and yes, tragic. this was originally a love story until it devolved into a press fiasco of sorts where both sides are saying the other side is abusive, have done terrible things to the other, and so on and so forth. and now, amber heard has emerged as the truly evil person in this relationship as she was really the one abusing johnny depp and beyond. but believe it or not, other celebrities have tried to warn us about her. allow us to show you who. be sure to like the video and subscribe to the channel! + +click here to enter the giveaway! https://www.youtube.com/channel/ucbit0luibqj6cqscvwhjekq?sub_confirmation=1 + +and there you have it, everyone! a look at the various celebrities who have tried to warn us that amber heard was evil and abusive and that johnny depp was innocent in all of this. what do you make of the relationship and the fallout between these two celebrities? do you think that hollywood needs to take a ban on both of them as things continue to unravel and reveal the true nature of things? whose side are you on in this battle? let us know in the comments below, be sure to subscribe and we’ll see you next time on the channel! + +you are not required to comment to win the giveaway distributed in the video. it is only a recommendation. you must have a twitter under the same username of youtube in order to qualify to get in contact with you. for more information on giveaways refer to youtube’s contest policies: +https://support.google.com/youtube/answer/1620498?hl=e",7784.0,130118.0,,,,,,120980.0,494.0,0.0,860.0,10 celebrities that tried to warn us about amber heard,,,,,,,,,, +1393,https://www.youtube.com/watch?v=52K_6mnTYF4,0,0,{'Top 10 Beyond The Screen'},1,youtube,video,original video,"celebrities who defended amber heard +subscribe to landon production: https://www.youtube.com/user/landonproduction +watch our recent videos here: https://bit.ly/3mmfo8g + +amber heard is once again making headline as 1.3 million people sign a petition to remove her from aquaman 2 following johnny depp losing the libel case and being removed from fantastic beasts 2. with this news though, many celebrities have come forward to defend amber. these are the celebrities who defended amber heard right here on top 10 beyond the screen! + +#celebrities #top10 #amberheard #amberheardjohnnydepp #johnnydepp #johnnydeppamberheard #amberheardaudio #amberheardaquaman #justiceforjohnnydepp #top10beyondthescreen + +hosted by: +mackenzie smith: http://instagram.com/mackenziesmitth + +edited by: +jennire narvaez: https://www.instagram.com/jennirenarvaezphotography/",1636.0,103452.0,,,,,,97696.0,2980.0,0.0,1140.0,celebrities who defended amber heard,,,,,,,,,, +1394,https://www.youtube.com/watch?v=adNApcM7iY4,0,0,{'InformOverload'},1,youtube,video,original video,"teen sentenced to four months in prison for breaking quarantine +subscribe here ☛ http://bit.ly/2xb5cqa +recent uploads: https://bit.ly/3qf38d7 + +there have been lockdowns and restrictions put into place all over the world, and though a lot of us are tired of it, its still important to follow the rules to keep yourself and your loved ones as safe as possible. so when you're travelling, its still important to self isolate and to monitor your symptoms and interactions with others, and above all, do not do what this girl did. skylar mack, a teenager from georgia decided to travel to the cayman islands to visit her boyfriend and watch him compete in a jet ski competition. + +------------------------------------ +welcome to inform overload - we make the news more entertaining daily +get the latest tea on: celebrities, influencers, youtubers, tiktok stars, backlash, controversy, amber heard vs. johnny depp & so much more! + +#georgiateen #prison #quarantine #io #informoverload #informationoverload #celebritynews #entertainmentnews #youtubenews #top10 + +more io vids 👉https://bit.ly/3qf38d7 + +------------------------------------ +in this video: +brie roome: https://www.instagram.com/_brieroome + +------------------------------------ +producer & filmed by: +chris stiuso + +------------------------------------ +video edited by: +dylan lamovsek: https://twitter.com/uptownduck00 + +📱instagram: https://www.instagram.com/informoverload +📱twitter: https://twitter.com/informoverload +✉️email | contact: informoverload@gmail.com",1598.0,27747.0,,,,,,25622.0,48.0,0.0,479.0,teen sentenced to four months in prison for breaking quarantine,,,,,,,,,, +1395,https://www.youtube.com/watch?v=kk57SiX4LYg,0,0,{'Fire Amber Heard'},1,youtube,video,original video,why the hell are you even reading this? it's the same s**t.,0.0,5.0,,,,,,5.0,0.0,0.0,0.0,solving a rubik's cube everyday until amber heard gets fired - day 3.,,,,,,,,,, +1396,https://www.youtube.com/watch?v=9iTKIuLKJBY,0,0,{'Rotation411 Astrology'},1,youtube,video,original video,"here we explore the compatibility between johnny depp and amber heard illustrate how to read synastry relationships in astrology. part 2/2 + +www.rotation411.com/psychicapplication +www.psychicsgold.com + +happy holidays to all who vibrated with the frequency to find the reading! +love, light and many blessings to you are yours! + +***follow this link to order a q/a personal reading from me (or a live session when available): +https://www.psychicsgold.com/store/madeline-readings/products + +*****to support the channel so that i can continue to deliver these monthly tarot videos, weekly celebrity synastry livestreams and get to your big 144 rising/sun/moon combination faster, please send gratuities to: https://www.paypal.me/rotation411 or here https://www.psychicsgold.com/store/product/tip-jar + +***find me on instagram for random astrology posts @rotation411 +and check-out the @psychicsgold instagram to see our daily moon posts and showcased psychic advisors. + +***find me on facebook for my 3am thoughts, astrology tangents, and astrology videos i like to post with my feedback and real-life examples from my favorite advisors on youtube! @rotation411 + +also be sure to check out the @psychicsgold facebook if you prefer facebook over instagram for our daily moon readings, psychic showcases and much more to come! + +*****the decks i used in this video and some of my favorites! +the rider tarot deck: https://amzn.to/3gqjwcl +original tarot cards deck: https://amzn.to/3grwhbc +golden tarot deck: https://amzn.to/33rcayc +monochromatic colors rider-waite: https://amzn.to/3odybgu + +lover's oracle: https://amzn.to/33xtl7h +moonology oracle: https://amzn.to/34cftjv +the romance angels gold pleated oracle: https://amzn.to/3n0eq43 +the lover's path: https://amzn.to/3qn5pmf +true love reading cards: https://amzn.to/33wqtgr +whispers of love oracle: https://amzn.to/37mkxb5 +angel answers oracle: https://amzn.to/3qgwyfa +heart & soul oracle cards: https://amzn.to/33w27wd +egyptian oracle cards: https://amzn.to/3gqxbjq +messages from the mermaids: https://amzn.to/3qfocca +the psychic tarot for the heart oracle: https://amzn.to/3n3caoj + +*adult decks: +tarot of sexual magic: https://amzn.to/33uonbw +decameron tarot: https://amzn.to/3705dbo +erotic tarot of manara: https://amzn.to/3m2wrhk +casanova tarot: https://amzn.to/33ufj5h +romantic tarot: https://amzn.to/3oeqltp + +***law of attraction decks: +money and the law of attraction: https://amzn.to/3gqknym +law of attraction tarot deck: https://amzn.to/370jo06 +getting into the vortex: https://amzn.to/2vvu9um +super attractor deck: https://amzn.to/3ltixcs + +***book recommendations: +the three only things: https://amzn.to/3n0vosh +the artist's way: https://amzn.to/2vrdfrm +the artist's way starter kit: https://amzn.to/2vyr0to +the law of attraction: https://amzn.to/3qzfxnj +money and the law of attraction: https://amzn.to/2k4vf94 +ask and it is given https://amzn.to/3m3dndy +the vortex: https://amzn.to/37kpvvf +the astonishing power of emotions: https://amzn.to/3obvoq0 + +*astrology books: +sextrology: https://amzn.to/3m1gmgd +linda goodman's love signs: https://amzn.to/36weoty +born on a rotten day: https://amzn.to/3n0xrls +love on a rotten day: https://amzn.to/3oayuul +friends on a rotten day: https://amzn.to/2iyikke + +*astroanalysis: +aries: https://amzn.to/34ctcxz +taurus: https://amzn.to/3gqgvdy +gemini: https://amzn.to/2vwua5o +cancer: https://amzn.to/3n0aqp4 +leo: https://amzn.to/36ya0pp +virgo: https://amzn.to/2ithqfu +libra: https://amzn.to/36w09hm +scorpio: https://amzn.to/36yabtv +sagittarius: https://amzn.to/36xuw2m +capricorn: https://amzn.to/36w7kgg +aquarius: https://amzn.to/3obilyg +pisces: https://amzn.to/3lys2da + +*****life changing meditations! https://amzn.to/2itqctw + +***recommended stone for you this month! +sapphire necklace for divine love +sapphire, diamond, and white gold necklace: https://amzn.to/3gsjbat +beautiful sapphire and diamond bracelet: https://amzn.to/3mzxoic +thrifty sapphire necklace: https://amzn.to/2vvxha0 +sapphire earrings: https://amzn.to/33yp4dy + +*candles and curious recommendations! +road opener candle: https://amzn.to/36vmgjb +come to me candle: https://amzn.to/3m12dss +come to me candle kit: https://amzn.to/3oda5ts +sage and palo santo: https://amzn.to/2jla9s0 +bayberry incense: https://amzn.to/2k9lzdl",3.0,107.0,,,,,,104.0,0.0,0.0,0.0,rotation411 celebrity synastry: johnny depp & amber heard part 2/2,,,,,,,,,, +1397,https://www.youtube.com/watch?v=PUozCJ0WlFY,0,0,{'Lost Beyond Pluto'},1,youtube,video,original video,"related video: + +analysing the ""judgment"" https://youtu.be/khshyyuul1o + + +social media + +patreon: https://www.patreon.com/lostbeyondpluto + +instagram: https://www.instagram.com/lostbeyondpluto + +twitter: https://twitter.com/lostbeyondpluto + +tumblr: https://lostbeyondpluto.tumblr.com/ + +soundcloud: https://soundcloud.com/lost-beyond-pluto + +music videos: + +blue eyes: https://www.youtube.com/watch?v=wm2-kyp18ww + +once a liar: https://youtu.be/bgwc09ptuhm + + + +stars intro theme by eva grace",1568.0,17890.0,,,,,,16031.0,11.0,0.0,280.0,johnny depp v amber heard - the presumption of innocence,,,,,,,,,, +1398,https://www.youtube.com/watch?v=JiPDUH1M3gE,0,0,"{""Entertainment Video's""}",1,youtube,video,original video,"nicola six hot black dress, +#nicolasix, #hotvideo, #entertainment, #amberheard, #londonfields,",5.0,609.0,,,,,,595.0,9.0,0.0,0.0,amber heard hot black dress scene.,,,,,,,,,, +1399,https://www.youtube.com/watch?v=R19Ps9JMX0o,0,0,{'OSSA'},1,youtube,video,original video,"the stand cast 2020 is finally revealed in the latest trailer! now we have plenty of the stand cast interview and can see how our favorite characters from stephen king novel will look like in the cbs all access! + +here we're not going to compare the two shows: the stand cast 1994 vs 2020, though if you'd like us we can do it in our next video. but here we speak about stephen king the stand actors take our first look at the trailer and interviews. + +who is the cast of the stand 2020? welcome alexander skarsgård (some times he is spelled as alexander skarsgard, yes he plays randall flagg in the cbs series), whoopi goldberg, amber heard, james marsden, greg kinnear, jovan adepo, brad william henke, odessa young, henry zaga and some more terrific actors that we talk about in our video! check it out! + +⭐ossa is the best source for entertainment news about the celebrities we love. +⭐our youtube channel dishes up celebrity news and gossip on the stars you admire the most. from popular tv hosts to hollywood golden age actresses, from country music artists and the royal family members to western movies acting legends. + +subscribe to our channel to watch more amazing videos about celebs! + +ossa on instagram https://www.instagram.com/ossa.tv +ossa on tiktok https://vm.tiktok.com/end6ra/ +ossa on twitter: https://twitter.com/ossa_celebs +ossa on facebook: https://www.facebook.com/ossa-937878333055503/",162.0,7586.0,,,,,,7368.0,13.0,0.0,43.0,what does the cast of the stand really think of their characters? |⭐ ossa,,,,,,,,,, +1400,https://www.youtube.com/watch?v=L-7IWnF7UU8,0,0,{'Viral Flash'},1,youtube,video,original video,"top 5 celebrities who tried to warn us about amber heard +______________________________________________ +for more videos subscribe : https://bit.ly/2zopgqj +______________________________________________ +it has been weeks since johnny depp has lost his libel trial against 'the sun' which went on to accuse depp on the grounds of being a 'wife-beater'. this not only tormented his character but also got him cancelled from a lot of upcoming projects. needless to say, we feel really sorry for depp. however, it is not only johnny depp who tried to warn us about amber heard. + +in this video, we are going to be taking a look at 5 celebrities who tried to warn us about amber heard. + +5. wynona ryder: +well, we knew she'd be on this list. wynona very famously dated johnny depp from 1989-1993. while the couple had a sweet yet messy relationship, they didn't really last long together due to the incompatibility between them. however, their friendship has stood the test of time and they have always went on to support each other. so when the situation with amber heard actually popped up, wynona didn't hesitate to defend johnny depp by saying that her personal experience with johnny depp has been really wonderful. he has always been kind and helpful and hasn't showed any signs of violent behavior. + +4. sia: +sia's statements on support johnny depp have been the most recent we have seen any celebrity voice up for depp's defense. however, the singer surprised everyone when she voiced her support for johnny depp unexpectedly on twitter. she started off by posting a video which included the leaked audio of amber heard talking about how she had lost it on johnny in the past and then she went on to make this confession which made things even more clearer. sia tweeted that although she doesn't like depp for sporting a lot of unnecessary jewelry, it is very much clear that depp has been a victim here and needs to be supported during tough times. but sia wasn't even done when she called out heard's ex-boyfriend elon musk accusing him of supporting amber heard and that all of them shouldn't stay silent. + +3. alysson paradis: +paradis family has clearly been a fan of johnny depp for a long time and it is quite evident that alysson paradis did not shy away from voicing her support in favor of johnny depp. she went on to show her support in the form of an instagram post which showcased the two together with the caption stating depp would always have a family in the name of paradis' and that depp's one of the funniest and comical guys one can ever meet. so if depp's in-laws are actually going this far to support him, something about amber heard is definitely not right. + +2. lily rose depp: +lily rose depp did not stray even an inch when it came to protecting her father against the claims that had been made against him. she first posted a screenshot of an article from people which showed that lapd had went to the couple's place however the police did not really find any concrete evidence of any crime going on. then, she also went on to post a picture of her and her dad when she was just a baby captioning the photo by voicing her support for her father and that he's the best father and that she's very lucky to have him. + +1. laura divenere: +while being a former friend of amber heard, laura actually did the right thing by voicing her statement against amber heard in the court of law stating that she didn't see heard's bruises after an alleged fight between heard and depp on may 21st, 2016. even though amber heard tried to release a recording making the accusation false, depp's lawyers included an e-mail after the recording stating that divenere had never seen bruises on heard's body. + + +thank you for watching. if you liked this video, do not forget to like/subscribe. till then, take care and we'll see you in the next one. +______________________________________________ +about my channel : +welcome to the viral flash! in this channel we upload videos related to celebrity gossip, entertainment news, top 10 list videos, updates on royal family etc. as far as possible, we upload 4 videos each week. thanks for watching! +__________________________________________________ +for more videos subscribe : https://bit.ly/2zopgqj",261.0,4298.0,,,,,,4012.0,2.0,0.0,23.0,top 5 celebrities who tried to warn us about amber heard,,,,,,,,,, +1401,https://www.youtube.com/watch?v=4Sy-9UnO_hE,0,0,{'Steven And Jason'},1,youtube,video,original video,"in this episode, we pick up where we left off... + +we both did our homework on the amber heard vs. johnny depp case and offer our opinions, thoughts, and more stories about what it was like working with amber. we have become fascinated with this story and want to continue discussing it in great detail as this seems to be ever evolving. + +if you enjoyed please comment, like, share & subscribe. + +if you or someone you know is a victim of domestic abuse and needs help getting out, please contact https://www.thehotline.org/ + +if you or someone you know is experience troubles with substance abuse, please contact https://www.samhsa.gov/find-help/national-helpline + +add us on instagram: +https://www.instagram.com/stevenrcrowley +https://www.instagram.com/stevenjasonpodcast + +add us on tiktok: +https://www.tiktok.com/@stevencrowley + +listen: +spotify: https://spoti.fi/2eawjph + +the equipment used: https://www.amazon.com/shop/stevencrowley",1430.0,19336.0,,,,,,17269.0,29.0,0.0,608.0,amber heard is no angel...,,,,,,,,,, +1402,https://www.youtube.com/watch?v=ELxVhdbHr7I,0,0,{'Stevie J Raw'},1,youtube,video,original video,"a great article that supports johnny depp and slams amber heard with facts! +with thr putting out a huge hit piece on johnny depp recently it's fantastic to see a well written, thoughtful and evidence based article. + +article link - https://medium.com/@jm125/it-is-not-disbelief-that-is-dangerous-to-our-society-it-is-belief-george-bernard-shaw-884a60214999 + +this is outrageous and johnny deserves justice!!! + +johnny depp tribute by inspired with johnny depp - https://www.youtube.com/watch?v=jqng_fs5cyg&t=1391s + +charity link gosh - https://www.justgiving.com/fundraising/stevie-j-raw1 + +petition to get johnny back - https://www.change.org/p/warner-brothers-bring-johnny-depp-back-to-fantastic-beasts?recruiter=24448735&recruited_by_id=229d8750-1a30-0130-d3ed-3c764e04873b&utm_source=share_petition&utm_medium=copylink&utm_campaign=petition_dashboard + +t-shirt link - https://teespring.com/buy-not-a-bot?utm_swu=3426&utm_campaign=edit_live_listing_minor&utm_source=sendwithus_seller&utm_medium=email_transactional&pid=525&cid=101933 + +let's talk. +join us and enjoy! + +sign the petition here!! - https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2 + +johnny depp is innocent and amber heard must be held accountable for what she has done. + +checkout the stream and let us know what you think. + +website - steviejraw.com + +thanks for watching!! + +website - steviejraw.com + +hit that subscribe button for more news & entertainment. + +patreon support- https://www.patreon.com/user?u=21166375 + +have an awesome day! + +let’s connect: + +instagram – stevie_j_raw + +twitter - https://twitter.com/steviejraw + +facebook - https://www.facebook.com/steviej.raw.3 + +email - steviejraw@outlook.com + +the lapd, who were called to the home on may 21, 2016 in relation to the ‘phone throwing’ incident, stated they saw nothing out of place and nothing wrong with heard other than she appeared to have been crying and her face was flushed. they also had no idea the call involved johnny depp as the call was placed under the name heard. the 911 call log shows him as being named johnny heard. when they arrived, heard and her friends refused to give any more details on him, his whereabouts, or his identity. they found nothing wrong and heard alleged a verbal disagreement so they left their business card with her and departed. not widely reported is that some hours later another set of police arrived and also saw nothing. two separate calls, four different officers, and nothing amiss. + +thanks for watching!! +#justiceforjohnnydepp #johnnydepp #steviejraw",1315.0,14182.0,,,,,,12402.0,6.0,0.0,459.0,johnny depp article slams amber heard with facts!,,,,,,,,,, +1403,https://www.youtube.com/watch?v=4IHLUT20zDU,0,0,{'Sky News'},1,youtube,video,original video,"women's groups have criticised dior for keeping johnny depp as the face of its sauvage aftershave. + +the fragrance maker's latest campaign features the shamed hollywood actor with the slogan 'sauvage.... wild at heart'. + +a high court judge in november ruled that depp assaulted his ex-wife amber heard. + +subscribe to our youtube channel for more videos: http://www.youtube.com/skynews + +follow us on twitter: https://twitter.com/skynews + +like us on facebook: https://www.facebook.com/skynews + +follow us on instagram: https://www.instagram.com/skynews + +for more content go to http://news.sky.com and download our apps: +apple: https://itunes.apple.com/gb/app/sky-news/id316391924?mt=8 + +android https://play.google.com/store/apps/details?id=com.bskyb.skynews.android&hl=en_gb + +sky news videos are now available in spanish here/los video de sky news están disponibles en español aquí https://www.youtube.com/channel/uczg5bnqho8onlrpdw9cyjog",662.0,153404.0,,,,,,136988.0,13596.0,0.0,2158.0,johnny depp dior advert 'tasteless and shameful',,,,,,,,,, +1404,https://www.youtube.com/watch?v=Rrr-HzlGkY0,0,0,{'DarthN3ws'},1,youtube,video,original video,"📬📦 feel free to sends me stuffs: + po box 301. dexter, mi. 48130 + +*my channel is not monetized* + +please consider supporting my work- + +💻 https://darthnews.com/ (merch) +🙏 https://www.patreon.com/darthnews (helps feed my dog & keeps the lights on) +💸 cashapp: $darthnews +🐦 twatter: @darth_news +🎶 dikdok: darth_news +📸 insta: @darthnews / second acct: @darth_news + + +#everybodylovesjohnny #thismeanswar #darthnews #justiceforjohnny #cancelculture #johnnydepp #jacksparrow #update #dior #insufferable #j4j #barnwitch #media #fakenews #msm #metoo #amberheard #mera #defamation #sociopath #domesticviolence #abuse #aquaman2 #warnerbrothers",512.0,3307.0,,,,,,2529.0,3.0,0.0,263.0,"this means war | hollywood, the media & amber heard can't stop johnny depp 💥",,,,,,,,,, +1405,https://www.youtube.com/watch?v=rqh_BAxIkdY,0,0,{'Marcos Studios'},1,youtube,video,original video,"resumen de las noticias mas relevantes de las semanas, amber heard en marvel!!!? warner estrenara sus pelis en hbo max, es el fin del cine? thor love thunder revelan detalles de la pelicula, detalles del comienzo de spiderman 3, black panther 2 comenzara a rodar. y muchas noticias mas + +🔥isuscribete👉 https://bit.ly/2gtfsgw + +❤si te gusta deja tu👍👍👍👍👍 + +redes sociales: +🔥🔥instagram: https://www.instagram.com/marcostudios_props/ + +instagram profesional: https://www.instagram.com/marcos_studios/ + +contacto: marcosstudiosnegocios@gmail.com + +💪si quieres, puedes apoyar al canal donando de forma voluntaria👉 http://mpago.la/2d3k8yi + +🎵musica (utilizada) 🎵de: https://www.bensound.com/ + +gracias por todo, los amo 3 millones!!! asique chau....",44.0,383.0,,,,,,291.0,3.0,0.0,45.0,😒warner y su polemica decicion/amber heard en marvel😶?? | todo noticias geeks🔥,,,,,,,,,, +1406,https://www.youtube.com/watch?v=0Ce4sEoryEc,0,0,{'Kurono'},1,youtube,video,original video,"stream from 12/19/2020 +donate to the channel: https://www.paypal.com/paypalme/777kurono777 +#thatumbrellaguy #johnnydepp #amberheard",142.0,1507.0,,,,,,1343.0,2.0,0.0,20.0,thatumbrellaguy: amber heard's the stand sucks! chill stream!,,,,,,,,,, +1407,https://www.youtube.com/watch?v=HvYSi0VDyds,0,0,{'Fox News Today'},1,youtube,video,original video,"amber heard: veröffentlichung von 'the stand' ist ironie amber heard denkt, dass die veröffentlichung von 'the stand' ""zur rechten zeit"" kommt.  die 34-jährige schauspielerin spielt neben james marsden und whoopi goldberg in der neuen tv-miniserie, die auf stephen kings gleichnamigem dystopischen roman basiert.  und amber findet es ""ironisch"", dass die serie inmitten der coronavirus-pandemie ausgestrahlt wird – darin geht es nämlich um einem virus. ""wir haben ende märz mit den dreharbeiten aufgehört, glücklicherweise war es am ende der dreharbeiten, aber trotzdem musste ich später zu nachdrehs, als es wieder losging”. sie fügt im gespräch mit sky news hinzu: “es ist ironisch, dass wir die dreharbeiten zu unserer show über eine globale pandemie und einen machtkampf von gut und böse und eine regierung und gesellschaft, die nach einer pandemie zusammenbricht, stoppen mussten ... genau vor einer pandemie. das ist ein wirklich interessantes timing."" die horror-serie 'the stand' spielt in einer dystopischen welt, in der der großteil der menschheit von einem tödlichen virus dahingerafft wurde. nur wenige menschen überleben die pandemie, sind immun gegen den erreger – und werden schon bald von visionen heimgesucht.bang showbiz",0.0,3.0,,,,,,3.0,0.0,0.0,0.0,amber heard: veröffentlichung von 'the stand' ist ironie,,,,,,,,,, +1408,https://www.youtube.com/watch?v=EyOJN2oYIAc,0,0,{'Top 10 Beyond The Screen'},1,youtube,video,original video,"amber heard back in the news again +subscribe to beyond the screen: https://bit.ly/2txttsd +watch our recent videos here: https://www.youtube.com/watch?v=s8am3nehja0&list=uu-wo9ectm-_osjdbfu_3jng + +amber heard has been in the news so much this year. a lot of the controversy she’s been involved in has to do with her involvement with johnny depp’s libel case against the sun publication. this year she's gotten a lot of media attention and we saw a lot of dirt come out that painted a very different picture than what we previously interpreted of their marriage, but this isn't the only picture that faced a lot of backlashes. + +#celebrities #amberheard #amberheardjohnnydepp #justiceforjohnnydepp #top10 #top10celebrities #top10celebrity #hollywood #celebritynews #celebritygossip #hollywoodnews #hollywoodgossip + +welcome to top 10 beyond the screen! we cover all the latest trending celebrity news and gossip from hollywood and across the world. we talk about amber heard, johnny depp, ellen degeneres, the kardashians and more, as well as discuss the latest blockbuster and netflix movie release. + +hosted by: +brie roome: https://www.instagram.com/_brieroome + +edited by: +jennire narvaez: https://www.instagram.com/jennirenarvaezphotography/",,,,,,,,49711.0,,0.0,342.0,amber heard back in the news again,,,,,,,,,, +1409,https://www.youtube.com/watch?v=DqhBgh0HLgk,0,0,{'GoonBag Studios'},1,youtube,video,original video,this hopefully shall be the last one ladies and gents ;),6.0,87.0,,,,,,77.0,0.0,0.0,4.0,barn of the dead 3 : johnny depp vs amber heard official trailer,,,,,,,,,, +1410,https://www.youtube.com/watch?v=mCoKw4qFHnk,0,0,"{""Nerdette's NewsStand""}",1,youtube,video,original video,"should mads mikkelsen have to pick a side in the johnny depp and amber heard controversy? he will be replacing johnny depp in the new fantastic beast by warner brothers and has some statements that we are going to go over. let me know what you think! + +💕 don't forget to like & subscribe! 💕 + +lbry channel: +https://lbry.tv/@nerdettesnewsstand:7 + +rumble: +https://referral.rumble.com/dszvtp5hnxylxql89 + +backup channel: +https://www.youtube.com/channel/uct4dtz67qo3xwqsimqjrnja + +bitchute channel: +https://www.bitchute.com/channel/a3wbpaazrkwn/ + +become a member today!! +https://www.youtube.com/channel/uc8agq7bm-x4tegcvqonvnpw/join + +if you want to support my channel, please check out my patreon and subscribe star below: + +patreon: +https://www.patreon.com/user?u=21542407 + +#justiceforjohnnydepp #amberheard #johnnydepp #warnerbrothers #fantasticbeast",221.0,2307.0,,,,,,1955.0,6.0,0.0,125.0,mads mikkelsen makes statement on johnny depp & amber heard | throwing johnny under the bus??,,,,,,,,,, +1411,https://www.youtube.com/watch?v=voQn3Yfdz-g,0,0,{'communiTV'},1,youtube,video,original video,"if you like amber heard you should definitely watch our picks for her best movies. amber laura heard born on april 22, 1986 is an american actress. born and raised in texas, she made her film debut in a minor supporting role in the sports drama friday night lights, followed by a series of other small roles in television and film. heard's breakthrough came in 2008 with roles in the action film ""never back down"" and in the stoner comedy pineapple express. + +discover the best… +🍿 popcorn machine: https://amzn.to/2xlctcx +🌍 vpn service: https://nordvpn.org/communitv +❤️ ctv merchandise: https://bit.ly/2ynbkes +📹 youtube tool: https://www.tubebuddy.com/communitv +👨🏽‍💻 fiverr freelancer: https://bit.ly/3fngou0 + +we missed your favorite amber heard movie? let us know in the comments!  + +follow us on... +instagram: http://bit.ly/2rnljtb +facebook: http://bit.ly/2pbyxgn + +movies in this ranking: +10. drive angry (2011): https://amzn.to/3m4ovw5 (00:27) +9. syrup (2013): https://amzn.to/340krqr (01:22) +8. machete kills (2013): https://amzn.to/2k8ucja (02:25) +7. the rum diary (2011): https://amzn.to/3n4jsmw (03:24) +6. 3 days to kill (2014): https://amzn.to/3qq0hof (04:23) +5. the joneses (2009): https://amzn.to/2vz5azw (05:21) +4. the danish girl (2015): https://amzn.to/376iwvt (06:18) +3. never back down (2008): https://amzn.to/33yikbe (07:16) +2. pineapple express (2008): https://amzn.to/3m3jodi (08:15) +1. aquaman (2018): https://amzn.to/2w0shac (10:00) + +you want to work with us? +for collaboration requests please contact us via… +mail: hello@communitv.de + +we are a participant in the amazon services llc associates program, an affiliate advertising program designed to provide a means for us to earn fees by linking to amazon.com and affiliated sites. + +music: www.bensound.com",786.0,67753.0,,,,,,65195.0,1555.0,0.0,217.0,top 10 amber heard movies,,,,,,,,,, +1412,https://www.youtube.com/watch?v=uretrfMA-Io,0,0,{'Access'},1,youtube,video,original video,"amber heard is reflecting on the lessons of 2020. when asked what she learned while navigating this difficult year, the ""aquaman"" actress said, ""adapt and survive, adapt and survive. … the better you are in making the changes internally, the better you have a chance of actually not just thriving, but surviving."" amber also discussed the relevance of her new miniseries, ""the stand,"" which is based on stephen king's 1978 novel of the same name. ""the stand"" premieres on cbs all access on dec. 17. + +» subscribe: http://bit.ly/ahsub +» visit our website: http://www.accessonline.com/ + +get more access hollywood: +facebook: https://www.facebook.com/accessonline +twitter: https://twitter.com/accessonline +instagram: http://instagram.com/accessonline +snapchat: officialaccess + +about access hollywood: +access hollywood is a nationally syndicated daily entertainment news show. access hollywood delivers the most comprehensive coverage of entertainment news and personalities on television, featuring in-depth celebrity interviews and behind-the-scenes accounts of the most important events in hollywood. + +amber heard's 2020 takeaway: 'adapt & survive' +https://www.youtube.com/accessonline + +#accesshollywood +#thestand +#amberheard",3910.0,3065548.0,,,,,,2451003.0,479614.0,0.0,131021.0,amber heard's 2020 takeaway: 'adapt & survive',,,,,,,,,, +1413,https://www.youtube.com/watch?v=7bi7pui6vMg,0,0,{'Fire Amber Heard'},1,youtube,video,original video,no discription sorry,0.0,4.0,,,,,,3.0,0.0,0.0,1.0,solving a rubik's cube everyday until amber heard gets fired - day 20,,,,,,,,,, +1414,https://www.youtube.com/watch?v=EqYIUDvMBHY,0,0,{'YK VİRAL'},1,youtube,video,original video,"aquaman, dc comics, dceu, jason momoa, amber heard, willem dafoe, temuera morrison, dolph lundgren, yahya abdul-mateen ii, patrick wilson, nicole kidman, james wan, super hero, comic book +#aquaman #aquamanmovie #aquamanedit #aquamancosplay #aquaman2018 #aquamanrd #aquaman2 #aquamanfilme #aquamanmovie2018 #aquaman🌊 #aquamanmemes #aquamantattoo #aquamantrailer #aquamanmera #aquamanmy #aquamancomics #aquamania #aquaman🔱🌊 #meraaquaman #aquamanph #aquamanors #jasonmamoaaquaman #aquamanna #aquamandesign #aquamanart #aquamanandmera #aquaman🔱 #aquamanfilm #aquamanatsmcinema #aquaman_shalom #aquamanworkout #aquamanofilme #aquamanikür #aquamanfans #aquamanfan #aquaman🧜‍♂️ #aquamanfanart #jasonmomoaaquaman #aquamanteam #aquamanrebirth #aquamandc #aquamanfunkopop #aquamanile #aquamancake #aquamandrawing #aquamanbr #aquamanfortnite #aquamanbrasil #aquamanwetsuits #aquamanrp #aquamantrident #aquaman2019 #aquamancosplayer #aquamancostume",3.0,41.0,,,,,,36.0,1.0,0.0,1.0,"'aquaman' official extended trailer (2018) | jason momoa, amber heard",,,,,,,,,, +1415,https://www.youtube.com/watch?v=dFG0QFNBFiw,0,0,{'Fire Amber Heard'},1,youtube,video,original video,"look, i didn't forget. my laptop was broken had to give it for repair. a curfew took place so the centre was closed and i got it back late so uploading today.",5.0,20.0,,,,,,14.0,0.0,0.0,1.0,solving a rubik's cube everyday until amber heard gets fired - day 19,,,,,,,,,, +1416,https://www.youtube.com/watch?v=2s5JtLQP-vw,0,0,{'Heavy Spoilers'},1,youtube,video,original video,"the stand episode 3 breakdown, ending explained spoiler review & book differences. we review, recap and explain the cbs 2020 series the stand by stephen king and go through the plot and things you missed. + +#thestand #stephenking #cbs #thestand2020 #episode3 + +if you enjoyed this video then please subscribe to the channel https://www.youtube.com/channel/ucq3ht5jppky87jgbdls_5bq?sub_confirmation=1 + +if you want to help support the channel so i can make more videos like this please donate here: +https://www.youtube.com/channel/ucq3ht5jppky87jgbdls_5bq/join + +get some awesome heavy spoilers show clothes, phonecases and accessories at - https://teespring.com/en-gb/stores/deffinitions-store + +*check out our best new videos below* +*how to kill wonder woman* - https://www.youtube.com/watch?v=qcaq2lcohbw +*wonder woman 1984 ending explained* - https://www.youtube.com/watch?v=hrsi-v3n5lo +*100 mandalorian season 2 easter eggs* - https://www.youtube.com/watch?v=5aqnpqvutb4&feature=youtu.be +*spider-man 3 plot leaks* - https://www.youtube.com/watch?v=2zoisfelaey&feature=youtu.be +*the mandalorian* season 2 ending explained - https://www.youtube.com/watch?v=omqaddvhirc + + +/* ----- social media ----- */ + +follow me on social media at: +https://www.facebook.com/deffinitionmc/ +https://twitter.com/heavyspoilers +https://www.instagram.com/heavyspoilers/ + + +/* ----- discord ----- */ + +join our discord community at - https://discord.gg/ddmjn4a + + +/* ----- video information ----- */ + +welcome to the heavy spoilers show, i'm your host paul and i dunno if it's just me but does anyone else think the stand is randall lagging a bit after episode 3? + +i think by far this was my least favourite of those released and i found the time jumps to be a bit all over the place. if you're confused by exactly what's going on then don't worry as we're gonna be breaking it all down and discussing the main book differences. + +obviously full spoilers ahead from here on out though i will keep some of the bigger elements of the book a secret to not spoil some certain surprises. if you enjoy the video please smash the thumbs up button and make sure you subscribe for breakdowns of the series every week. + +with that out the way, happy new year, i'm your host paul now let's get into the breakdown! + +ok so episode 3 sort of fills in the back stories of some of the side characters that we've been introduced to and primarily we focus on nadine, nick and stu meeting glen bateman. + +now you may remember that last week we caught nadine being drawn towards a planchette and this episode we see that the device ties back to her childhood. similar to the source material, nadine was an orphan but rather than living with her aunt and uncle like in the book we see her starting off in a home. + +through the planchette, randall flagg is able to contact her and he clearly has had eyes on her from a young age. the villain carves into the floor ""nadine will be my queen, we are in the house of the dead nadine"" which yeah...you can have her mate. + +now even in her adult version, nadine is still a virgin and this is because throughout her life flagg has contacted her and told her to save herself for him. though many men have shot their shot some dark force has always swept in and scared them off. + +in the present we catch her waking up in bed and to everyone's surprise amber heard hasn't pooped in it. + +► artist attribution +music by: ""kaizanblu"" +• instagram - https://www.instagram.com/kaizanblu/ +• soundcloud - https://soundcloud.com/kaizanblu/ +• facebook - https://www.facebook.com/kaizanblumusic/ +• tiktok - @kaizanblu http://vm.tiktok.com/acywfx/ +• youtube - https://www.youtube.com/channel/ucutx... +• download @ https://www.chilloutmedia.com/kaizanblu +licence: creative commons attribution-sharealike 4.0 international (cc by-sa 4.0) +- full licence here: https://creativecommons.org/licenses/... +• music released by: chill out records @ https://goo.gl/fh3rej & https://www.lofi-hiphop.com + +► artist attribution +lofi geek @spotify: https://spoti.fi/3g16pgr +lofi geek official channel: https://www.youtube.com/channel/ucyd59ci7bejdu493glzpxga +artwork @mb0sco",1003.0,32000.0,,,,,,30665.0,29.0,0.0,303.0,"the stand episode 3 breakdown, ending explained spoiler review & book differences",,,,,,,,,, +1417,https://www.youtube.com/watch?v=Fre7DF-7FcI,0,0,{'Ya Boy Gary'},1,youtube,video,original video,"just a calm conversation for amber h supporters... +#justiceforjohnnydepp",977.0,9610.0,,,,,,8268.0,10.0,0.0,355.0,a message for amber heard supporters,,,,,,,,,, +1418,https://www.youtube.com/watch?v=jc3GoybqWLo,0,0,{'Super Nerd Video'},1,youtube,video,original video,"aquaman 2 rumor - amber heard mera replacement is asian dolphin? + +scooper grace randolph claims that james wan's looking for an asian actress to play a new female lead character in aquaman 2. + +could wb be laying the groundwork to reduce amber heard's mera or replace her altogether? + +i discuss in this video, so check it out. + +please subscribe to the channel and leave a comment below! + +follow me on twitter: https://twitter.com/hiltoncollins +follow me on instagram: https://www.instagram.com/hiltoncollins/ + +#amberheard #aquaman2 #dolphin",18.0,366.0,,,,,,336.0,1.0,0.0,11.0,aquaman 2 rumor - amber heard mera replacement is asian dolphin?,,,,,,,,,, +1419,https://www.youtube.com/watch?v=hM3gnTEkONg,0,0,{'ThatUmbrellaGuy'},1,youtube,video,original video,"amber heard uses brad pitt to attack johnny depp! could cost angelina jolie her children! + +comic: https://www.indiegogo.com/projects/another-case-for-the-littlest-umbrella + +tip jar: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2aazu385w88ge tip jar + +patreon: https://www.patreon.com/thatumbrellaguy patreon + +bitcoin address: 1nxxqwykh16zqofku64vofrj1ugxxlwwvx +#bradpitt #amberheard #johnnydepp",2974.0,71697.0,,,,,,67854.0,60.0,0.0,809.0,amber heard uses brad pitt to attack johnny depp! could cost angelina jolie her children!,,,,,,,,,, +1420,https://www.youtube.com/watch?v=rcR6WmGLm04,0,0,{'Top 10 Beyond The Screen'},1,youtube,video,original video,"will amber heard be fired from aquaman 2? +subscribe to beyond the screen: https://bit.ly/2txttsd +watch our recent videos here: https://bit.ly/3mmfo8g + +amber heard is back in the news following a petition that was created to remove her from aquaman 2 after her very public court battle against johnny depp. fans have turned on the actress and 1.3 million of them are demanding she be removed from the movie. here is all the hollywood news you need with will amber heard be fired from aquaman 2? right here on top 10 beyond the screen! + +#celebrities #top10 #amberheard #amberheardaquaman2 #aquaman2 #amberheardjohnnydepp #johnnydeppamberheard #amberheardaudio #hollywood #hollywoodnews #top10beyondthescreen + +hosted by: +jocelyn bedard: https://www.instagram.com/jocebedard/ + +edited by: +sidhant sharma: https://www.instagram.com/sidd_happens",706.0,10725.0,,,,,,9750.0,10.0,0.0,259.0,will amber heard be fired from aquaman 2?,,,,,,,,,, +0,https://www.change.org/p/justice-for-johnny-depp,0,0,0,0,,petitions_milestones,,,,100000.0,,,,,,,,,,,MilestonePetitionUpdate,28245649.0,2020-12-19 03:54:09+00:00,100000.0,justice-for-johnny-depp,,,,,against +1,https://www.change.org/p/warner-brothers-replace-amber-heard-in-justice-league-with-danny-devito-in-a-wig,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28262907.0,2020-12-23 16:55:48+00:00,50.0,warner-brothers-replace-amber-heard-in-justice-league-with-danny-devito-in-a-wig,,,,,against +2,https://www.change.org/p/warner-brothers-replace-amber-heard-in-justice-league-with-danny-devito-in-a-wig,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28253188.0,2020-12-21 08:30:09+00:00,25.0,warner-brothers-replace-amber-heard-in-justice-league-with-danny-devito-in-a-wig,,,,,against +3,https://www.change.org/p/warner-brothers-replace-amber-heard-in-justice-league-with-danny-devito-in-a-wig,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28252485.0,2020-12-21 02:30:58+00:00,10.0,warner-brothers-replace-amber-heard-in-justice-league-with-danny-devito-in-a-wig,,,,,against +4,https://www.change.org/p/warner-brothers-replace-amber-heard-in-justice-league-with-danny-devito-in-a-wig,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28252256.0,2020-12-21 00:40:31+00:00,5.0,warner-brothers-replace-amber-heard-in-justice-league-with-danny-devito-in-a-wig,,,,,against +5,https://www.change.org/p/warner-brothers-we-re-not-getting-paid-for-this-fire-amber-heard,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28188339.0,2020-12-08 20:34:41+00:00,200.0,warner-brothers-we-re-not-getting-paid-for-this-fire-amber-heard,,,,,against +6,https://www.change.org/p/warner-brothers-amber-heard-does-not-deserve-to-play-mera-in-the-next-aquaman-film,0,0,0,0,,petitions_milestones,,,,30000.0,,,,,,,,,,,MilestonePetitionUpdate,28147340.0,2020-12-01 01:33:38+00:00,30000.0,warner-brothers-amber-heard-does-not-deserve-to-play-mera-in-the-next-aquaman-film,,,,,against +7,https://www.change.org/p/the-judicial-conduct-investigations-office-a-official-review-the-judicial-misconduct-of-judge-nicol-in-the-johnny-depp-libel-case,0,0,0,0,,petitions_milestones,,,,2500.0,,,,,,,,,,,MilestonePetitionUpdate,28261639.0,2020-12-23 09:35:52+00:00,2500.0,the-judicial-conduct-investigations-office-a-official-review-the-judicial-misconduct-of-judge-nicol-in-the-johnny-depp-libel-case,,,,,against +8,https://www.change.org/p/the-judicial-conduct-investigations-office-a-official-review-the-judicial-misconduct-of-judge-nicol-in-the-johnny-depp-libel-case,0,0,0,0,,petitions_milestones,,,,2000.0,,,,,,,,,,,MilestonePetitionUpdate,28175376.0,2020-12-06 06:26:03+00:00,2000.0,the-judicial-conduct-investigations-office-a-official-review-the-judicial-misconduct-of-judge-nicol-in-the-johnny-depp-libel-case,,,,,against +9,https://www.change.org/p/walt-disney-bring-johnny-depp-back-to-pirates-of-the-caribbean,0,0,0,0,,petitions_milestones,,,,2500.0,,,,,,,,,,,MilestonePetitionUpdate,28241483.0,2020-12-18 08:04:33+00:00,2500.0,walt-disney-bring-johnny-depp-back-to-pirates-of-the-caribbean,,,,,against +10,https://www.change.org/p/walt-disney-bring-johnny-depp-back-to-pirates-of-the-caribbean,0,0,0,0,,petitions_milestones,,,,2000.0,,,,,,,,,,,MilestonePetitionUpdate,28177478.0,2020-12-06 18:43:54+00:00,2000.0,walt-disney-bring-johnny-depp-back-to-pirates-of-the-caribbean,,,,,against +11,https://www.change.org/p/the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28272447.0,2020-12-27 06:12:08+00:00,250.0,the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,,,,,against +12,https://www.change.org/p/the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28257363.0,2020-12-22 09:26:13+00:00,200.0,the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,,,,,against +13,https://www.change.org/p/the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28235463.0,2020-12-17 05:21:35+00:00,100.0,the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,,,,,against +14,https://www.change.org/p/the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28234438.0,2020-12-17 00:50:00+00:00,50.0,the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,,,,,against +15,https://www.change.org/p/the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28233982.0,2020-12-16 23:07:38+00:00,25.0,the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,,,,,against +16,https://www.change.org/p/the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28233145.0,2020-12-16 20:30:14+00:00,10.0,the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,,,,,against +17,https://www.change.org/p/the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28232779.0,2020-12-16 19:22:32+00:00,5.0,the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,,,,,against +18,https://www.change.org/p/hollywood-boycott-aquaman-2-amber-heard,0,0,0,0,,petitions_milestones,,,,17500.0,,,,,,,,,,,MilestonePetitionUpdate,28198563.0,2020-12-10 15:50:37+00:00,17500.0,hollywood-boycott-aquaman-2-amber-heard,,,,,against +19,https://www.change.org/p/hollywood-boycott-aquaman-2-amber-heard,0,0,0,0,,petitions_milestones,,,,15000.0,,,,,,,,,,,MilestonePetitionUpdate,28170901.0,2020-12-05 04:01:49+00:00,15000.0,hollywood-boycott-aquaman-2-amber-heard,,,,,against +20,https://www.change.org/p/hollywood-boycott-aquaman-2-amber-heard,0,0,0,0,,petitions_milestones,,,,12500.0,,,,,,,,,,,MilestonePetitionUpdate,28149599.0,2020-12-01 14:03:12+00:00,12500.0,hollywood-boycott-aquaman-2-amber-heard,,,,,against +21,https://www.change.org/p/cbs-remove-amber-heard-from-the-stand-2020,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28281175.0,2020-12-29 18:14:39+00:00,1000.0,cbs-remove-amber-heard-from-the-stand-2020,,,,,against +22,https://www.change.org/p/cbs-remove-amber-heard-from-the-stand-2020,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28258546.0,2020-12-22 16:21:06+00:00,750.0,cbs-remove-amber-heard-from-the-stand-2020,,,,,against +23,https://www.change.org/p/cbs-remove-amber-heard-from-the-stand-2020,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28199807.0,2020-12-10 19:38:16+00:00,500.0,cbs-remove-amber-heard-from-the-stand-2020,,,,,against +24,https://www.change.org/p/everyone-cancel-amber-heard-domestic-abuser,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28177990.0,2020-12-06 21:02:09+00:00,50.0,everyone-cancel-amber-heard-domestic-abuser,,,,,against +25,https://www.change.org/p/supreme-court-make-amber-heard-face-charges-for-abuse-against-johnny-depp,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28184938.0,2020-12-08 07:17:22+00:00,100.0,supreme-court-make-amber-heard-face-charges-for-abuse-against-johnny-depp,,,,,against +26,https://www.change.org/p/movie-goers-and-supporters-of-johnny-depp-remove-amber-heard-and-robbie-margot-from-pirates-of-the-carribean-fran-chise,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28223328.0,2020-12-15 06:14:38+00:00,25.0,movie-goers-and-supporters-of-johnny-depp-remove-amber-heard-and-robbie-margot-from-pirates-of-the-carribean-fran-chise,,,,,against +27,https://www.change.org/p/movie-goers-and-supporters-of-johnny-depp-remove-amber-heard-and-robbie-margot-from-pirates-of-the-carribean-fran-chise,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28150018.0,2020-12-01 15:26:31+00:00,10.0,movie-goers-and-supporters-of-johnny-depp-remove-amber-heard-and-robbie-margot-from-pirates-of-the-carribean-fran-chise,,,,,against +28,https://www.change.org/p/amber-heard-a-public-letter-to-amber-heard,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28284578.0,2020-12-30 17:01:53+00:00,250.0,amber-heard-a-public-letter-to-amber-heard,,,,,against +29,https://www.change.org/p/amber-heard-a-public-letter-to-amber-heard,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28283788.0,2020-12-30 12:16:48+00:00,200.0,amber-heard-a-public-letter-to-amber-heard,,,,,against +30,https://www.change.org/p/amber-heard-a-public-letter-to-amber-heard,0,0,0,0,,petitions_milestones,,"

Welcome! 

+

Thank you to all who have signed this petition so far. Many of you will have found your way here through our full length video on Youtube.

+

But if you have just stumbled across this please watch the accompanying video to add much needed context.

",,,,,,,,,,,,A public letter to AMBER HEARD the Audio,StarterPetitionUpdate,28283650.0,2020-12-30 10:53:13+00:00,,amber-heard-a-public-letter-to-amber-heard,,"{'photo': {'id': '225023216', 'petitionMedium': {'url': '//assets.change.org/photos/0/bt/qo/dPbTqOIiZYnjjHu-800x450-noPad.jpg?1609325595', 'processing': False}}}",,,against +31,https://www.change.org/p/amber-heard-a-public-letter-to-amber-heard,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28282868.0,2020-12-30 03:39:37+00:00,100.0,amber-heard-a-public-letter-to-amber-heard,,,,,against +32,https://www.change.org/p/amber-heard-a-public-letter-to-amber-heard,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28282416.0,2020-12-30 00:37:08+00:00,50.0,amber-heard-a-public-letter-to-amber-heard,,,,,against +33,https://www.change.org/p/amber-heard-a-public-letter-to-amber-heard,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28282327.0,2020-12-30 00:07:01+00:00,25.0,amber-heard-a-public-letter-to-amber-heard,,,,,against +34,https://www.change.org/p/amber-heard-a-public-letter-to-amber-heard,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28282253.0,2020-12-29 23:35:48+00:00,10.0,amber-heard-a-public-letter-to-amber-heard,,,,,against +35,https://www.change.org/p/amber-heard-a-public-letter-to-amber-heard,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28282201.0,2020-12-29 23:21:48+00:00,5.0,amber-heard-a-public-letter-to-amber-heard,,,,,against +36,https://www.change.org/p/warner-brothers-bring-back-johnny-depp-as-gellert-grindelwald-in-the-fantastic-beasts-franchise,0,0,0,0,,petitions_milestones,,,,2500.0,,,,,,,,,,,MilestonePetitionUpdate,28198436.0,2020-12-10 15:22:23+00:00,2500.0,warner-brothers-bring-back-johnny-depp-as-gellert-grindelwald-in-the-fantastic-beasts-franchise,,,,,against +37,https://www.change.org/p/people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28289091.0,2020-12-31 21:38:19+00:00,25.0,people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,,,,,related +38,https://www.change.org/p/walt-disney-revoke-the-decision-not-to-cast-johnny-depp-in-disney-s-pirates-of-the-carribbean-jfj,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28245639.0,2020-12-19 03:51:02+00:00,750.0,walt-disney-revoke-the-decision-not-to-cast-johnny-depp-in-disney-s-pirates-of-the-carribbean-jfj,,,,,against +39,https://www.change.org/p/warner-brothers-do-not-fire-amber-heard-of-aquaman-2,0,0,0,0,,petitions_milestones,,,,3000.0,,,,,,,,,,,MilestonePetitionUpdate,28261377.0,2020-12-23 07:38:33+00:00,3000.0,warner-brothers-do-not-fire-amber-heard-of-aquaman-2,,,,,for +40,https://www.change.org/p/warner-brothers-do-not-fire-amber-heard-of-aquaman-2,0,0,0,0,,petitions_milestones,,,,3000.0,,,,,,,,,,,MilestonePetitionUpdate,28261374.0,2020-12-23 07:37:39+00:00,3000.0,warner-brothers-do-not-fire-amber-heard-of-aquaman-2,,,,,for +41,https://www.change.org/p/warner-brothers-do-not-fire-amber-heard-of-aquaman-2,0,0,0,0,,petitions_milestones,,,,2500.0,,,,,,,,,,,MilestonePetitionUpdate,28210749.0,2020-12-12 19:40:48+00:00,2500.0,warner-brothers-do-not-fire-amber-heard-of-aquaman-2,,,,,for +42,https://www.change.org/p/warner-brothers-do-not-fire-amber-heard-of-aquaman-2,0,0,0,0,,petitions_milestones,,,,2000.0,,,,,,,,,,,MilestonePetitionUpdate,28200551.0,2020-12-10 22:05:25+00:00,2000.0,warner-brothers-do-not-fire-amber-heard-of-aquaman-2,,,,,for +43,https://www.change.org/p/united-nations-remove-amber-heard-as-a-spokesperson-for-harry-walker-agency-for-domestic-violence,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28274769.0,2020-12-27 23:53:23+00:00,10.0,united-nations-remove-amber-heard-as-a-spokesperson-for-harry-walker-agency-for-domestic-violence,,,,,against +44,https://www.change.org/p/united-nations-remove-amber-heard-as-a-spokesperson-for-harry-walker-agency-for-domestic-violence,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28271357.0,2020-12-26 19:55:57+00:00,5.0,united-nations-remove-amber-heard-as-a-spokesperson-for-harry-walker-agency-for-domestic-violence,,,,,against +45,https://www.change.org/p/walt-disney-johnny-depp-for-the-next-sith-lord,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28211077.0,2020-12-12 20:52:25+00:00,5.0,walt-disney-johnny-depp-for-the-next-sith-lord,,,,,against +46,https://www.change.org/p/walt-disney-johnny-depp-for-the-next-sith-lord,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28208087.0,2020-12-12 05:14:33+00:00,5.0,walt-disney-johnny-depp-for-the-next-sith-lord,,,,,against +47,https://www.change.org/p/walt-disney-johnny-depp-for-the-next-sith-lord,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28206779.0,2020-12-11 23:07:56+00:00,5.0,walt-disney-johnny-depp-for-the-next-sith-lord,,,,,against +48,https://www.change.org/p/walt-disney-johnny-depp-for-the-next-sith-lord,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28206124.0,2020-12-11 20:49:43+00:00,5.0,walt-disney-johnny-depp-for-the-next-sith-lord,,,,,against +49,https://www.change.org/p/all-amber-heard-movies-to-get-amber-heard-removed-from-all-of-her-movies-and-get-johnny-depp-back-in-his-movies,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28266263.0,2020-12-24 15:15:19+00:00,10.0,all-amber-heard-movies-to-get-amber-heard-removed-from-all-of-her-movies-and-get-johnny-depp-back-in-his-movies,,,,,against +50,https://www.change.org/p/all-amber-heard-movies-to-get-amber-heard-removed-from-all-of-her-movies-and-get-johnny-depp-back-in-his-movies,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28265706.0,2020-12-24 10:32:42+00:00,5.0,all-amber-heard-movies-to-get-amber-heard-removed-from-all-of-her-movies-and-get-johnny-depp-back-in-his-movies,,,,,against +51,https://www.change.org/p/warner-brothers-keep-johnny-depp-as-grindlewald,0,0,0,0,,petitions_milestones,,,,1500.0,,,,,,,,,,,MilestonePetitionUpdate,28264297.0,2020-12-23 23:59:35+00:00,1500.0,warner-brothers-keep-johnny-depp-as-grindlewald,,,,,against +52,https://www.change.org/p/warner-brothers-keep-johnny-depp-as-grindlewald,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28191047.0,2020-12-09 09:01:09+00:00,1000.0,warner-brothers-keep-johnny-depp-as-grindlewald,,,,,against +53,https://www.change.org/p/warner-brothers-keep-johnny-depp-as-grindlewald,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28153818.0,2020-12-02 04:36:53+00:00,750.0,warner-brothers-keep-johnny-depp-as-grindlewald,,,,,against +54,https://www.change.org/p/zack-snyder-amber-heard-out-ir-justice-league,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28271354.0,2020-12-26 19:55:35+00:00,750.0,zack-snyder-amber-heard-out-ir-justice-league,,,,,against +55,https://www.change.org/p/zack-snyder-amber-heard-out-ir-justice-league,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28265787.0,2020-12-24 11:37:59+00:00,500.0,zack-snyder-amber-heard-out-ir-justice-league,,,,,against +56,https://www.change.org/p/zack-snyder-amber-heard-out-ir-justice-league,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28234233.0,2020-12-17 00:00:20+00:00,250.0,zack-snyder-amber-heard-out-ir-justice-league,,,,,against +57,https://www.change.org/p/zack-snyder-amber-heard-out-ir-justice-league,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28232195.0,2020-12-16 17:39:38+00:00,200.0,zack-snyder-amber-heard-out-ir-justice-league,,,,,against +58,https://www.change.org/p/zack-snyder-amber-heard-out-ir-justice-league,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28221305.0,2020-12-14 21:52:09+00:00,100.0,zack-snyder-amber-heard-out-ir-justice-league,,,,,against +59,https://www.change.org/p/zack-snyder-amber-heard-out-ir-justice-league,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28216411.0,2020-12-14 00:41:01+00:00,50.0,zack-snyder-amber-heard-out-ir-justice-league,,,,,against +60,https://www.change.org/p/zack-snyder-amber-heard-out-ir-justice-league,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28216111.0,2020-12-13 23:19:41+00:00,25.0,zack-snyder-amber-heard-out-ir-justice-league,,,,,against +61,https://www.change.org/p/zack-snyder-amber-heard-out-ir-justice-league,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28215996.0,2020-12-13 22:45:53+00:00,10.0,zack-snyder-amber-heard-out-ir-justice-league,,,,,against +62,https://www.change.org/p/zack-snyder-amber-heard-out-ir-justice-league,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28210874.0,2020-12-12 20:04:40+00:00,5.0,zack-snyder-amber-heard-out-ir-justice-league,,,,,against +63,https://www.change.org/p/warner-brothers-get-johnny-depp-his-role-in-fantastic-beasts-back-arrest-fire-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,,,4000.0,,,,,,,,,,,MilestonePetitionUpdate,28174648.0,2020-12-06 00:41:34+00:00,4000.0,warner-brothers-get-johnny-depp-his-role-in-fantastic-beasts-back-arrest-fire-amber-heard-from-aquaman-2,,,,,against +64,https://www.change.org/p/warner-brothers-we-bring-back-johnny-depp-as-grindelwald,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28157853.0,2020-12-02 20:35:30+00:00,250.0,warner-brothers-we-bring-back-johnny-depp-as-grindelwald,,,,,against +65,https://www.change.org/p/the-sun-warner-bros-is-not-boiccoted-the-fault-is-of-the-judge-andrew-nicol-and-the-sun-newspaper,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28289087.0,2020-12-31 21:35:40+00:00,50.0,the-sun-warner-bros-is-not-boiccoted-the-fault-is-of-the-judge-andrew-nicol-and-the-sun-newspaper,,,,,against +66,https://www.change.org/p/the-sun-warner-bros-is-not-boiccoted-the-fault-is-of-the-judge-andrew-nicol-and-the-sun-newspaper,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28261868.0,2020-12-23 11:27:38+00:00,25.0,the-sun-warner-bros-is-not-boiccoted-the-fault-is-of-the-judge-andrew-nicol-and-the-sun-newspaper,,,,,against +67,https://www.change.org/p/the-sun-warner-bros-is-not-boiccoted-the-fault-is-of-the-judge-andrew-nicol-and-the-sun-newspaper,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28236372.0,2020-12-17 10:31:40+00:00,10.0,the-sun-warner-bros-is-not-boiccoted-the-fault-is-of-the-judge-andrew-nicol-and-the-sun-newspaper,,,,,against +68,https://www.change.org/p/johnny-depp-reopening-the-amber-heard-vs-johnny-depp-abuse-case-for-actual-justice-to-be-carried-out,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28173948.0,2020-12-05 21:08:28+00:00,10.0,johnny-depp-reopening-the-amber-heard-vs-johnny-depp-abuse-case-for-actual-justice-to-be-carried-out,,,,,against +69,https://www.change.org/p/johnny-depp-reopening-the-amber-heard-vs-johnny-depp-abuse-case-for-actual-justice-to-be-carried-out,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28172693.0,2020-12-05 15:25:09+00:00,5.0,johnny-depp-reopening-the-amber-heard-vs-johnny-depp-abuse-case-for-actual-justice-to-be-carried-out,,,,,against +70,https://www.change.org/p/the-sun-justice-for-johnny-depp,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28263855.0,2020-12-23 21:20:23+00:00,750.0,the-sun-justice-for-johnny-depp,,,,,against +71,https://www.change.org/p/the-sun-justice-for-johnny-depp,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28158410.0,2020-12-02 22:20:54+00:00,500.0,the-sun-justice-for-johnny-depp,,,,,against +72,https://www.change.org/p/warner-brothers-warner-brothers-apologise-to-johnny-depp-and-give-him-his-job-back,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28278982.0,2020-12-29 03:37:32+00:00,200.0,warner-brothers-warner-brothers-apologise-to-johnny-depp-and-give-him-his-job-back,,,,,against +73,https://www.change.org/p/queremos-que-deborah-ann-woll-reemplace-a-amber-heard-como-mera-en-aquaman-2,0,0,0,0,,petitions_milestones,,,,6000.0,,,,,,,,,,,MilestonePetitionUpdate,28178184.0,2020-12-06 22:03:17+00:00,6000.0,queremos-que-deborah-ann-woll-reemplace-a-amber-heard-como-mera-en-aquaman-2,,,,,against +74,https://www.change.org/p/audience-make-amber-heard-release-the-7million-donation-receipt,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28178117.0,2020-12-06 21:38:31+00:00,25.0,audience-make-amber-heard-release-the-7million-donation-receipt,,,,,against +75,https://www.change.org/p/l-oréal-remove-amber-heard-as-l-oreal-spokesperson,0,0,0,0,,petitions_milestones,,,,75000.0,,,,,,,,,,,MilestonePetitionUpdate,28174840.0,2020-12-06 02:03:32+00:00,75000.0,l-oréal-remove-amber-heard-as-l-oreal-spokesperson,,,,,against +76,https://www.change.org/p/change-org-enough-is-enough-justice-for-johnny-depp,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28269370.0,2020-12-25 22:25:20+00:00,1000.0,change-org-enough-is-enough-justice-for-johnny-depp,,,,,against +77,https://www.change.org/p/change-org-enough-is-enough-justice-for-johnny-depp,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28205612.0,2020-12-11 19:13:42+00:00,750.0,change-org-enough-is-enough-justice-for-johnny-depp,,,,,against +78,https://www.change.org/p/change-org-enough-is-enough-justice-for-johnny-depp,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28186428.0,2020-12-08 14:55:45+00:00,500.0,change-org-enough-is-enough-justice-for-johnny-depp,,,,,against +79,https://www.change.org/p/the-governors-of-the-states-california-texas-virginia-and-to-johnny-depp-usa-save-the-life-of-johnny-depp-and-his-career,0,0,0,0,,petitions_milestones,,"

 

+

""Он смешной, потому что он один из самых красивых мужчин в мире, а он тщательно это скрывает"". Хелена Бонем Картер.

+

Джонни Депп: ""Иногда мне хочется сидеть на крылечке и пускать слюни"" № 133, 23 Июля 2009г.

+

""Эскапизм для меня - это способ выживания"" (эскапизм - уход от действительности, если  кратко)

+

- Жизнь во Франции изменила ваше представление о мире?
- Несмотря на то что у нас дом на юге Франции, большую часть времени мы проводим в Штатах - наши дети ходят здесь в школу. Франция дает мне ощущение покоя и дарит роскошь более простой жизни, потому что мы живем за городом, не убиваем время в ожидании звонков от агентов и руководителей студий - вы знаете, что я имею в виду. Жизнь там намного проще. Но я стал еще больше ценить не только Соединенные Штаты - еще Калифорнию и Лос-Анджелес. Людям полезно отдалиться от того места, где они живут.

+

- Получается, что вы в определенной степени отдали дань своей родословной, которая берет начало от французских гугенотов?

+

- Да, точно. Где-то между XVI и XVII веками.

+

- Вы стали легендой при жизни. У вас есть рецепт того, как стать легендарным?

+

- Я думаю, это можно сделать двумя способами: или улучшать жизнь людей, или убивать их.

+

- Тогда что вы думаете о парадоксе: зрители больше симпатизируют плохим парням, чем хорошим?

+

- Это зависит от того, какой смысл мы вкладываем в определение ""плохой парень"". Если бы я стоял перед выбором, к кому мне можно повернуться спиной и чувствовать себя в безопасности - к Эдгару Гуверу (бывший директор ЦРУ. - ""Труд-7"") или Джону Диллинджеру, - я бы предпочел Диллинджера. Гувер был липким, липким человеком, он оказывал влияние на правительство в течение многих лет. Что касается обаяния плохих парней, то это величина, зависимая от нашего сознания. Люди всегда останавливаются, чтобы получше рассмотреть автомобильную аварию. Вы не считаете это глупым занятием?

+

- Можете ли вы сравнить свою собственную славу со славой Джона Диллинджера - в популярном чикагском кинотеатре ""Биограф"" его в свое время никто не узнал. Думаю, вы бы не остались незамеченным в шляпе и черных очках.

+

- Это, конечно, нечто. Бродить по улицам и оставаться неузнанным - большое удовольствие. Но иметь возможность пойти со своими детьми в магазин, ресторан, Диснейленд или куда-либо еще и не попасться на удочку какому-нибудь фрику - это великолепно. Джон Диллинджер, конечно, был грабителем банков, это целый бизнес, но он имел возможность смешаться с толпой. Он спокойно просачивался через полицейские кордоны, приговаривая: ""Как поживаете? Как ваши дела?"" И все у него было в порядке, никаких проблем. А на Всемирной ярмарке 1933 года он вручил свой фотоаппарат полицейскому и спросил: ""Щелкнешь меня с моей подружкой?"" (Смеется.)

+

- Есть ли на земле место, где бы вы остались неузнанным?

+

- Хм, да (смеется). Маленький остров на Багамах. (Депп - владелец острова Little Hall's Pond Cay, который он приобрел за 3,6 миллиона долларов. На острове шесть пляжей, каждый из которых назван в честь дорогих ему людей - жены Ванессы Паради, детей Лили Роуз и Джека, а также Хантера Томпсона и Марлона Брандо. Пляж Heath's Place назван в честь Хита Леджера. - ""Труд-7""). Я там спокойно расхаживаю. Эскапизм для меня - способ выживания. ""Где семья, там и дом""

+

- Как вам кажется, судьба Джона Диллинджера - пример того, как должен прожить свою жизнь мужчина?

+

- Да, во многом это так. К счастью, лично мне не приходится выходить из дома с двумя кольтами 45-го калибра под мышками и автоматом Томсона в руках. До этого еще не дошло, слава богу. Надо понимать, что представлял собой Джон Диллинджер в те времена, особенно в 1933-м, когда банки были врагами, обдиравшими клиентов как липку, а люди вроде Джона Эдгара Гувера были хуже любых преступников. Диллинджер решил, что это его долг, который он будет выполнять столько времени, насколько его хватит. Я тоже решил идти только вперед и делать то, что считаю нужным. Правда, я стараюсь не обижать никого из тех, кого встречаю на своем пути. А перед Диллинджером я преклоняюсь.

+

- Говорят, что вы с Диллинджером чуть ли не земляки.

+

- Я родом из Овенсборо, штат Кентукки, а Джон Диллинджер с юга Индианы, что всего в 80 милях оттуда, поэтому немудрено, что у нас с ним много общего. Я это явно почувствовал, когда услышал голос его отца, напомнивший мне голос моего дедушки. В 1930-х нашел себе занятие по душе - днем он водил автобус, по ночам гнал самогон для засушливых округов. Работал в сфере услуг, можно сказать. Из воспоминаний о своей семье, своем отчиме, который провел несколько лет, обучаясь уму-разуму в Стейтсвильской тюрьме, - из всех этих ингредиентов я собрал образ Диллинджера. К сожалению, записи голоса самого Джона я так и не обнаружил - видимо, ее не существует. И отснятого материала с его изображением не так-то много. Но мне удалось представить себе его походку и вообще то, как он двигался. Думаю, меня просто посетил дух Диллинджера. А я верю в духов - не зря же в моих жилах течет индейская кровь.

+

- Откуда взялись индейцы в вашей семье?

+

- Это в основном со стороны моей матери. Мои прабабушка и дедушка по материнской линии были чероки. Я, видимо, унаследовал их гены. У дедушки была запоминающаяся внешность - скульптурное лицо с высокими скулами. Очень выразительное.

+

- У русских тоже высокие скулы, как вы, наверное, знаете.

+

- Давайте откроем совместный бизнес по имплантации скул! (Смеется.)

+

- Это правда, что вы были странным ребенком?

+

- Да, это потому, что я все делал дважды, то есть как бы копировал самого себя. Например, после того как выпивал стакан воды, я снова брал его в руки и притворялся, что пью, повторяя все движения, которые делал в первый раз. Это, конечно, было странным. Правда, ни один человек не хочет, чтобы окружающие думали, что он ненормальный, поэтому старается скрывать индивидуальность.

+

- Страсть к путешествиям у вас от матери?

+

- Мы переезжали с места на место, как цыгане. Лет с пяти и до того, как я стал подростком, мы сменили 30 или 40 домов. В то время мне казалось, что это вполне нормально - мол, где семья, там и дом. А домом я называю места, где мы жили, квартиры, фермы, мотели. В конце концов мы сняли настоящий дом, а вскоре переехали в дом напротив. Однажды я спросил маму, зачем мы так часто переезжаем. Ее ответ был невнятным.

+

- Она развелась с вашим отцом?

+

- Да, он ушел после 20 лет совместной жизни. Он был для нее всем - другом, любовником, отцом ее детей. Когда это случилось, мне было 15 лет. Вот тогда-то я и осознал, что они оба - самые дорогие мне люди. Я сильно переживал, но от боли было некуда бежать.

+

- Увлечение музыкой помогло вам пережить это горе?

+

- Когда мне было 12 лет, мама купила мне электрическую гитару за 25 долларов. Я считаю, музыка вообще спасла мне жизнь.

+

- Это правда, что вживаться в роли вам помогает музыка?

+

- Конечно. У каждого из наших ежедневных разговоров есть что-то вроде саундтрека - будь то сигналы машин на улице или шелест бумаги. Я стараюсь, чтобы музыка всегда была со мной. Ирония состоит в том, что на съемках у Майкла Манна я чаще всего слушал композицию Арти Шоу ""Кошмары"". И она подходит почти что к каждой сцене.

+

- Как вы зарабатывали себе на жизнь, когда оказались на мели с вашей музыкальной группой?

+

- Я занимался телемаркетингом и продавал рекламу - это была ужасная работа. ""Не думаю, что из меня бы получился хороший супермен в трико""

+

- Как вам работалось с Марион Котийяр? Насколько важны для сюжета любовные отношения между вашими персонажами?

+

- В фильме нет ничего важнее любви, Диллинджер полностью посвящает себя Билли. Так было и в реальной жизни. Искры летели, когда они встречались. Они оба были никому не нужными аутсайдерами и идеально подходили друг другу. А Марион идеально подошла для этой роли. За несколько месяцев до начала съемок она уже была в Чикаго, работая над акцентом. Она любит повторять, что я был с ней терпелив, но я думаю, что это она была терпелива по отношению ко мне.

+

- Марион сказала, что согласно ее исследованиям после смерти Джона Диллинджера Эдгар Гувер хранил в банке его большой пенис. А вам попадалась на глаза подобная информация?

+

- Да, попадалась, и оказалось, что у меня точно такой же (смеется).

+

- Именно поэтому Марион была напугана предстоящими любовными сценами?

+

- Нет, она просто не любит обнажаться, считает, что это слишком интимно.

+

- Вы сказали, что Диллинджер жил во времена, когда мужчины были настоящими. Считаете ли вы, что в наше время они перевелись?

+

- Вы просто посмотрите на моду тех времен: мужчины носили шляпы, костюмы, галстуки и пальто, что не свойственно современным мужчинам. В 30-е было мало таблоидов и совсем не было реалити-шоу, которые представляют собой последнюю стадию вуайеризма. Невероятно, что сегодня творится на телевидении. Если бы Диллинджер восстал из могилы и увидел все это, то сбежал бы куда подальше от безумия, к которому мы привыкли. Технический прогресс явно изменил наше сознание.

+

- Что делает вас мужчиной?

+

- Смена пола сделала меня мужчиной (смеется). Если серьезно, папаша получился из меня довольно-таки хороший, как мне кажется. Я стараюсь быть честным с собой и с теми, кого люблю.

+

- Разве роль мужчины не ассоциируется у вас с храбростью, отвагой, уверенностью в себе?

+

- Не знаю, насколько я отважен. А для того, чтобы это узнать, мне нужно оказаться в определенных обстоятельствах, а иначе никогда не угадаешь.

+

- А что в таком случае делает вас женщиной?

+

- Опять смена пола. Я то и дело перебегаю из одного пола в другой - туда-сюда, туда-сюда. А почему бы и нет?

+

- Вы сравнивали себя с Диллинджером, который тоже жил на грани, пренебрегая своим здоровьем.

+

- Я жил на грани довольно-таки короткий период времени.

+

- Однако вам нравится играть антигероев и бунтарей.

+

- Не думаю, что из меня получился бы хороший супермен и что мне подошло бы его трико.

+

- У вас вроде бы есть все, о чем многие только могут мечтать: дома, яхта, остров. Как думаете, смогли бы вы обойтись без всего этого?

+

- Бывает, я не хочу, чтобы меня спрашивали о кино и славе. Вместо этого мне хочется просто сидеть у себя на крылечке и пускать слюни.

+

Корреспондент Галкина Галя

+

Сообщество Все о Джонни Деппе. 18+

+

Основной источник: https://www.trud.ru/article/23-07-2009/225658_dzhonni_depp_inogda_mne_xochetsja_sidet_na_krylechke_i_puskat_sljuni.html

+

Фото: Инстаграм jdismyreligion

",,,,,,,,,,,,#СТАТЬИ_и_ИНТЕРВЬЮ,StarterPetitionUpdate,28238094.0,2020-12-17 17:27:00+00:00,,the-governors-of-the-states-california-texas-virginia-and-to-johnny-depp-usa-save-the-life-of-johnny-depp-and-his-career,"{'id': '224984915', 'petitionMedium': {'url': '//assets.change.org/photos/9/hj/up/wFhjUPrdCjMqUHA-800x450-noPad.jpg?1608226021', 'processing': False}}",,,,against +80,https://www.change.org/p/royal-courts-of-justice-justice-for-johnny-depp,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28240652.0,2020-12-18 02:39:52+00:00,5.0,royal-courts-of-justice-justice-for-johnny-depp,,,,,against +81,https://www.change.org/p/warner-brothers-studios-warner-bros-must-publicly-apologise-to-johnny-depp,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28272700.0,2020-12-27 09:15:32+00:00,500.0,warner-brothers-studios-warner-bros-must-publicly-apologise-to-johnny-depp,,,,,against +82,https://www.change.org/p/movie-fans-emilia-clarke-should-replace-amber-heard-as-mera-in-aquaman-2-movie,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28179091.0,2020-12-07 03:22:33+00:00,50.0,movie-fans-emilia-clarke-should-replace-amber-heard-as-mera-in-aquaman-2-movie,,,,,against +83,https://www.change.org/p/warner-brothers-replace-amber-heard-with-scarlet-johanson,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28173681.0,2020-12-05 19:44:56+00:00,5.0,warner-brothers-replace-amber-heard-with-scarlet-johanson,,,,,against +84,https://www.change.org/p/warner-brothers-remove-amber-heard-as-mere-in-aqua-man-2,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28287794.0,2020-12-31 13:21:39+00:00,200.0,warner-brothers-remove-amber-heard-as-mere-in-aqua-man-2,,,,,against +85,https://www.change.org/p/warner-brothers-remove-amber-heard-as-mere-in-aqua-man-2,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28153966.0,2020-12-02 05:31:46+00:00,100.0,warner-brothers-remove-amber-heard-as-mere-in-aqua-man-2,,,,,against +86,https://www.change.org/p/support-amber-heard-in-aquaman-2-her-life-and-public-safety-to-save-lives-warner-bros-mera-loreal-united-nations-aclu,0,0,0,0,,petitions_milestones,,"

Despite facing bots swarm tech, such as under a video on The Stand, Congrats to Amber Heard being Woman of the Year 2020 from The Times, Sun, and of becoming a speaker at Harry Walker! We hope the world online becomes more equal for women!

+

The Times: ""She has become a vocal campaigner on the issue of domestic and sexual abuse as an ambassador for women’s rights for the American Civil Liberties Union (ACLU).""

+

The Sun: ""On November 2, following a four-week trial, a judge ruled that the allegations against Depp, 57, were “substantially true” and that he was violent towards Amber.

+

Domestic violence charities have hailed the outcome a victory that will hopefully encourage other victims to speak out and seek justice.

+

Karen Ingala Smith, CEO of domestic violence charity Nia, praised Amber’s courage, saying: “I would like to acknowledge the bravery of Heard in naming the abuse that she was subjected to.”""

+
    +
  • The Hollywood Reporter, further, showed that Amber's ex, Depp, sent an abusive voicemail to his first wife, Lori, requiring a $1.25 million settlement in ""He's Radioactive.""
  • +
+

""Sources say he paid his first wife, Lori Anne Allison, $1.25 million to keep quiet after he allegedly left a long ranting message in which he repeatedly used the N-word. The previously unreported settlement was accomplished using fictitious names to avoid scrutiny, with Richard Green serving as the stand-in for Johnny Depp.""

+

Unfortunately, the online warfare to demean progress for women worldwide - people of my team know that female leaders in South America were removed because of online cyberabuse - continues.

+

Amber Heard may be in entertainment, but she's historically been highly political, highly an activist, and a humanitarian.

+

Contrary to former belief, the social technology companies are not liberal on the backend. Stereotypes abound against women and internationals in their training and actions, which is backed up by repeated people defying their NDA contracts. Pinterest's ex-COO recently won $22 million in a settlement about gender discrimination. The world is catching onto *environments* and *livability* online, as well as training, but meanwhile, we have to see people like Amber Heard struggle.

+

From real tests and studies, people will sign petitions, ""join in,"" and more even when they see bots signing. These leaders in tech do not go out and tell them that they're wrong. It's completely enabled, just like as part of the institutions Amber discussed in 2018.

+
    +
  • Though Change.org shut down at least 4 abusive comment sections on petitions against Amber, deleted possibly two hate petitions, and the number of 253 in search related to her name has decreased to 241, they still never put reCAPTCHA onto the large hate petition against her.
  • +
+

In fact, you can tell from the ratio of low amounts of comments, likes, and so on compared to 'signatures' that the petitions are usually increased to a set amount to gain attention via machine learning bot experts.

+

See this short video about the Bots Swarm the days just before Xmas! Happy 'holidays' or should I say, why should coders from reddit hate groups have more of a say than our own leaders?

+

By the way, it's online retaliation... Let's say maybe the internet differed during #MeToo. If it was different, though studies are as old as 2007, it's now fully controlled by 'men's rights' and other extremist groups. Anyone can hire them, but women in machine learning and AI is rare. In fact, it can just be 17% women in AI according to Coded Bias documentary. 

+

Did you know that it's reported that Women's Shelters in Turkey are No Longer Safe because of (likely mostly online) retaliatory abuse against a Woman, Deniz Bulutsuz, who reported her Male Partner, a charismatic Actor, for violence? Just switch the names with Amber Heard and Depp.

+
    +
  • In reality, anyone who rationalizes abuse against Amber Heard is statistically and scientifically wrong in thinking that they're not harming women's safety and progress by doing so. It's proven in *real life* such as the danger increasing in Turkey due to the rationalized domestic abuse against women that it harms equality.
  • +
+

Basically, Johnny Depp has become the face of men's rights hate groups online with 'simp' and similar lingo following everywhere online on any website. A Forbes Op-Ed from Jeetendr Sehdev supports his removal from Dior's ""sauvage/savage"" perfume as well as pointing out bots. His profile states he is for HeForShe, a United Nations campaign of men helping women.

+

July 15, 2020 in Turkey: ""The high-profile domestic abuse case of a popular actor shows violence against women is accepted, and even defended when it comes to powerful men.""

+

""Known for his portrayal of ambitious, hot-tempered and abusive characters in two of Turkey’s top-rated soaps — “Phi” and “Magnificent Century” — Guven became headline news in July when his girlfriend, Deniz Bulutsuz, filed a case against him for violence and physical abuse. Guven may face up to 13 years of imprisonment.

+

“So Guven is Can Manay after all,” said one tweet, referring to the main character in the Turkish..."" Recently, Turkey moved to leave the Istanbul Convention Against Violence Against Women which is ratified in Europe.

+

https://www.al-monitor.com/pulse/originals/2020/07/turkey-istanbul-convention-violence-against-women-on-rise.html

+

You can learn more about the traits of Swarm Tech (using multiple simple robots which commenting, dislike, and like bots are for coordination) which is called 'dangerous': https://www.hcltech.com/blogs/swarm-robotics-new-coordinated-multi-robot-technology

+

Amber Heard vs Bots Swarm Tech, Depp, Waldman - Coded Bias 2020 - The Stand:

+

https://youtu.be/w57Tf3JS7u4

+

Showing #Bots against Amber Heard created from #MachineLearning Coders and Hate Groups which were incited by Adam Waldman and Johnny Depp. Coded Bias shows Tay the Bot created on Twitter. ""The largest 21st century story."" - 2020 shows The Stand pandemics & Artificial Intelligence for Bad.

+

On Nov 2, Judge Nicol ruled 12/14 violent incidents were valid against Amber and that she Feared for her Life from her ex-husband.

+

Bots under the video ""Amber Heard's 2020 Takeaway: 'Adapt & Survive'"" login with an account, dislike, post same comment, like other comments of accounts tagged as part of the Swarm, logout, login with new account, & repeat. It's automatic & can be from one bot with multiple bats.

+
    +
  • ""WE GOT 1.35 million VOTES and we will continue NO MATTER THE COST"" says PTEGaming in a reddit hate group 1 month before the Bot Swarm under AccessHollywood's video with Amber Heard: https://youtu.be/uretrfMA-Io
  • +
+

""It's ironic the topics of The Stand"" and of Black Mirror's Nosedive episode from 4 years ago.

+

After much investigation & reporting, it's clear social platform companies refuse to stop cyberabuse because of No Discrimination Laws Online.

+

Add reCAPTCHA:

+

Bots have been reported for 6 months now via Forbes, The Times, Hollywood Reporter.

+

4 Change petitions had abusive comments closed. It causes repeated death, physical, coercive threats based on imaginary numbers increasing consistently per day. It causes what would be hate crimes in countries overseas. They already had to use a police escort in July.

+

""Many of them are bots, their objective is to bully, demean, sway, or drown out opinions... They've started pointless petitions, angry tweets, and continued their threats towards his ex-wife, Amber Heard, Judge Nicols, and even myself for speaking out."" https://www.forbes.com/sites/jeetendrsehdev/2020/11/09/heres-why-dior-needs-to-ditch-brand-ambassador-johnny-depp

+

""According to a report from the well-respected Times of London, NY Law Firm Kaplan Hecker & Fink employed Bot Sentinel, a group that uses artificial intelligence to detect and track troll bots & suspect Twitter accounts, to assess anti-Amber Heard tweets and to investigate if the actress “had been a victim of an ongoing targeted harassment and smear campaign.”

+

The concluding report claims to have identified active inauthentic accounts created specifically to target... account[s] of Ms Heard and two anti-Amber Heard change.org petitions asking she be fired from two high profile projects. The report says “we noted the suspicious timing and strange activity associated with the petitions.”

+

“While monitoring the Remove Amber Heard from Aquaman 2 petition, we observed a significant number of fraudulent signatures, and we estimate 1 out of every 3 signatures were conspicuously fake or highly suspicious.”

+

Tweets are being automated and implies associates of Mr. Depp could have instructed bot specialists to do the job... report also says “accounts that were targeting Ms Heard were also promoting and Praising Adam Waldman… it was unusual that inauthentic accounts were tweeting about Mr. Waldman and using similar talking points.”"" https://www.thegeekbuzz.com/the-basement/troll-bots-positively-identified-in-cyber-warfare-against-aquaman-actress-amber-heard

+

Hollywood Reporter:

+

""Bots amplifying... ""Our clients are suing the white supremacists and neo-Nazis responsible for the violence in Charlottesville. I have clients who are suing Donald Trump. But, by far, the one case that has generated the greatest amount of hostile social media attacks is Johnny Depp v. Amber Heard. Not even close."""" https://www.hollywoodreporter.com/features/hes-radioactive-inside-johnny-depps-self-made-implosion

+

Amber Heard's Counterclaim filed in August 2020 counters with breaking a law in Virginia against harassment via computer:

+

""10. As part of his ongoing smear campaign, Mr. Depp and/or his agents acting on his behalf have directed both authentic and inauthentic social media accounts, and/or non-human controlled “bots,” to target Ms. Heard. .. The talking points in these accounts are strikingly similar but use slightly different text and content to evade [detection]

+

11. There are a number of newly created... accounts specifically or predominantly designed to damage Ms. Heard. Many of these accounts have Cyrillic signatures... ...which inauthentic accounts... amplify, which further evidence a coordinated smear campaign...

+

16. Mr. Depp, through his agents and attorneys in Virginia, including specifically Waldman, have engaged in a campaign to harass and damages Ms. Heard through the use of computers and computer accessible vehicles. This conduct also has the potential effect of polluting the jury pool ....

+

37. In December 2018, Ms. Heard published an op-ed in the Washington Post calling for “changes to laws and rules and social norms”

+

It perpetuates abuse towards women and other victims online who have gone into the crossfires.""

+

Since we're in technology, we'll continue to point out the discrimination.

+

Enjoy Wonder Woman's release onto HBO Max today - Dec 25! Have to say it was inspiring and better than the first in 2017. It's directed by a woman, Patty Jenkins, and Diana is frequently shown saving girls and women in the movie.  

+

We hope that 2021 is better for Amber Heard, but it's very challenging due to this wild west technology era. Stay tuned? Stay tuned for diversity and inclusion groups finding out how ML and AI is created! We hope progress advances online.

",,,,,,,,,,,,"Amber Heard vs Bots Swarm Tech as ""Woman of the Year"" 2020 - ""Adapt & Survive!"" The Stand - Evidence",StarterPetitionUpdate,28269833.0,2020-12-26 04:00:19+00:00,,support-amber-heard-in-aquaman-2-her-life-and-public-safety-to-save-lives-warner-bros-mera-loreal-united-nations-aclu,,"{'photo': {'id': '225029064', 'petitionMedium': {'url': '//assets.change.org/photos/7/ln/fz/iHLnFZKBxRJPPbY-800x450-noPad.jpg?1609510489', 'processing': False}}}",,,for +87,https://www.change.org/p/warner-brothers-support-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28151640.0,2020-12-01 20:04:16+00:00,10.0,warner-brothers-support-amber-heard-in-aquaman-2,,,,,for +88,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,1500.0,,,,,,,,,,,MilestonePetitionUpdate,28284634.0,2020-12-30 17:19:50+00:00,1500.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +89,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28281860.0,2020-12-29 21:22:52+00:00,1000.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +90,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28280749.0,2020-12-29 16:08:32+00:00,750.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +91,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28276394.0,2020-12-28 14:24:15+00:00,500.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +92,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28272178.0,2020-12-27 03:17:46+00:00,250.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +93,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28271361.0,2020-12-26 19:57:36+00:00,200.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +94,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28270154.0,2020-12-26 09:11:22+00:00,100.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +95,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28269579.0,2020-12-26 00:46:05+00:00,50.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +96,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28269395.0,2020-12-25 22:39:35+00:00,25.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +97,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28269061.0,2020-12-25 19:44:53+00:00,10.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +98,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28246055.0,2020-12-19 07:23:07+00:00,5.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +99,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28227589.0,2020-12-15 22:12:31+00:00,5.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +100,https://www.change.org/p/state-of-california-file-criminal-charges-against-people-that-falsify-evidence-in-domestic-violence-cases,0,0,0,0,,petitions_milestones,,,,2000.0,,,,,,,,,,,MilestonePetitionUpdate,28178435.0,2020-12-06 23:25:16+00:00,2000.0,state-of-california-file-criminal-charges-against-people-that-falsify-evidence-in-domestic-violence-cases,,,,,against +101,https://www.change.org/p/everyone-boycott-warner-brothers-for-blatantly-ignoring-the-proof-that-jonny-depp-is-innocent,0,0,0,0,,petitions_milestones,,,,2500.0,,,,,,,,,,,MilestonePetitionUpdate,28185191.0,2020-12-08 08:55:25+00:00,2500.0,everyone-boycott-warner-brothers-for-blatantly-ignoring-the-proof-that-jonny-depp-is-innocent,,,,,against +102,https://www.change.org/p/warner-brothers-boycott-warner-bros,0,0,0,0,,petitions_milestones,,,,15000.0,,,,,,,,,,,MilestonePetitionUpdate,28186559.0,2020-12-08 15:18:44+00:00,15000.0,warner-brothers-boycott-warner-bros,,,,,against +103,https://www.change.org/p/warner-brothers-boycott-warner-bros,0,0,0,0,,petitions_milestones,,,,12500.0,,,,,,,,,,,MilestonePetitionUpdate,28169444.0,2020-12-04 20:37:59+00:00,12500.0,warner-brothers-boycott-warner-bros,,,,,against +104,https://www.change.org/p/warner-brothers-boycott-warner-bros,0,0,0,0,,petitions_milestones,,,,10000.0,,,,,,,,,,,MilestonePetitionUpdate,28154972.0,2020-12-02 11:14:59+00:00,10000.0,warner-brothers-boycott-warner-bros,,,,,against +105,https://www.change.org/p/warner-brothers-boycott-warner-bros,0,0,0,0,,petitions_milestones,,,,9000.0,,,,,,,,,,,MilestonePetitionUpdate,28151577.0,2020-12-01 19:52:27+00:00,9000.0,warner-brothers-boycott-warner-bros,,,,,against +106,https://www.change.org/p/warner-brothers-boycott-warner-bros,0,0,0,0,,petitions_milestones,,,,8000.0,,,,,,,,,,,MilestonePetitionUpdate,28147996.0,2020-12-01 04:58:13+00:00,8000.0,warner-brothers-boycott-warner-bros,,,,,against +107,https://www.change.org/p/johnny-depp-as-jack-sparrow-bring-back-johnny-depp-as-jack-sparrow,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28218334.0,2020-12-14 12:30:55+00:00,5.0,johnny-depp-as-jack-sparrow-bring-back-johnny-depp-as-jack-sparrow,,,,,against +108,https://www.change.org/p/hollywood-boycott-aquaman-2-amber-heard,0,0,0,0,,petitions_milestones,,,,17500.0,,,,,,,,,,,MilestonePetitionUpdate,28198563.0,2020-12-10 15:50:37+00:00,17500.0,hollywood-boycott-aquaman-2-amber-heard,,,,,against +109,https://www.change.org/p/hollywood-boycott-aquaman-2-amber-heard,0,0,0,0,,petitions_milestones,,,,15000.0,,,,,,,,,,,MilestonePetitionUpdate,28170901.0,2020-12-05 04:01:49+00:00,15000.0,hollywood-boycott-aquaman-2-amber-heard,,,,,against +110,https://www.change.org/p/hollywood-boycott-aquaman-2-amber-heard,0,0,0,0,,petitions_milestones,,,,12500.0,,,,,,,,,,,MilestonePetitionUpdate,28149599.0,2020-12-01 14:03:12+00:00,12500.0,hollywood-boycott-aquaman-2-amber-heard,,,,,against +111,https://www.change.org/p/who-ever-makes-the-movie-keep-amber-heard-as-mera,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28253380.0,2020-12-21 09:58:41+00:00,10.0,who-ever-makes-the-movie-keep-amber-heard-as-mera,,,,,for +112,https://www.change.org/p/who-ever-makes-the-movie-keep-amber-heard-as-mera,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28153909.0,2020-12-02 05:06:46+00:00,5.0,who-ever-makes-the-movie-keep-amber-heard-as-mera,,,,,for +113,https://www.change.org/p/johnny-s-fans-to-get-johnny-depp-s-career-back,0,0,0,0,,petitions_milestones,,

Thank you to everyone who has decided to come and sign this petition and I’m so greatful for you all.

,,,,,,,,,,,,"100,000 people",StarterPetitionUpdate,28275255.0,2020-12-28 04:03:04+00:00,,johnny-s-fans-to-get-johnny-depp-s-career-back,,,,,against +114,https://www.change.org/p/johnny-s-fans-to-get-johnny-depp-s-career-back,0,0,0,0,,petitions_milestones,,,,100000.0,,,,,,,,,,,MilestonePetitionUpdate,28264110.0,2020-12-23 22:43:03+00:00,100000.0,johnny-s-fans-to-get-johnny-depp-s-career-back,,,,,against +115,https://www.change.org/p/johnny-s-fans-to-get-johnny-depp-s-career-back,0,0,0,0,,petitions_milestones,,

I am so grateful for those who have signed and want to make a change in someone’s life for the good. I have always loved watching Johnny depp movies my whole life. I will always watch Johnny depp movies before anything else. 

,,,,,,,,,,,,Reaching more people,StarterPetitionUpdate,28205028.0,2020-12-11 17:32:38+00:00,,johnny-s-fans-to-get-johnny-depp-s-career-back,,,,,against +116,https://www.change.org/p/johnny-s-fans-to-get-johnny-depp-s-career-back,0,0,0,0,,petitions_milestones,,,,75000.0,,,,,,,,,,,MilestonePetitionUpdate,28201202.0,2020-12-11 00:49:59+00:00,75000.0,johnny-s-fans-to-get-johnny-depp-s-career-back,,,,,against +117,https://www.change.org/p/johnny-s-fans-to-get-johnny-depp-s-career-back,0,0,0,0,,petitions_milestones,,,,50000.0,,,,,,,,,,,MilestonePetitionUpdate,28195300.0,2020-12-10 00:08:59+00:00,50000.0,johnny-s-fans-to-get-johnny-depp-s-career-back,,,,,against +118,https://www.change.org/p/johnny-s-fans-to-get-johnny-depp-s-career-back,0,0,0,0,,petitions_milestones,,,,40000.0,,,,,,,,,,,MilestonePetitionUpdate,28191236.0,2020-12-09 10:14:11+00:00,40000.0,johnny-s-fans-to-get-johnny-depp-s-career-back,,,,,against +119,https://www.change.org/p/johnny-s-fans-to-get-johnny-depp-s-career-back,0,0,0,0,,petitions_milestones,,,,35000.0,,,,,,,,,,,MilestonePetitionUpdate,28187273.0,2020-12-08 17:29:05+00:00,35000.0,johnny-s-fans-to-get-johnny-depp-s-career-back,,,,,against +120,https://www.change.org/p/johnny-s-fans-to-get-johnny-depp-s-career-back,0,0,0,0,,petitions_milestones,,,,30000.0,,,,,,,,,,,MilestonePetitionUpdate,28173592.0,2020-12-05 19:22:04+00:00,30000.0,johnny-s-fans-to-get-johnny-depp-s-career-back,,,,,against +121,https://www.change.org/p/johnny-s-fans-to-get-johnny-depp-s-career-back,0,0,0,0,,petitions_milestones,,,,25000.0,,,,,,,,,,,MilestonePetitionUpdate,28163139.0,2020-12-03 18:35:33+00:00,25000.0,johnny-s-fans-to-get-johnny-depp-s-career-back,,,,,against +122,https://www.change.org/p/johnny-s-fans-to-get-johnny-depp-s-career-back,0,0,0,0,,petitions_milestones,,,,20000.0,,,,,,,,,,,MilestonePetitionUpdate,28154325.0,2020-12-02 07:47:47+00:00,20000.0,johnny-s-fans-to-get-johnny-depp-s-career-back,,,,,against +123,https://www.change.org/p/johnny-s-fans-to-get-johnny-depp-s-career-back,0,0,0,0,,petitions_milestones,,,,17500.0,,,,,,,,,,,MilestonePetitionUpdate,28150963.0,2020-12-01 18:05:36+00:00,17500.0,johnny-s-fans-to-get-johnny-depp-s-career-back,,,,,against +124,https://www.change.org/p/johnny-s-fans-to-get-johnny-depp-s-career-back,0,0,0,0,,petitions_milestones,,,,15000.0,,,,,,,,,,,MilestonePetitionUpdate,28147540.0,2020-12-01 02:26:46+00:00,15000.0,johnny-s-fans-to-get-johnny-depp-s-career-back,,,,,against +125,https://www.change.org/p/warner-bros-petition-to-bring-johnny-depp-back-in-fantastic-beasts,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28268157.0,2020-12-25 09:52:41+00:00,250.0,warner-bros-petition-to-bring-johnny-depp-back-in-fantastic-beasts,,,,,against +126,https://www.change.org/p/warner-bros-petition-to-bring-johnny-depp-back-in-fantastic-beasts,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28230166.0,2020-12-16 09:41:17+00:00,200.0,warner-bros-petition-to-bring-johnny-depp-back-in-fantastic-beasts,,,,,against +127,https://www.change.org/p/warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,3000.0,,,,,,,,,,,MilestonePetitionUpdate,28273353.0,2020-12-27 15:09:15+00:00,3000.0,warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,,,,,against +128,https://www.change.org/p/warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,2500.0,,,,,,,,,,,MilestonePetitionUpdate,28264714.0,2020-12-24 02:48:34+00:00,2500.0,warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,,,,,against +129,https://www.change.org/p/warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,2000.0,,,,,,,,,,,MilestonePetitionUpdate,28240477.0,2020-12-18 01:47:32+00:00,2000.0,warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,,,,,against +130,https://www.change.org/p/warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,1500.0,,,,,,,,,,,MilestonePetitionUpdate,28201807.0,2020-12-11 03:12:09+00:00,1500.0,warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,,,,,against +131,https://www.change.org/p/warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28170347.0,2020-12-05 00:34:41+00:00,1000.0,warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,,,,,against +132,https://www.change.org/p/warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28149341.0,2020-12-01 12:53:43+00:00,750.0,warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,,,,,against +133,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

There isn’t much going on between Johnny Depp and Amber Heard these days. There isn’t any new news about Johnny Depp’s appeal in the high court of London regarding his libel suit against the Sun tabloid for calling him a Wife-Beater.

+

And there isn’t much new that’s going on in Fairfax county. A few new subpoenas or motions get posted now and again, laying all the groundwork. But nothing too earth-shattering.

+

Johnny seems to be upbeat, carrying on with the task of being fabulous Johnny Depp. There are whispers of upcoming projects that might include the Addams Family and maybe even Beetlejuice.

+

Amber Heard has been keeping up the appearance of being an active actress and relevant activist, putting her speaking services on the market. For a mere 30 grand a pop, you can hire Heard to give a motivational speech about surviving hardship, civil liberties, or some such.

+

Neither one of them seems to be addressing the upcoming defamation court case. Maybe there’s nothing new to talk about, or maybe they’re both playing the long game.

+

Me, I think it’s the calm before the storm. We still haven’t seen the majority of the footage from the Eastern Columbia building’s surveillance system, and we’re waiting with bated breath for the Toronto tapes. When those hit the public purview, nothing’s going to be the same.

+

Why didn’t we see this evidence in the Sun trial? Because the Sun had nothing to do with the Eastern Columbia building. The Sun had nothing to do with Toronto.

+

Too many people lost sight of the fact that the Sun trial wasn’t between Johnny Depp and Amber Heard. It was against Johnny Depp and The Sun. Amber Heard was only a witness.

+

The Fairfax, VA trial is between Johnny Depp and Amber Heard. As such, ALL the evidence comes into play. And I sincerely doubt that we’ve even scratched the surface with all the evidence we’ve seen so far. If I were on Johnny Depp’s legal team, I’d save the best for last, pulling out the aces when the time’s right. When it’s so damning that Amber Heard will have absolutely no defense. When it will well and truly screw her, finally revealing her for who and what she is, what she did, and holding her accountable for it.

+

We want to see the worst of it so that we can commiserate with Johnny and support him. But we also want him to prevail. We want him to win so that he can clear his good name, once and for all.

+

Wait for it, folks. Things might be quiet now, but I’m betting that the very best is yet to come.

",,,,,,,,,,,,The Calm Before the Storm,StarterPetitionUpdate,28288452.0,2020-12-31 17:35:44+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225027246', 'petitionMedium': {'url': '//assets.change.org/photos/2/cj/hy/cqCJhyftbHttrMb-800x450-noPad.jpg?1609436145', 'processing': False}}",,,,against +134,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Johnny Depp posted a hopeful message to his 9 million Instagram followers:

+

“This year has been so hard for so many. Here’s to a better time ahead. Happy Holidays, everyone! My love and respect to you all. Eternally, JD. X” He posted it with a picture of himself looking happy and well with Shane MacGowan on the set of the documentary Crock of Gold, which Depp produced.

+

That post has received over  1,965,562 likes.

+

On the flip side of the same token, Amber Heard was interviewed by Access Hollywood in a new video on YouTube talking about how she’s adapted and survived 2,000, including her legal troubles with Johnny Depp.

+

That video has received over 283,000 DISlikes.

+

Likewise, the comments on that video are heavily laden with sentiments supporting Johnny Depp, identifying with him as the victim of Amber Heard’s abuse. “They won’t believe you, because you are a man” many commenters post, due to an audio in which Amber Heard taunted Johnny saying that people wouldn’t believe that he was in fact an abuse victim. They call Amber out for portraying herself as the victim when the opposite is in fact true, by her own admission. “I was hitting you,” She confessed to Johnny on tape. And the public won’t let her forget it.

+

Considering the number of likes Johnny Gets compared to the number of dislikes and negative comments Heard gets, I think it’s pretty clear how the public feels about the two of them. 

",,,,,,,,,,,,Messages from Depp and Heard,StarterPetitionUpdate,28277591.0,2020-12-28 19:52:40+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225018363', 'petitionMedium': {'url': '//assets.change.org/photos/5/wo/hd/UnwOHdPdbybJVaq-800x450-noPad.jpg?1609185161', 'processing': False}}",,,,against +135,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Johnny Depp has asked the Court of Appeal to order a retrial of his libel claim against The Sun over an article calling him a “wife beater”, which a High Court judge found was “substantially true”. Justice Nicol, the judge in the case, basically believed Amber Heard’s claims that she was abused, and found that the Sun, therefore, had every right to call Depp a “wife beater” on their front page.

+

Since this ruling, many tabloids, which I will not link to here, have run rampant, calling Depp a wife-beater and just about everything else in the book.

+

Johnny’s request for a retrial claims that he “did not receive a fair trial” and the judge’s ruling is “plainly wrong” and “manifestly unsafe”, according to documents filed by Mr. Depp’s legal team with the Court of Appeal.

+

Says David Sherborne, counsel for Johnny Depp: “The judge failed to properly assess [Heard’s] credibility by reference to documentary evidence, photographs, recordings or otherwise.” He further claimed that audio recordings of Mr Depp and Ms Heard while they were in a relationship demonstrated that “Ms Heard had not only been the violent one … but that she had also been untruthful in her oral evidence about the appellant’s violence”.

+

You can view the documents Johnny’s legal team filed on Nickwallis.com.

+

NGN will have to file a response and then a decision will be taken by a Court of Appeal judge on whether or not to allow the application (this can be done with or without a hearing). A decision could come down as early as January. If Depp’s request for a retrial is dismissed, it’s all over and Nicol’s judgment stands.

+

At that point, Johnny’s only recourse against his ex-wife (Heard) will be his upcoming defamation suit against her resulting from her op-ed in the Washington Post, in which she describes herself as a survivor of his domestic abuse. She doesn’t name him specifically in that piece, but she’s been naming him ever since their split in every other outlet, so her message was clear and obvious.

+

Here’s hoping the new year brings Johnny the vindication he deserves.

+

SOURCE
Hat tip to Nick Wallis

",,,,,,,,,,,,Johnny Depp requests retrial,StarterPetitionUpdate,28266946.0,2020-12-24 19:56:57+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225009638', 'petitionMedium': {'url': '//assets.change.org/photos/8/ud/fq/hJuDFQaLckQcyJT-800x450-noPad.jpg?1608839819', 'processing': False}}",,,,against +136,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Up until now, most of the fallout from Johnny Depp’s legal woes with ex-wife Amber Heard has been at Johnny Depp’s expense. Now, a lot of folks on the internet are campaigning to see Heard suffer the same treatment. In fact, the petition to remove her from Aquaman 2 is nearing a staggering 2 million signatures. And while WB has yet to announce any plans to hire another actress for the role, it seems that they’re trying to come up with a compromise.

+

With all of this going on, it looks like WB is gearing up to either reduce Amber Heard’s role in Aquaman 2 or write her out altogether.

+

According to Grace Randolph, the host of the “Beyond The Trailer” YouTube channel, the studio is bringing on another female lead to ‘balance things out.’

+

“Some of you are asking re Amber Heard – as I told you before, they are bringing on this new female lead to balance things out, and writing the script so that Heard’s role can be cut down if needed. But as of right now she’s still in Aquaman 2,” the journalist wrote on her Twitter feed. 

+

As we learned last month, Warner Bros. may not be able to fire the London Fields star if it comes to it due to her contract. What they can do, however, is find a way to sideline her character in favor of a newcomer in Aquaman 2. To what extent they’ll do so, though, is anyone’s guess at this point.

+

Another source has maintained that al of this speculation is pointless, as Amber Heard has already been removed from Aquaman 2. If those sources are to be believed, it’s true that Amber Heard can’t be officially fired, but that she’s been bought out of her contract. Pretty much the same situation as Johnny Depp and Fantastic Beasts. They fired Johnny, but paid his contract. That’s what it’s rumored happened to heard. They basically paid her not to be in Aquaman 2.

+

Aquaman 2 is due to start shooting in Australia after the new year ahead of its scheduled release in December 2022. Time will tell if Heard will be involved. It’s entirely possible that the new female lead isn’t just being brought on board to “balance things out.” She might be Heard’s replacement.

+

Good.

+

SOURCE
SOURCE

",,,,,,,,,,,,Amber Heard AM2 role shrinking,StarterPetitionUpdate,28262754.0,2020-12-23 16:14:24+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225006281', 'petitionMedium': {'url': '//assets.change.org/photos/8/yf/xa/okyFxAVdtJBCRas-800x450-noPad.jpg?1608740066', 'processing': False}}",,,,against +137,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Two years to the day after Amber Heard published an editorial describing the backlash she faced as a domestic abuse survivor, a Virginia judge ordered the actress to produce her arrest record in the defamation case filed against her by ex-husband Johnny Depp.

+

Her arrest record, which involves an altercation with a different romantic partner more than a decade ago, is “crucial to key allegations in Mr. Depp’s complaint,” said the actor’s lawyer, Benjamin Chew of Brown Rudnick, during a hearing Friday in Fairfax County. 

+

Thing is, though, that I’m pretty sure there have been more arrests than Heard’s 2009 arrest for domestic violence against her wife Tasya Van Ree. As I understand it, there have been a couple of DUI’s and rumor has it that there was at least one other arrest for domestic violence. I don’t know against whom, but it looks like we’re going to find out.

+

If this is true and Amber Has multiple arrests against her for domestic violence, it could be crucial in helping Johnny Depp establish that it was Heard who was violent in their relationship.

+

On the same day, a subpoena was issued to the ACLU, one of the organizations to which Heard swears she donated part of her 7 million dollar divorce settlement. It  has long been rumored that Heard didn’t donate to these organizations as she swore in her divorce documents, legal court documents, that she would.

+

I don’t know exactly what could happen to Heard if she kept the money and didn’t donate it, or didn’t donate all of it, like she said she would. Contempt of court, maybe? Or would this even be grounds for the divorce to be revisited? Could she owe that money back to Johnny? We’ll have to wait and see what the fallout is, but the fact is that she will now have to prove in a court of law what she did with that money.

+

If nothing else, it goes to her credibility if she swore to donate that money and didn’t. Not that her credibility holds much weight anymore.

+

Three days later, the court issued a subpoena for iO Tillet Wright, longtime friend and flying monkey of Heard’s. The service notice doesn’t say whether it was Heard’s side or Johnny’s that requested the subpoena. It would be interesting to see who called iO. It’ll be even more interesting to see how far iO is willing to go to perjure himself for Heard. It’s one thing to lie to a court abroad where they can’t touch you. It’s another thing to perjure oneself in America where they can easily find you and level perjury charges. It’ll be interesting to see how far any of her friends are willing to perjure themselves.

+

It bears note that some of those previously pro-Heard folks are deleting their social media en masse. I don’t know if it’s related to the defamation case that’s looming ever larger, but it’s certainly possible.

+

By all accounts, it looks like Amber Heard’s legal world is crashing down on her. I wonder what her response will be when Johnny wins his defamation case, and then wins his appeal in the libel case he leveled against the Sun tabloid and subsequently lost. I wonder what the whole world’s reaction will be. So many have been so quick to vilify him. I wonder how quick they’ll be to vindicate him.

+

Time alone will tell.

+

SOURCE

",,,,,,,,,,,,The latest,StarterPetitionUpdate,28247422.0,2020-12-19 17:12:14+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '224992988', 'petitionMedium': {'url': '//assets.change.org/photos/8/yl/cd/oCYLCdbJGQYxGAZ-800x450-noPad.jpg?1608397936', 'processing': False}}",,,,against +138,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Amber gets on board with Prince Harry & Megan Markle’s public speaking agency. The public speaking agency is based out of New York, called The Harry Walker agency.

+

The agency has even made a statement regarding Amber’s entry into the agency. On their official website, Amber Heard is described her as “An outspoken advocate for women’s rights and for the civil rights of survivors of all gender-based violence around the world, Amber works with organizations that encourage survivors both personally and politically to come forward and reclaim their power. Amber makes frequent trips to DC to lobby and fight on behalf of the civil rights of women and the innumerable silent survivors of gender-based violence.”

If you’d like to hire her to speak at your event, she can be booked for the princely sum of $33,000. The agency describes her talks as “deeply moving” and says that hiring her is an excellent choice for a group or organization that’s looking for “some much-needed inspiration from a woman who walks day-to-day looking to be a contribution.”

+

There are, of course, those who would vehemently disagree. A large contingency of the public view Heard as a woman who abused her ex-husband Johnny Depp, as she admitted as much on audiotape. Those people find it ludicrous that Heard should dare to claim to be a spokesperson for survivors when she herself is an admitted abuser with a history of being arrested for domestic abuse against wife Tasya Van Ree in 2009.

+

Heard has already spoken at the Global Citizen Festival, the Social Good Summit and the L’Oreal Women of Worth awards, leading the reader to believe that Heard was paid to speak at those events. So, with a payday of up to $33,000 per appearance, her outpouring of heartfelt civic duty doesn’t exactly come across as altogether altruistic, does it? Rather, she seems motivated by the payday, which some would argue has always been her only impetus.

+

I for one will be interested to see how many people or organizations will hire Heard to speak for such a hefty payday. As more and more evidence comes out about the sort of person she really is, I can only imagine that this prospect will fail for her, just like all the rest of them do.

+

SOURCE

",,,,,,,,,,,,You can now hire Amber Heard to speak,StarterPetitionUpdate,28238185.0,2020-12-17 17:45:23+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '224985003', 'petitionMedium': {'url': '//assets.change.org/photos/0/ng/xm/JtnGxMYFoTxkaCO-800x450-noPad.jpg?1608227125', 'processing': False}}",,,,against +139,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Many people have sworn to boycott Stephen King’s ‘The Stand’ which starts on Thursday, December 17th because Amber Heard is in it. I’m one of them. Anything that has Amber Heard in it gets a hard pass from me, and I can think of about 1.7 million people who feel the same way.

+

Instead, I suggest showing our support for Johnny Depp by watching something by Johnny Depp instead, whether it’s a DVD you already own, or picking a Johnny Depp movie on the streaming platform of your choice. There are lots of excellent movies to choose from, so it shouldn't be too hard finding a good one. Me, I'll probably be watching Pirates.

+

I like Stephen King’s work as much as the next guy, and I know that he didn’t personally hire Amber Heard, but I simply cannot support a project that she’s in. Nothing personal Steve. I just can't.

+

So if you feel the same way, let’s let the industry know that we’re having none of her by boycotting ‘The Stand’ and stream something by Johnny Depp instead. Let 'em know what we want: Johnny Depp. And what we don't want: Amber Heard. 

+

The media might be working hard to silence Johnny Depp, but they'll never silence us. 

",,,,,,,,,,,,December 17th,StarterPetitionUpdate,28227492.0,2020-12-15 21:51:26+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '224977360', 'petitionMedium': {'url': '//assets.change.org/photos/7/fr/up/clfrUphMRveLrYB-800x450-noPad.jpg?1608069088', 'processing': False}}",,,,against +140,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

“Sources say he paid his first wife, Lori Anne Allison, $1.25 million to keep quiet after he allegedly left a long ranting message in which he repeatedly used the N-word. The previously unreported settlement was accomplished using fictitious names to avoid scrutiny.”

+

That’s just one of the many allegations put forth in an article published by The Hollywood Reporter. There are a ton of others, but I won’t dignify them by repeating them here. I’ll post the link because I have to cite my sources, but I’m hoping that you won’t give them any hits by clicking through to read it. It’s just all the same lies Amber Heard’s been spouting over the last few years.

+

I selected this statement to write about because this is the first time I’ve ever seen it. And because it’s so full of outrageous and flawed elements that I just had to pick it apart.

+

First, “Sources”? Really? Until or unless these “sources” are identified, it’s pretty hard to take anything that follows seriously.

+

Second, it doesn’t say WHEN this alleged payment took place. Johnny married Lori Anne more than 30 years ago. That’s a long stretch of road during which this alleged transaction could have taken place. They’re going to have to narrow it down a little more before it can be taken seriously.

+

Third, they also don’t say WHEN this long, ranting message took place. Was it back when they were together? Sometime since? Did he recently call Lori Anne out of the blue just to leave audio evidence of racial epithets nobody else on the planet has ever accused him of using? Just like I said a minute ago, they need to narrow down the timeline.

+

Fourth, when else has Johnny ever been accused of using language like that? Every? So we’re supposed to believe that he did it on tape just because some unnamed “sources” say so? Are we really supposed to be that gullible?

+

Fifth, where’s this message? If “sources” have heard it, why haven’t we? Are we supposed to believe that a tape like this exists and it hasn’t been leaked to the public?

+

Sixth, why in the world would Johnny Depp need to use a fake name to give his ex-wife some money? If Johnny wanted to give his ex some money, for whatever reason, there’s no reason whatsoever that he couldn’t just do so. He gave Vanessa money, too, and there’s nothing shady about it. By all accounts, he’s a generous guy. Why shouldn’t he be able to give his ex some money if he wants to?

+

I’m sorry, folks, but it doesn’t quite wash. They talk about scrutiny, but the fact is that there are far too few details for a claim like this to stand up to even the most casual scrutiny.

+

The point here, is that headlines like this are juicy and look damning on the surface, but you need to look a little deeper to determine if there’s any substance to back them up. This is just one among many allegations being tossed about in the press since the court in the UK ruled against him in his libel case against the Sun. The media’s been having a field day at Johnny’s expense, and there’s no more substance to those headlines than there are to this one. It’s just a bunch of fluffed-up rubbish set forth with no more justification than that someone said so.

+

Don’t take the headlines seriously, boys and girls, no matter how good – or bad – they look. There’s a good chance that it’s just a bunch of unfounded allegations being printed to sell papers. Or to get clicks online. That’s all. They, the papers, don’t care about the truth. If they did, they’d be exposing Johnny Depp’s abuser, proven by her own words, rather than serving the victim up on a platter the way they are. So don’t give them the satisfaction of giving their trash a second glance. Stick to the world of facts which have been proven, tried and true, by the abuser herself.

+

The truth will out in the end. It’s no coincidence that this article came out at the same time as Johnny applied to the higher court to move forward with his appeal to overturn the verdict in the Sun case. Like I said before, it’s all an agenda that’s being spoon fed to you. Don’t swallow it.

+

Keep your wits about you, folks, and keep fighting the good fight. We'll end up on the right side of the roaring rapids in the end.

+

SOURCE - which I hope you don't click on.

",,,,,,,,,,,,Johnny dropped the N bomb to Ex Lori Anne Allison?,StarterPetitionUpdate,28195245.0,2020-12-09 23:53:53+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '224954427', 'petitionMedium': {'url': '//assets.change.org/photos/0/ax/gn/vfaxgnDqaEbcrOH-800x450-noPad.jpg?1607558034', 'processing': False}}",,,,against +141,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Steven Crowley is an actor that knew and worked with Amber Heard on a movie called “Never Back Down.” He recently posted on Tik Tok that he has his own stories about Amber Heard and promised to do a YouTube about them. He posted a picture of himself and Amber Heard with the caption “Me trying not to get beat up every day on set for 3 months.”

+

Well, on December 2nd, that video went up on YouTube. Steven and his buddy Jason were chatting away, and then, about 12 minutes in, Steven starts talking about Amber Heard. He described first meeting her as sex personified, and so charming and overpowering that if she’d told him to go out and kill somebody, he would have done it. Not really, of course, but he was illustrating how much influence she can have on people, even at first sight. At least back then.

+

He went on to talk about Amber and the fights that she used to get into with her wife Tasya Van Ree, saying that they were real blow up fights. He also hinted at Amber’s drug and alcohol consumption as activities that he saw with his own two eyes.

+

Steven also talked about how Amber Heard was when she worked with Johnny Depp on the Rum Diary. Heard wasn’t even remotely interested in Depp. She was married to Tasya, but was well aware of Johnny’s interest in her, he said. It wasn’t until after another couple of movies failed, a tv show failed, then all of a sudden you hear about Amber Heard being with Johnny Depp, and wouldn’t you know it, she started getting parts.

+

Amber Heard was with Johnny Depp to further her career. That’s what Steven said without saying it.

+

Steven beat around the bush about a LOT of stories he said he could tell, but he was scared to death of getting sued if he told them. Jason assured Steven that the truth is the ultimate defense against a law suit, and that maybe these stories need to be told so that the world has both sides of the situation, not just the one that Heard is telling the world. Still, Steven hesitated and ultimately refused to say any more. The two agreed to talk about this more off-screen and then come back and revisit the issue in a future video.

+

What strikes me the most about the whole thing is how scared Steven was to talk about events he saw with his own two eyes. And, he said, there are a lot more people with stories to tell that are afraid to talk, too.

+

Why? Why are these people afraid of her? Because she’ll sue them? Like Jason said, the truth is the best defense against that. And it’s not just a matter of he say/She say if multiple people are stepping forward to corroborate each other’s stories. And I’m sure there are some people with photos or videos to back their stories up. They just have to work up the nerve to step forward and speak up.

+

All it takes is for one person to say “enough” and stand up. Once that first brave soul makes a stand and speaks out against Amber Heard, I think the floodgates will open up and everybody else who’s been holding back stories will come forward too. And it’ll be high time. This no-talent would-be actress has held her reign of terror long enough.

+

And I think that with the VA trial coming up, her web is going to start falling apart. She’s having to subpoena people who were previously willing to talk about her freely. I think they’re starting to realize what they’ve got to lose, and that her ship is sinking. And it is. The USS Amber Heard is taking on water, more every day. It’s only a matter of time until those rats start hopping off. I think we’re seeing it already.

+

By all means, go have a look at Steven Crowley’s video. See for yourself all of the stories he hints at being able to tell about her, and witness how afraid he is to talk.

+

Let’s hope he’s the one that starts the ball rolling about Heard. It’ll make him a hero of epic proportions. He might just by a lynchpin if they get him involved with the VA case.

+

Come on, Steven. You can do it!

",,,,,,,,,,,,Steven Crowley and Amber Heard,StarterPetitionUpdate,28173276.0,2020-12-05 17:52:18+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '224939220', 'petitionMedium': {'url': '//assets.change.org/photos/6/jo/ak/VPJOaKaUxbgUdKR-800x450-noPad.jpg?1607190740', 'processing': False}}",,,,against +142,https://www.change.org/p/people-with-common-sense-amber-heard-must-be-fired-too,0,0,0,0,,petitions_milestones,,,,15000.0,,,,,,,,,,,MilestonePetitionUpdate,28276997.0,2020-12-28 17:21:21+00:00,15000.0,people-with-common-sense-amber-heard-must-be-fired-too,,,,,against +143,https://www.change.org/p/people-with-common-sense-amber-heard-must-be-fired-too,0,0,0,0,,petitions_milestones,,,,12500.0,,,,,,,,,,,MilestonePetitionUpdate,28240411.0,2020-12-18 01:23:54+00:00,12500.0,people-with-common-sense-amber-heard-must-be-fired-too,,,,,against +144,https://www.change.org/p/people-with-common-sense-amber-heard-must-be-fired-too,0,0,0,0,,petitions_milestones,,,,10000.0,,,,,,,,,,,MilestonePetitionUpdate,28160733.0,2020-12-03 09:23:03+00:00,10000.0,people-with-common-sense-amber-heard-must-be-fired-too,,,,,against +145,https://www.change.org/p/dc-replace-amber-heard-with-danny-devito-in-aquaman,0,0,0,0,,petitions_milestones,,,,30000.0,,,,,,,,,,,MilestonePetitionUpdate,28268919.0,2020-12-25 18:27:27+00:00,30000.0,dc-replace-amber-heard-with-danny-devito-in-aquaman,,,,,against +146,https://www.change.org/p/dc-replace-amber-heard-with-danny-devito-in-aquaman,0,0,0,0,,petitions_milestones,,,,25000.0,,,,,,,,,,,MilestonePetitionUpdate,28216877.0,2020-12-14 02:57:52+00:00,25000.0,dc-replace-amber-heard-with-danny-devito-in-aquaman,,,,,against +147,https://www.change.org/p/dc-replace-amber-heard-with-danny-devito-in-aquaman,0,0,0,0,,petitions_milestones,,

I didnt imagine this petition to get more than 12 signatures so you guys signing and sharing means everything and I want to thank you all!

,,,,,,,,,,,,Thank you all!,StarterPetitionUpdate,28188075.0,2020-12-08 19:40:37+00:00,,dc-replace-amber-heard-with-danny-devito-in-aquaman,,,,,against +148,https://www.change.org/p/dc-replace-amber-heard-with-danny-devito-in-aquaman,0,0,0,0,,petitions_milestones,,,,20000.0,,,,,,,,,,,MilestonePetitionUpdate,28175309.0,2020-12-06 05:50:28+00:00,20000.0,dc-replace-amber-heard-with-danny-devito-in-aquaman,,,,,against +149,https://www.change.org/p/dc-replace-amber-heard-with-danny-devito-in-aquaman,0,0,0,0,,petitions_milestones,,,,17500.0,,,,,,,,,,,MilestonePetitionUpdate,28165718.0,2020-12-04 04:18:30+00:00,17500.0,dc-replace-amber-heard-with-danny-devito-in-aquaman,,,,,against +150,https://www.change.org/p/dc-replace-amber-heard-with-danny-devito-in-aquaman,0,0,0,0,,petitions_milestones,,,,15000.0,,,,,,,,,,,MilestonePetitionUpdate,28157777.0,2020-12-02 20:20:50+00:00,15000.0,dc-replace-amber-heard-with-danny-devito-in-aquaman,,,,,against +151,https://www.change.org/p/dc-replace-amber-heard-with-danny-devito-in-aquaman,0,0,0,0,,petitions_milestones,,,,12500.0,,,,,,,,,,,MilestonePetitionUpdate,28150394.0,2020-12-01 16:32:23+00:00,12500.0,dc-replace-amber-heard-with-danny-devito-in-aquaman,,,,,against +152,https://www.change.org/p/johnnydeppisinnocent,0,0,0,0,,petitions_milestones,,,,8000.0,,,,,,,,,,,MilestonePetitionUpdate,28164145.0,2020-12-03 21:38:33+00:00,8000.0,johnnydeppisinnocent,,,,,against +153,https://www.change.org/p/warner-brothers-give-johnny-deep-his-roles-back,0,0,0,0,,petitions_milestones,,,,150000.0,,,,,,,,,,,MilestonePetitionUpdate,28180299.0,2020-12-07 11:53:37+00:00,150000.0,warner-brothers-give-johnny-deep-his-roles-back,,,,,against +154,https://www.change.org/p/everyone-replace-amber-heard-with-jacksepticeye-in-auqaman,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28267190.0,2020-12-24 21:43:01+00:00,100.0,everyone-replace-amber-heard-with-jacksepticeye-in-auqaman,,,,,against +155,https://www.change.org/p/mera-solo-movie,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28253545.0,2020-12-21 11:15:58+00:00,200.0,mera-solo-movie,,,,,related +156,https://www.change.org/p/hollywood-boycott-aquaman-2-amber-heard,0,0,0,0,,petitions_milestones,,,,17500.0,,,,,,,,,,,MilestonePetitionUpdate,28198563.0,2020-12-10 15:50:37+00:00,17500.0,hollywood-boycott-aquaman-2-amber-heard,,,,,against +157,https://www.change.org/p/hollywood-boycott-aquaman-2-amber-heard,0,0,0,0,,petitions_milestones,,,,15000.0,,,,,,,,,,,MilestonePetitionUpdate,28170901.0,2020-12-05 04:01:49+00:00,15000.0,hollywood-boycott-aquaman-2-amber-heard,,,,,against +158,https://www.change.org/p/hollywood-boycott-aquaman-2-amber-heard,0,0,0,0,,petitions_milestones,,,,12500.0,,,,,,,,,,,MilestonePetitionUpdate,28149599.0,2020-12-01 14:03:12+00:00,12500.0,hollywood-boycott-aquaman-2-amber-heard,,,,,against +159,https://www.change.org/p/whoever-fired-johnny-depp-give-johnny-depp-his-role-in-fantastic-beasts-back-and-fire-amber-heard,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28234209.0,2020-12-16 23:55:18+00:00,1000.0,whoever-fired-johnny-depp-give-johnny-depp-his-role-in-fantastic-beasts-back-and-fire-amber-heard,,,,,against +160,https://www.change.org/p/whoever-fired-johnny-depp-give-johnny-depp-his-role-in-fantastic-beasts-back-and-fire-amber-heard,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28171100.0,2020-12-05 05:30:19+00:00,750.0,whoever-fired-johnny-depp-give-johnny-depp-his-role-in-fantastic-beasts-back-and-fire-amber-heard,,,,,against +161,https://www.change.org/p/warner-brothers-to-get-amber-heard-fired-in-aquaman,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28164171.0,2020-12-03 21:44:32+00:00,10.0,warner-brothers-to-get-amber-heard-fired-in-aquaman,,,,,against +162,https://www.change.org/p/warner-brothers-to-get-amber-heard-fired-in-aquaman,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28162090.0,2020-12-03 15:25:26+00:00,5.0,warner-brothers-to-get-amber-heard-fired-in-aquaman,,,,,against +163,https://www.change.org/p/the-people-johnny-depp-should-retry-the-lawsuit-against-him-uk-libel-case,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28202243.0,2020-12-11 04:58:10+00:00,250.0,the-people-johnny-depp-should-retry-the-lawsuit-against-him-uk-libel-case,,,,,against +164,https://www.change.org/p/the-people-johnny-depp-should-retry-the-lawsuit-against-him-uk-libel-case,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28155272.0,2020-12-02 12:38:04+00:00,200.0,the-people-johnny-depp-should-retry-the-lawsuit-against-him-uk-libel-case,,,,,against +165,https://www.change.org/p/the-royal-courts-of-justice-london-justice-for-johnny-depp,0,0,0,0,,petitions_milestones,,,,1500.0,,,,,,,,,,,MilestonePetitionUpdate,28241773.0,2020-12-18 10:09:37+00:00,1500.0,the-royal-courts-of-justice-london-justice-for-johnny-depp,,,,,against +166,https://www.change.org/p/amber-heard-have-amber-heard-plead-guilty-for-domestic-violence,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28220568.0,2020-12-14 19:38:30+00:00,5.0,amber-heard-have-amber-heard-plead-guilty-for-domestic-violence,,,,,against +167,https://www.change.org/p/change-org-blacklist-amber-heard-from-hollywood,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28287748.0,2020-12-31 13:01:53+00:00,500.0,change-org-blacklist-amber-heard-from-hollywood,,,,,against +168,https://www.change.org/p/change-org-petitions-to-remove-amber-heard-from-aquaman-perpetuates-abuse-towards-women-who-speak-up,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28253676.0,2020-12-21 12:09:21+00:00,25.0,change-org-petitions-to-remove-amber-heard-from-aquaman-perpetuates-abuse-towards-women-who-speak-up,,,,,for +169,https://www.change.org/p/change-org-petitions-to-remove-amber-heard-from-aquaman-perpetuates-abuse-towards-women-who-speak-up,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28213652.0,2020-12-13 12:26:02+00:00,10.0,change-org-petitions-to-remove-amber-heard-from-aquaman-perpetuates-abuse-towards-women-who-speak-up,,,,,for +170,https://www.change.org/p/change-org-petitions-to-remove-amber-heard-from-aquaman-perpetuates-abuse-towards-women-who-speak-up,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28211667.0,2020-12-12 23:16:13+00:00,5.0,change-org-petitions-to-remove-amber-heard-from-aquaman-perpetuates-abuse-towards-women-who-speak-up,,,,,for +171,https://www.change.org/p/warner-brothers-remove-amber-heard-from-aquaman-2-8e6401e6-50bb-4731-b699-16e3ffa06768,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28168398.0,2020-12-04 17:08:52+00:00,100.0,warner-brothers-remove-amber-heard-from-aquaman-2-8e6401e6-50bb-4731-b699-16e3ffa06768,,,,,against +172,https://www.change.org/p/warner-brothers-get-wb-to-recast-johnny-depp-to-fantastic-beasts,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28163334.0,2020-12-03 19:11:20+00:00,25.0,warner-brothers-get-wb-to-recast-johnny-depp-to-fantastic-beasts,,,,,against +173,https://www.change.org/p/warner-bros-justice-for-johnny-depp-9088322c-edb8-4f81-a087-6c1923950f38,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28151553.0,2020-12-01 19:49:17+00:00,25.0,warner-bros-justice-for-johnny-depp-9088322c-edb8-4f81-a087-6c1923950f38,,,,,against +174,https://www.change.org/p/warner-brothers-keep-johnny-depp-as-grindelwald-be8495e5-fc87-4ff5-89d2-4179fc292863,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28174331.0,2020-12-05 22:52:23+00:00,10.0,warner-brothers-keep-johnny-depp-as-grindelwald-be8495e5-fc87-4ff5-89d2-4179fc292863,,,,,against +175,https://www.change.org/p/hollywood-emma-roberts-is-a-domestic-abuser-and-should-be-canceled,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28171964.0,2020-12-05 11:39:16+00:00,10.0,hollywood-emma-roberts-is-a-domestic-abuser-and-should-be-canceled,,,,,against +176,https://www.change.org/p/at-t-boycott-warner-media-and-their-parent-company-at-t,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28277407.0,2020-12-28 19:03:13+00:00,5.0,at-t-boycott-warner-media-and-their-parent-company-at-t,,,,,against +177,https://www.change.org/p/warner-brothers-keep-johnny-depp-as-grindelwald,0,0,0,0,,petitions_milestones,,,,200000.0,,,,,,,,,,,MilestonePetitionUpdate,28259813.0,2020-12-22 21:29:46+00:00,200000.0,warner-brothers-keep-johnny-depp-as-grindelwald,,,,,against +178,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,2000.0,,,,,,,,,,,MilestonePetitionUpdate,28270407.0,2020-12-26 12:27:39+00:00,2000.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +179,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,1500.0,,,,,,,,,,,MilestonePetitionUpdate,28253089.0,2020-12-21 07:31:08+00:00,1500.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +180,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28237699.0,2020-12-17 16:18:00+00:00,1000.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +181,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28233431.0,2020-12-16 21:18:58+00:00,750.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +182,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28224523.0,2020-12-15 12:53:55+00:00,500.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +183,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28215456.0,2020-12-13 20:28:55+00:00,250.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +184,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28210680.0,2020-12-12 19:25:33+00:00,200.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +185,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28200644.0,2020-12-10 22:28:18+00:00,100.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +186,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28198086.0,2020-12-10 14:09:01+00:00,50.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +187,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28193496.0,2020-12-09 18:45:42+00:00,25.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +188,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28184194.0,2020-12-08 02:44:53+00:00,10.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +189,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28178275.0,2020-12-06 22:30:43+00:00,5.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +0,https://www.change.org/p/us-remove-amber-heard-from-aquaman,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28302775.0,2021-01-04 15:37:35+00:00,100.0,us-remove-amber-heard-from-aquaman,,,,,against +1,https://www.change.org/p/warner-brothers-replace-amber-heard-in-justice-league-with-danny-devito-in-a-wig,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28622990.0,2021-02-27 16:07:25+00:00,200.0,warner-brothers-replace-amber-heard-in-justice-league-with-danny-devito-in-a-wig,,,,,against +2,https://www.change.org/p/warner-brothers-replace-amber-heard-in-justice-league-with-danny-devito-in-a-wig,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28322252.0,2021-01-07 16:34:32+00:00,100.0,warner-brothers-replace-amber-heard-in-justice-league-with-danny-devito-in-a-wig,,,,,against +3,https://www.change.org/p/warner-bros-for-amber-heard-to-continue-on-aquaman-2,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28474808.0,2021-02-02 17:24:28+00:00,1000.0,warner-bros-for-amber-heard-to-continue-on-aquaman-2,,,,,for +4,https://www.change.org/p/justice-for-johnny-depp-05cf0fb4-ff7a-4156-aa57-041d791c781b,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28333103.0,2021-01-09 07:43:41+00:00,50.0,justice-for-johnny-depp-05cf0fb4-ff7a-4156-aa57-041d791c781b,,,,,against +5,https://www.change.org/p/warner-brothers-amber-heard-does-not-deserve-to-play-mera-in-the-next-aquaman-film,0,0,0,0,,petitions_milestones,,,,35000.0,,,,,,,,,,,MilestonePetitionUpdate,28409731.0,2021-01-22 19:45:14+00:00,35000.0,warner-brothers-amber-heard-does-not-deserve-to-play-mera-in-the-next-aquaman-film,,,,,against +6,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28745170.0,2021-03-20 20:23:05+00:00,100.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +7,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,2000.0,,,,,,,,,,,MilestonePetitionUpdate,28486760.0,2021-02-04 06:38:24+00:00,2000.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +8,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,1500.0,,,,,,,,,,,MilestonePetitionUpdate,28482514.0,2021-02-03 17:56:42+00:00,1500.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +9,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28479224.0,2021-02-03 06:59:06+00:00,1000.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +10,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28477875.0,2021-02-03 01:27:18+00:00,750.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +11,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28475600.0,2021-02-02 19:18:54+00:00,500.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +12,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28473109.0,2021-02-02 13:03:03+00:00,250.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +13,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28473106.0,2021-02-02 13:01:41+00:00,250.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +14,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28472916.0,2021-02-02 12:15:27+00:00,200.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +15,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28468905.0,2021-02-01 21:04:21+00:00,100.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +16,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,2500.0,,,,,,,,,,,MilestonePetitionUpdate,28364127.0,2021-01-14 16:21:31+00:00,2500.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +17,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,2000.0,,,,,,,,,,,MilestonePetitionUpdate,28362431.0,2021-01-14 09:31:13+00:00,2000.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +18,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,1500.0,,,,,,,,,,,MilestonePetitionUpdate,28361311.0,2021-01-14 02:45:42+00:00,1500.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +19,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28359252.0,2021-01-13 19:52:16+00:00,1000.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +20,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28358311.0,2021-01-13 17:11:16+00:00,750.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +21,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28357287.0,2021-01-13 14:19:42+00:00,500.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +22,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28356523.0,2021-01-13 11:13:22+00:00,250.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +23,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28356444.0,2021-01-13 10:50:11+00:00,200.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +24,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28356440.0,2021-01-13 10:49:40+00:00,200.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +25,https://www.change.org/p/warner-brothers-keep-amber-heard-in-aquaman-3,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28356149.0,2021-01-13 09:21:39+00:00,100.0,warner-brothers-keep-amber-heard-in-aquaman-3,,,,,for +26,https://www.change.org/p/the-judicial-conduct-investigations-office-a-official-review-the-judicial-misconduct-of-judge-nicol-in-the-johnny-depp-libel-case,0,0,0,0,,petitions_milestones,,,,6000.0,,,,,,,,,,,MilestonePetitionUpdate,28955196.0,2021-04-27 15:06:58+00:00,6000.0,the-judicial-conduct-investigations-office-a-official-review-the-judicial-misconduct-of-judge-nicol-in-the-johnny-depp-libel-case,,,,,against +27,https://www.change.org/p/the-judicial-conduct-investigations-office-a-official-review-the-judicial-misconduct-of-judge-nicol-in-the-johnny-depp-libel-case,0,0,0,0,,petitions_milestones,,,,5000.0,,,,,,,,,,,MilestonePetitionUpdate,28942487.0,2021-04-25 06:10:48+00:00,5000.0,the-judicial-conduct-investigations-office-a-official-review-the-judicial-misconduct-of-judge-nicol-in-the-johnny-depp-libel-case,,,,,against +28,https://www.change.org/p/the-judicial-conduct-investigations-office-a-official-review-the-judicial-misconduct-of-judge-nicol-in-the-johnny-depp-libel-case,0,0,0,0,,petitions_milestones,,,,4000.0,,,,,,,,,,,MilestonePetitionUpdate,28936598.0,2021-04-23 23:08:58+00:00,4000.0,the-judicial-conduct-investigations-office-a-official-review-the-judicial-misconduct-of-judge-nicol-in-the-johnny-depp-libel-case,,,,,against +29,https://www.change.org/p/the-judicial-conduct-investigations-office-a-official-review-the-judicial-misconduct-of-judge-nicol-in-the-johnny-depp-libel-case,0,0,0,0,,petitions_milestones,,,,3000.0,,,,,,,,,,,MilestonePetitionUpdate,28649971.0,2021-03-04 07:08:03+00:00,3000.0,the-judicial-conduct-investigations-office-a-official-review-the-judicial-misconduct-of-judge-nicol-in-the-johnny-depp-libel-case,,,,,against +30,https://www.change.org/p/dc-comics-replace-amber-heard-with-emilia-clarke-as-mera-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28602868.0,2021-02-24 03:48:07+00:00,50.0,dc-comics-replace-amber-heard-with-emilia-clarke-as-mera-in-aquaman-2,,,,,against +31,https://www.change.org/p/warner-brothers-remove-amber-heard-as-mera-for-aquaman-2,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28490868.0,2021-02-04 19:29:49+00:00,100.0,warner-brothers-remove-amber-heard-as-mera-for-aquaman-2,,,,,against +32,https://www.change.org/p/petition-to-hold-amber-heard-accountable-amber-heard-honour-your-pledge-to-chla,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28554627.0,2021-02-15 19:01:59+00:00,200.0,petition-to-hold-amber-heard-accountable-amber-heard-honour-your-pledge-to-chla,,,,,against +33,https://www.change.org/p/petition-to-hold-amber-heard-accountable-amber-heard-honour-your-pledge-to-chla,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28431226.0,2021-01-26 19:35:41+00:00,100.0,petition-to-hold-amber-heard-accountable-amber-heard-honour-your-pledge-to-chla,,,,,against +34,https://www.change.org/p/petition-to-hold-amber-heard-accountable-amber-heard-honour-your-pledge-to-chla,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28407851.0,2021-01-22 14:33:02+00:00,50.0,petition-to-hold-amber-heard-accountable-amber-heard-honour-your-pledge-to-chla,,,,,against +35,https://www.change.org/p/petition-to-hold-amber-heard-accountable-amber-heard-honour-your-pledge-to-chla,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28367814.0,2021-01-15 05:03:32+00:00,25.0,petition-to-hold-amber-heard-accountable-amber-heard-honour-your-pledge-to-chla,,,,,against +36,https://www.change.org/p/petition-to-hold-amber-heard-accountable-amber-heard-honour-your-pledge-to-chla,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28363373.0,2021-01-14 14:10:44+00:00,10.0,petition-to-hold-amber-heard-accountable-amber-heard-honour-your-pledge-to-chla,,,,,against +37,https://www.change.org/p/petition-to-hold-amber-heard-accountable-amber-heard-honour-your-pledge-to-chla,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28363137.0,2021-01-14 13:16:56+00:00,5.0,petition-to-hold-amber-heard-accountable-amber-heard-honour-your-pledge-to-chla,,,,,against +38,https://www.change.org/p/walt-disney-bring-johnny-depp-back-to-pirates-of-the-caribbean,0,0,0,0,,petitions_milestones,,,,6000.0,,,,,,,,,,,MilestonePetitionUpdate,28561111.0,2021-02-16 20:38:17+00:00,6000.0,walt-disney-bring-johnny-depp-back-to-pirates-of-the-caribbean,,,,,against +39,https://www.change.org/p/walt-disney-bring-johnny-depp-back-to-pirates-of-the-caribbean,0,0,0,0,,petitions_milestones,,,,5000.0,,,,,,,,,,,MilestonePetitionUpdate,28408167.0,2021-01-22 15:29:03+00:00,5000.0,walt-disney-bring-johnny-depp-back-to-pirates-of-the-caribbean,,,,,against +40,https://www.change.org/p/walt-disney-bring-johnny-depp-back-to-pirates-of-the-caribbean,0,0,0,0,,petitions_milestones,,,,4000.0,,,,,,,,,,,MilestonePetitionUpdate,28365056.0,2021-01-14 19:00:51+00:00,4000.0,walt-disney-bring-johnny-depp-back-to-pirates-of-the-caribbean,,,,,against +41,https://www.change.org/p/walt-disney-bring-johnny-depp-back-to-pirates-of-the-caribbean,0,0,0,0,,petitions_milestones,,,,3000.0,,,,,,,,,,,MilestonePetitionUpdate,28313900.0,2021-01-06 10:42:42+00:00,3000.0,walt-disney-bring-johnny-depp-back-to-pirates-of-the-caribbean,,,,,against +42,https://www.change.org/p/the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,0,0,0,0,,petitions_milestones,,,,1500.0,,,,,,,,,,,MilestonePetitionUpdate,28611051.0,2021-02-25 13:32:05+00:00,1500.0,the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,,,,,against +43,https://www.change.org/p/the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28513447.0,2021-02-08 16:38:20+00:00,1000.0,the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,,,,,against +44,https://www.change.org/p/the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28364637.0,2021-01-14 17:49:20+00:00,500.0,the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,,,,,against +45,https://www.change.org/p/warner-brothers-fire-amber-heard-rehire-johnny-depp,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28760112.0,2021-03-23 17:20:55+00:00,50.0,warner-brothers-fire-amber-heard-rehire-johnny-depp,,,,,against +46,https://www.change.org/p/hollywood-boycott-aquaman-2-amber-heard,0,0,0,0,,petitions_milestones,,,,20000.0,,,,,,,,,,,MilestonePetitionUpdate,28508927.0,2021-02-07 20:25:32+00:00,20000.0,hollywood-boycott-aquaman-2-amber-heard,,,,,against +47,https://www.change.org/p/cbs-remove-amber-heard-from-the-stand-2020,0,0,0,0,,petitions_milestones,,,,3000.0,,,,,,,,,,,MilestonePetitionUpdate,28972911.0,2021-04-30 13:05:12+00:00,3000.0,cbs-remove-amber-heard-from-the-stand-2020,,,,,against +48,https://www.change.org/p/cbs-remove-amber-heard-from-the-stand-2020,0,0,0,0,,petitions_milestones,,,,2500.0,,,,,,,,,,,MilestonePetitionUpdate,28644673.0,2021-03-03 14:04:13+00:00,2500.0,cbs-remove-amber-heard-from-the-stand-2020,,,,,against +49,https://www.change.org/p/cbs-remove-amber-heard-from-the-stand-2020,0,0,0,0,,petitions_milestones,,,,2000.0,,,,,,,,,,,MilestonePetitionUpdate,28534306.0,2021-02-11 18:17:29+00:00,2000.0,cbs-remove-amber-heard-from-the-stand-2020,,,,,against +50,https://www.change.org/p/cbs-remove-amber-heard-from-the-stand-2020,0,0,0,0,,petitions_milestones,,,,1500.0,,,,,,,,,,,MilestonePetitionUpdate,28364867.0,2021-01-14 18:28:33+00:00,1500.0,cbs-remove-amber-heard-from-the-stand-2020,,,,,against +51,https://www.change.org/p/johnny-depp-we-want-johnny-depp-back-in-2021,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28578680.0,2021-02-19 17:54:17+00:00,250.0,johnny-depp-we-want-johnny-depp-back-in-2021,,,,,against +52,https://www.change.org/p/johnny-depp-we-want-johnny-depp-back-in-2021,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28461233.0,2021-01-31 18:08:16+00:00,200.0,johnny-depp-we-want-johnny-depp-back-in-2021,,,,,against +53,https://www.change.org/p/johnny-depp-we-want-johnny-depp-back-in-2021,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28424765.0,2021-01-25 18:27:19+00:00,100.0,johnny-depp-we-want-johnny-depp-back-in-2021,,,,,against +54,https://www.change.org/p/johnny-depp-we-want-johnny-depp-back-in-2021,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28391919.0,2021-01-19 20:34:18+00:00,50.0,johnny-depp-we-want-johnny-depp-back-in-2021,,,,,against +55,https://www.change.org/p/johnny-depp-we-want-johnny-depp-back-in-2021,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28357589.0,2021-01-13 15:05:41+00:00,25.0,johnny-depp-we-want-johnny-depp-back-in-2021,,,,,against +56,https://www.change.org/p/johnny-depp-we-want-johnny-depp-back-in-2021,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28347308.0,2021-01-11 21:54:56+00:00,10.0,johnny-depp-we-want-johnny-depp-back-in-2021,,,,,against +57,https://www.change.org/p/johnny-depp-we-want-johnny-depp-back-in-2021,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28327781.0,2021-01-08 12:56:43+00:00,5.0,johnny-depp-we-want-johnny-depp-back-in-2021,,,,,against +58,https://www.change.org/p/everyone-cancel-amber-heard-domestic-abuser,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28704906.0,2021-03-13 23:54:49+00:00,100.0,everyone-cancel-amber-heard-domestic-abuser,,,,,against +59,https://www.change.org/p/department-of-justice-justice-for-jhonny-depp,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28317487.0,2021-01-06 21:27:44+00:00,50.0,department-of-justice-justice-for-jhonny-depp,,,,,against +60,https://www.change.org/p/supreme-court-make-amber-heard-face-charges-for-abuse-against-johnny-depp,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28417298.0,2021-01-24 08:52:12+00:00,200.0,supreme-court-make-amber-heard-face-charges-for-abuse-against-johnny-depp,,,,,against +61,https://www.change.org/p/warner-brothers-fire-toby-richard-walter-and-geoff-from-warner-bros-warnermedia,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28682254.0,2021-03-10 03:46:38+00:00,10.0,warner-brothers-fire-toby-richard-walter-and-geoff-from-warner-bros-warnermedia,,,,,against +62,https://www.change.org/p/warner-brothers-fire-toby-richard-walter-and-geoff-from-warner-bros-warnermedia,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28663768.0,2021-03-06 15:12:49+00:00,5.0,warner-brothers-fire-toby-richard-walter-and-geoff-from-warner-bros-warnermedia,,,,,against +63,https://www.change.org/p/amber-heard-a-public-letter-to-amber-heard,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28308991.0,2021-01-05 15:30:20+00:00,1000.0,amber-heard-a-public-letter-to-amber-heard,,,,,against +64,https://www.change.org/p/amber-heard-a-public-letter-to-amber-heard,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28301946.0,2021-01-04 11:57:31+00:00,750.0,amber-heard-a-public-letter-to-amber-heard,,,,,against +65,https://www.change.org/p/amber-heard-a-public-letter-to-amber-heard,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28291692.0,2021-01-01 23:21:13+00:00,500.0,amber-heard-a-public-letter-to-amber-heard,,,,,against +66,https://www.change.org/p/warner-brothers-bring-back-johnny-depp-as-gellert-grindelwald-in-the-fantastic-beasts-franchise,0,0,0,0,,petitions_milestones,,,,3000.0,,,,,,,,,,,MilestonePetitionUpdate,28293138.0,2021-01-02 12:27:49+00:00,3000.0,warner-brothers-bring-back-johnny-depp-as-gellert-grindelwald-in-the-fantastic-beasts-franchise,,,,,against +67,https://www.change.org/p/people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,0,0,0,0,,petitions_milestones,,,,2500.0,,,,,,,,,,,MilestonePetitionUpdate,28711025.0,2021-03-15 09:49:38+00:00,2500.0,people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,,,,,related +68,https://www.change.org/p/people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,0,0,0,0,,petitions_milestones,,,,2000.0,,,,,,,,,,,MilestonePetitionUpdate,28582253.0,2021-02-20 10:34:02+00:00,2000.0,people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,,,,,related +69,https://www.change.org/p/people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,0,0,0,0,,petitions_milestones,,,,1500.0,,,,,,,,,,,MilestonePetitionUpdate,28426431.0,2021-01-25 23:21:58+00:00,1500.0,people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,,,,,related +70,https://www.change.org/p/people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28376297.0,2021-01-16 18:27:21+00:00,1000.0,people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,,,,,related +71,https://www.change.org/p/people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28351268.0,2021-01-12 15:06:47+00:00,750.0,people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,,,,,related +72,https://www.change.org/p/people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28336304.0,2021-01-09 21:38:37+00:00,500.0,people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,,,,,related +73,https://www.change.org/p/people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28301446.0,2021-01-04 08:25:11+00:00,250.0,people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,,,,,related +74,https://www.change.org/p/people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28296034.0,2021-01-03 02:32:57+00:00,200.0,people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,,,,,related +75,https://www.change.org/p/people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28290896.0,2021-01-01 17:56:20+00:00,100.0,people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,,,,,related +76,https://www.change.org/p/people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28289569.0,2021-01-01 01:30:08+00:00,50.0,people-for-the-ethical-treatment-of-animals-peta-where-are-amber-heard-dogs-pistol-and-boo,,,,,related +77,https://www.change.org/p/warner-brothers-fire-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28469102.0,2021-02-01 21:41:51+00:00,50.0,warner-brothers-fire-amber-heard-from-aquaman-2,,,,,against +78,https://www.change.org/p/warner-brothers-do-not-fire-amber-heard-of-aquaman-2,0,0,0,0,,petitions_milestones,,,,4000.0,,,,,,,,,,,MilestonePetitionUpdate,28445349.0,2021-01-28 21:00:28+00:00,4000.0,warner-brothers-do-not-fire-amber-heard-of-aquaman-2,,,,,for +79,https://www.change.org/p/warner-brothers-do-not-fire-amber-heard-of-aquaman-2,0,0,0,0,,petitions_milestones,,,,12500.0,,,,,,,,,,,MilestonePetitionUpdate,28361760.0,2021-01-14 05:01:44+00:00,12500.0,warner-brothers-do-not-fire-amber-heard-of-aquaman-2,,,,,for +80,https://www.change.org/p/warner-brothers-do-not-fire-amber-heard-of-aquaman-2,0,0,0,0,,petitions_milestones,,,,10000.0,,,,,,,,,,,MilestonePetitionUpdate,28355218.0,2021-01-13 03:33:37+00:00,10000.0,warner-brothers-do-not-fire-amber-heard-of-aquaman-2,,,,,for +81,https://www.change.org/p/warner-brothers-do-not-fire-amber-heard-of-aquaman-2,0,0,0,0,,petitions_milestones,,,,9000.0,,,,,,,,,,,MilestonePetitionUpdate,28344640.0,2021-01-11 14:16:12+00:00,9000.0,warner-brothers-do-not-fire-amber-heard-of-aquaman-2,,,,,for +82,https://www.change.org/p/warner-brothers-do-not-fire-amber-heard-of-aquaman-2,0,0,0,0,,petitions_milestones,,,,8000.0,,,,,,,,,,,MilestonePetitionUpdate,28342166.0,2021-01-11 01:21:43+00:00,8000.0,warner-brothers-do-not-fire-amber-heard-of-aquaman-2,,,,,for +83,https://www.change.org/p/warner-brothers-do-not-fire-amber-heard-of-aquaman-2,0,0,0,0,,petitions_milestones,,,,7500.0,,,,,,,,,,,MilestonePetitionUpdate,28340897.0,2021-01-10 19:49:35+00:00,7500.0,warner-brothers-do-not-fire-amber-heard-of-aquaman-2,,,,,for +84,https://www.change.org/p/warner-brothers-do-not-fire-amber-heard-of-aquaman-2,0,0,0,0,,petitions_milestones,,,,7000.0,,,,,,,,,,,MilestonePetitionUpdate,28339139.0,2021-01-10 13:30:38+00:00,7000.0,warner-brothers-do-not-fire-amber-heard-of-aquaman-2,,,,,for +85,https://www.change.org/p/warner-brothers-do-not-fire-amber-heard-of-aquaman-2,0,0,0,0,,petitions_milestones,,,,6000.0,,,,,,,,,,,MilestonePetitionUpdate,28337565.0,2021-01-10 03:14:43+00:00,6000.0,warner-brothers-do-not-fire-amber-heard-of-aquaman-2,,,,,for +86,https://www.change.org/p/warner-brothers-do-not-fire-amber-heard-of-aquaman-2,0,0,0,0,,petitions_milestones,,,,7500.0,,,,,,,,,,,MilestonePetitionUpdate,28322583.0,2021-01-07 17:25:30+00:00,7500.0,warner-brothers-do-not-fire-amber-heard-of-aquaman-2,,,,,for +87,https://www.change.org/p/warner-brothers-do-not-fire-amber-heard-of-aquaman-2,0,0,0,0,,petitions_milestones,,,,7000.0,,,,,,,,,,,MilestonePetitionUpdate,28322039.0,2021-01-07 16:07:06+00:00,7000.0,warner-brothers-do-not-fire-amber-heard-of-aquaman-2,,,,,for +88,https://www.change.org/p/warner-brothers-do-not-fire-amber-heard-of-aquaman-2,0,0,0,0,,petitions_milestones,,,,6000.0,,,,,,,,,,,MilestonePetitionUpdate,28320606.0,2021-01-07 11:16:02+00:00,6000.0,warner-brothers-do-not-fire-amber-heard-of-aquaman-2,,,,,for +89,https://www.change.org/p/warner-brothers-do-not-fire-amber-heard-of-aquaman-2,0,0,0,0,,petitions_milestones,,,,5000.0,,,,,,,,,,,MilestonePetitionUpdate,28312808.0,2021-01-06 04:00:17+00:00,5000.0,warner-brothers-do-not-fire-amber-heard-of-aquaman-2,,,,,for +90,https://www.change.org/p/warner-brothers-do-not-fire-amber-heard-of-aquaman-2,0,0,0,0,,petitions_milestones,,,,4000.0,,,,,,,,,,,MilestonePetitionUpdate,28308815.0,2021-01-05 14:56:51+00:00,4000.0,warner-brothers-do-not-fire-amber-heard-of-aquaman-2,,,,,for +91,https://www.change.org/p/united-nations-remove-amber-heard-as-a-spokesperson-for-harry-walker-agency-for-domestic-violence,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28429532.0,2021-01-26 14:27:02+00:00,100.0,united-nations-remove-amber-heard-as-a-spokesperson-for-harry-walker-agency-for-domestic-violence,,,,,against +92,https://www.change.org/p/united-nations-remove-amber-heard-as-a-spokesperson-for-harry-walker-agency-for-domestic-violence,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28428172.0,2021-01-26 07:31:04+00:00,50.0,united-nations-remove-amber-heard-as-a-spokesperson-for-harry-walker-agency-for-domestic-violence,,,,,against +93,https://www.change.org/p/united-nations-remove-amber-heard-as-a-spokesperson-for-harry-walker-agency-for-domestic-violence,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28309778.0,2021-01-05 17:44:34+00:00,25.0,united-nations-remove-amber-heard-as-a-spokesperson-for-harry-walker-agency-for-domestic-violence,,,,,against +94,https://www.change.org/p/warner-brothers-justice-for-johnny-depp-05f8b1e1-9f45-4f3a-99a5-ba483539fbbd,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28348934.0,2021-01-12 03:47:12+00:00,100.0,warner-brothers-justice-for-johnny-depp-05f8b1e1-9f45-4f3a-99a5-ba483539fbbd,,,,,against +95,https://www.change.org/p/warner-brothers-justice-for-johnny-depp-05f8b1e1-9f45-4f3a-99a5-ba483539fbbd,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28348892.0,2021-01-12 03:35:45+00:00,50.0,warner-brothers-justice-for-johnny-depp-05f8b1e1-9f45-4f3a-99a5-ba483539fbbd,,,,,against +96,https://www.change.org/p/warner-brothers-have-jason-momoa-stand-with-johnny-depp,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28317515.0,2021-01-06 21:32:21+00:00,25.0,warner-brothers-have-jason-momoa-stand-with-johnny-depp,,,,,against +97,https://www.change.org/p/warner-bro-s-justice-for-johnny-depp,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28588375.0,2021-02-21 17:58:35+00:00,50.0,warner-bro-s-justice-for-johnny-depp,,,,,against +98,https://www.change.org/p/warner-brothers-boycott-aquaman-2-fantastic-beasts-3,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28879037.0,2021-04-14 20:36:16+00:00,50.0,warner-brothers-boycott-aquaman-2-fantastic-beasts-3,,,,,against +99,https://www.change.org/p/warner-brothers-boycott-aquaman-2-fantastic-beasts-3,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28842855.0,2021-04-08 16:07:27+00:00,25.0,warner-brothers-boycott-aquaman-2-fantastic-beasts-3,,,,,against +100,https://www.change.org/p/warner-brothers-boycott-aquaman-2-fantastic-beasts-3,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28372531.0,2021-01-15 23:42:38+00:00,10.0,warner-brothers-boycott-aquaman-2-fantastic-beasts-3,,,,,against +101,https://www.change.org/p/warner-brothers-boycott-aquaman-2-fantastic-beasts-3,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28295564.0,2021-01-03 00:09:40+00:00,5.0,warner-brothers-boycott-aquaman-2-fantastic-beasts-3,,,,,against +102,https://www.change.org/p/walt-disney-johnny-depp-for-the-next-sith-lord,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28631967.0,2021-03-01 14:19:01+00:00,10.0,walt-disney-johnny-depp-for-the-next-sith-lord,,,,,against +103,https://www.change.org/p/warner-bros-pictures-justice-for-depp,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28829103.0,2021-04-06 05:52:39+00:00,250.0,warner-bros-pictures-justice-for-depp,,,,,against +104,https://www.change.org/p/warner-bros-pictures-justice-for-depp,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28524358.0,2021-02-10 08:09:32+00:00,200.0,warner-bros-pictures-justice-for-depp,,,,,against +105,https://www.change.org/p/all-amber-heard-movies-to-get-amber-heard-removed-from-all-of-her-movies-and-get-johnny-depp-back-in-his-movies,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28553386.0,2021-02-15 14:46:26+00:00,25.0,all-amber-heard-movies-to-get-amber-heard-removed-from-all-of-her-movies-and-get-johnny-depp-back-in-his-movies,,,,,against +106,https://www.change.org/p/warner-brothers-keep-johnny-depp-as-grindlewald,0,0,0,0,,petitions_milestones,,,,3000.0,,,,,,,,,,,MilestonePetitionUpdate,28600322.0,2021-02-23 18:52:37+00:00,3000.0,warner-brothers-keep-johnny-depp-as-grindlewald,,,,,against +107,https://www.change.org/p/warner-brothers-keep-johnny-depp-as-grindlewald,0,0,0,0,,petitions_milestones,,,,2500.0,,,,,,,,,,,MilestonePetitionUpdate,28491876.0,2021-02-04 21:54:44+00:00,2500.0,warner-brothers-keep-johnny-depp-as-grindlewald,,,,,against +108,https://www.change.org/p/warner-brothers-keep-johnny-depp-as-grindlewald,0,0,0,0,,petitions_milestones,,,,2000.0,,,,,,,,,,,MilestonePetitionUpdate,28306477.0,2021-01-05 03:37:31+00:00,2000.0,warner-brothers-keep-johnny-depp-as-grindlewald,,,,,against +109,https://www.change.org/p/netflix-bring-johnny-depp-titles-back-to-netflix,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28291713.0,2021-01-01 23:31:28+00:00,5.0,netflix-bring-johnny-depp-titles-back-to-netflix,,,,,against +110,https://www.change.org/p/zack-snyder-amber-heard-out-ir-justice-league,0,0,0,0,,petitions_milestones,,,,3000.0,,,,,,,,,,,MilestonePetitionUpdate,28332031.0,2021-01-09 01:54:21+00:00,3000.0,zack-snyder-amber-heard-out-ir-justice-league,,,,,against +111,https://www.change.org/p/zack-snyder-amber-heard-out-ir-justice-league,0,0,0,0,,petitions_milestones,,,,2500.0,,,,,,,,,,,MilestonePetitionUpdate,28330216.0,2021-01-08 19:51:06+00:00,2500.0,zack-snyder-amber-heard-out-ir-justice-league,,,,,against +112,https://www.change.org/p/zack-snyder-amber-heard-out-ir-justice-league,0,0,0,0,,petitions_milestones,,,,2000.0,,,,,,,,,,,MilestonePetitionUpdate,28306030.0,2021-01-05 01:39:40+00:00,2000.0,zack-snyder-amber-heard-out-ir-justice-league,,,,,against +113,https://www.change.org/p/zack-snyder-amber-heard-out-ir-justice-league,0,0,0,0,,petitions_milestones,,,,1500.0,,,,,,,,,,,MilestonePetitionUpdate,28303052.0,2021-01-04 16:38:25+00:00,1500.0,zack-snyder-amber-heard-out-ir-justice-league,,,,,against +114,https://www.change.org/p/zack-snyder-amber-heard-out-ir-justice-league,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28296745.0,2021-01-03 07:48:43+00:00,1000.0,zack-snyder-amber-heard-out-ir-justice-league,,,,,against +115,https://www.change.org/p/warner-brothers-get-johnny-depp-his-role-in-fantastic-beasts-back-arrest-fire-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,,,6000.0,,,,,,,,,,,MilestonePetitionUpdate,28952806.0,2021-04-27 03:42:29+00:00,6000.0,warner-brothers-get-johnny-depp-his-role-in-fantastic-beasts-back-arrest-fire-amber-heard-from-aquaman-2,,,,,against +116,https://www.change.org/p/warner-brothers-get-johnny-depp-his-role-in-fantastic-beasts-back-arrest-fire-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,,,5000.0,,,,,,,,,,,MilestonePetitionUpdate,28535498.0,2021-02-11 21:04:11+00:00,5000.0,warner-brothers-get-johnny-depp-his-role-in-fantastic-beasts-back-arrest-fire-amber-heard-from-aquaman-2,,,,,against +117,https://www.change.org/p/warner-brothers-we-bring-back-johnny-depp-as-grindelwald,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28945071.0,2021-04-25 18:55:53+00:00,750.0,warner-brothers-we-bring-back-johnny-depp-as-grindelwald,,,,,against +118,https://www.change.org/p/warner-brothers-we-bring-back-johnny-depp-as-grindelwald,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28696338.0,2021-03-12 12:41:59+00:00,500.0,warner-brothers-we-bring-back-johnny-depp-as-grindelwald,,,,,against +119,https://www.change.org/p/the-times-uk-have-david-brown-fired-for-slander-of-johnny-depp,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28838645.0,2021-04-07 22:00:58+00:00,50.0,the-times-uk-have-david-brown-fired-for-slander-of-johnny-depp,,,,,against +120,https://www.change.org/p/the-sun-warner-bros-is-not-boiccoted-the-fault-is-of-the-judge-andrew-nicol-and-the-sun-newspaper,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28313873.0,2021-01-06 10:32:17+00:00,100.0,the-sun-warner-bros-is-not-boiccoted-the-fault-is-of-the-judge-andrew-nicol-and-the-sun-newspaper,,,,,against +121,https://www.change.org/p/federal-bureau-of-investigation-charge-amber-heard-for-illegal-attempt-to-dox-twitter-users,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28855420.0,2021-04-10 22:37:35+00:00,25.0,federal-bureau-of-investigation-charge-amber-heard-for-illegal-attempt-to-dox-twitter-users,,,,,against +122,https://www.change.org/p/federal-bureau-of-investigation-charge-amber-heard-for-illegal-attempt-to-dox-twitter-users,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28593590.0,2021-02-22 17:39:53+00:00,10.0,federal-bureau-of-investigation-charge-amber-heard-for-illegal-attempt-to-dox-twitter-users,,,,,against +123,https://www.change.org/p/federal-bureau-of-investigation-charge-amber-heard-for-illegal-attempt-to-dox-twitter-users,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28494708.0,2021-02-05 08:51:40+00:00,5.0,federal-bureau-of-investigation-charge-amber-heard-for-illegal-attempt-to-dox-twitter-users,,,,,against +124,https://www.change.org/p/johnny-depp-reopening-the-amber-heard-vs-johnny-depp-abuse-case-for-actual-justice-to-be-carried-out,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28391730.0,2021-01-19 19:56:50+00:00,25.0,johnny-depp-reopening-the-amber-heard-vs-johnny-depp-abuse-case-for-actual-justice-to-be-carried-out,,,,,against +125,https://www.change.org/p/the-sun-justice-for-johnny-depp,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28380531.0,2021-01-17 17:53:02+00:00,1000.0,the-sun-justice-for-johnny-depp,,,,,against +126,https://www.change.org/p/queremos-que-deborah-ann-woll-reemplace-a-amber-heard-como-mera-en-aquaman-2,0,0,0,0,,petitions_milestones,,,,8000.0,,,,,,,,,,,MilestonePetitionUpdate,28881977.0,2021-04-15 08:34:03+00:00,8000.0,queremos-que-deborah-ann-woll-reemplace-a-amber-heard-como-mera-en-aquaman-2,,,,,against +127,https://www.change.org/p/queremos-que-deborah-ann-woll-reemplace-a-amber-heard-como-mera-en-aquaman-2,0,0,0,0,,petitions_milestones,,,,7500.0,,,,,,,,,,,MilestonePetitionUpdate,28680427.0,2021-03-09 20:47:31+00:00,7500.0,queremos-que-deborah-ann-woll-reemplace-a-amber-heard-como-mera-en-aquaman-2,,,,,against +128,https://www.change.org/p/queremos-que-deborah-ann-woll-reemplace-a-amber-heard-como-mera-en-aquaman-2,0,0,0,0,,petitions_milestones,,,,7000.0,,,,,,,,,,,MilestonePetitionUpdate,28478515.0,2021-02-03 03:35:44+00:00,7000.0,queremos-que-deborah-ann-woll-reemplace-a-amber-heard-como-mera-en-aquaman-2,,,,,against +129,https://www.change.org/p/warner-brothers-drop-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28332804.0,2021-01-09 05:32:29+00:00,100.0,warner-brothers-drop-amber-heard-from-aquaman-2,,,,,against +130,https://www.change.org/p/dc-comics-amber-heard-is-a-victim-of-domestic-violence,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28602403.0,2021-02-24 01:43:25+00:00,750.0,dc-comics-amber-heard-is-a-victim-of-domestic-violence,,,,,for +131,https://www.change.org/p/dc-comics-amber-heard-is-a-victim-of-domestic-violence,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28595403.0,2021-02-22 22:46:42+00:00,500.0,dc-comics-amber-heard-is-a-victim-of-domestic-violence,,,,,for +132,https://www.change.org/p/dc-comics-amber-heard-is-a-victim-of-domestic-violence,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28584654.0,2021-02-20 21:08:53+00:00,250.0,dc-comics-amber-heard-is-a-victim-of-domestic-violence,,,,,for +133,https://www.change.org/p/dc-comics-amber-heard-is-a-victim-of-domestic-violence,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28584646.0,2021-02-20 21:07:56+00:00,250.0,dc-comics-amber-heard-is-a-victim-of-domestic-violence,,,,,for +134,https://www.change.org/p/dc-comics-amber-heard-is-a-victim-of-domestic-violence,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28569095.0,2021-02-18 03:55:30+00:00,200.0,dc-comics-amber-heard-is-a-victim-of-domestic-violence,,,,,for +135,https://www.change.org/p/dc-comics-amber-heard-is-a-victim-of-domestic-violence,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28568652.0,2021-02-18 02:03:24+00:00,100.0,dc-comics-amber-heard-is-a-victim-of-domestic-violence,,,,,for +136,https://www.change.org/p/dc-comics-amber-heard-is-a-victim-of-domestic-violence,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28568474.0,2021-02-18 01:24:19+00:00,50.0,dc-comics-amber-heard-is-a-victim-of-domestic-violence,,,,,for +137,https://www.change.org/p/dc-comics-amber-heard-is-a-victim-of-domestic-violence,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28568409.0,2021-02-18 01:08:24+00:00,25.0,dc-comics-amber-heard-is-a-victim-of-domestic-violence,,,,,for +138,https://www.change.org/p/dc-comics-amber-heard-is-a-victim-of-domestic-violence,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28568393.0,2021-02-18 01:03:48+00:00,10.0,dc-comics-amber-heard-is-a-victim-of-domestic-violence,,,,,for +139,https://www.change.org/p/dc-comics-amber-heard-is-a-victim-of-domestic-violence,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28568387.0,2021-02-18 01:01:35+00:00,5.0,dc-comics-amber-heard-is-a-victim-of-domestic-violence,,,,,for +140,https://www.change.org/p/warner-brothers-replace-actress-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28970533.0,2021-04-30 00:33:45+00:00,750.0,warner-brothers-replace-actress-amber-heard-in-aquaman-2,,,,,against +141,https://www.change.org/p/hollywood-blacklist-amber-heard-from-film-roles,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28547479.0,2021-02-14 02:12:18+00:00,25.0,hollywood-blacklist-amber-heard-from-film-roles,,,,,against +142,https://www.change.org/p/hollywood-blacklist-amber-heard-from-film-roles,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28536964.0,2021-02-12 01:45:22+00:00,10.0,hollywood-blacklist-amber-heard-from-film-roles,,,,,against +143,https://www.change.org/p/hollywood-blacklist-amber-heard-from-film-roles,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28536211.0,2021-02-11 23:05:30+00:00,5.0,hollywood-blacklist-amber-heard-from-film-roles,,,,,against +144,https://www.change.org/p/warner-brothers-johnny-depp-s-career-mustn-t-be-over-18cdc9fe-b8c8-4943-a5e7-ef77f33fa6af,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28903850.0,2021-04-18 23:21:19+00:00,200.0,warner-brothers-johnny-depp-s-career-mustn-t-be-over-18cdc9fe-b8c8-4943-a5e7-ef77f33fa6af,,,,,against +145,https://www.change.org/p/warner-brothers-johnny-depp-s-career-mustn-t-be-over-18cdc9fe-b8c8-4943-a5e7-ef77f33fa6af,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28430145.0,2021-01-26 16:21:03+00:00,100.0,warner-brothers-johnny-depp-s-career-mustn-t-be-over-18cdc9fe-b8c8-4943-a5e7-ef77f33fa6af,,,,,against +146,https://www.change.org/p/warner-brothers-johnny-depp-s-career-mustn-t-be-over-18cdc9fe-b8c8-4943-a5e7-ef77f33fa6af,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28389813.0,2021-01-19 14:15:37+00:00,50.0,warner-brothers-johnny-depp-s-career-mustn-t-be-over-18cdc9fe-b8c8-4943-a5e7-ef77f33fa6af,,,,,against +147,https://www.change.org/p/warner-brothers-johnny-depp-s-career-mustn-t-be-over-18cdc9fe-b8c8-4943-a5e7-ef77f33fa6af,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28356094.0,2021-01-13 09:05:10+00:00,25.0,warner-brothers-johnny-depp-s-career-mustn-t-be-over-18cdc9fe-b8c8-4943-a5e7-ef77f33fa6af,,,,,against +148,https://www.change.org/p/warner-brothers-johnny-depp-s-career-mustn-t-be-over-18cdc9fe-b8c8-4943-a5e7-ef77f33fa6af,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28329824.0,2021-01-08 18:54:57+00:00,10.0,warner-brothers-johnny-depp-s-career-mustn-t-be-over-18cdc9fe-b8c8-4943-a5e7-ef77f33fa6af,,,,,against +149,https://www.change.org/p/warner-brothers-johnny-depp-s-career-mustn-t-be-over-18cdc9fe-b8c8-4943-a5e7-ef77f33fa6af,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28319891.0,2021-01-07 06:56:22+00:00,5.0,warner-brothers-johnny-depp-s-career-mustn-t-be-over-18cdc9fe-b8c8-4943-a5e7-ef77f33fa6af,,,,,against +150,https://www.change.org/p/warner-brothers-boycott-aquaman-2-and-l-oreal,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28606800.0,2021-02-24 19:21:34+00:00,750.0,warner-brothers-boycott-aquaman-2-and-l-oreal,,,,,against +151,https://www.change.org/p/warner-brothers-boycott-aquaman-2-and-l-oreal,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28390683.0,2021-01-19 16:48:33+00:00,500.0,warner-brothers-boycott-aquaman-2-and-l-oreal,,,,,against +152,https://www.change.org/p/disney-get-johnny-depp-back-in-pirates-6,0,0,0,0,,petitions_milestones,,,,4000.0,,,,,,,,,,,MilestonePetitionUpdate,28841529.0,2021-04-08 12:13:11+00:00,4000.0,disney-get-johnny-depp-back-in-pirates-6,,,,,against +153,https://www.change.org/p/change-org-enough-is-enough-justice-for-johnny-depp,0,0,0,0,,petitions_milestones,,,,1500.0,,,,,,,,,,,MilestonePetitionUpdate,28377854.0,2021-01-17 02:09:34+00:00,1500.0,change-org-enough-is-enough-justice-for-johnny-depp,,,,,against +154,https://www.change.org/p/warner-brothers-studios-boycott-warner-studio-for-their-support-of-amber-heard,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28760417.0,2021-03-23 18:06:51+00:00,10.0,warner-brothers-studios-boycott-warner-studio-for-their-support-of-amber-heard,,,,,against +155,https://www.change.org/p/warner-brothers-studios-boycott-warner-studio-for-their-support-of-amber-heard,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28323329.0,2021-01-07 19:00:59+00:00,5.0,warner-brothers-studios-boycott-warner-studio-for-their-support-of-amber-heard,,,,,against +156,https://www.change.org/p/royal-courts-of-justice-justice-for-johnny-depp,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28833254.0,2021-04-06 23:50:00+00:00,10.0,royal-courts-of-justice-justice-for-johnny-depp,,,,,against +157,https://www.change.org/p/warner-bros-justice-for-johnny-depp-9b0632cd-0d95-4d09-89e9-4f634aada714,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28538528.0,2021-02-12 10:14:29+00:00,25.0,warner-bros-justice-for-johnny-depp-9b0632cd-0d95-4d09-89e9-4f634aada714,,,,,against +158,https://www.change.org/p/movie-and-tv-watchers-have-amber-heard-removed-from-acting-all-together,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28760279.0,2021-03-23 17:44:11+00:00,25.0,movie-and-tv-watchers-have-amber-heard-removed-from-acting-all-together,,,,,against +159,https://www.change.org/p/the-walt-disney-company-restore-johnny-depp-after-amber-heard-evidence-proves-innocence,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28941662.0,2021-04-25 00:50:55+00:00,100.0,the-walt-disney-company-restore-johnny-depp-after-amber-heard-evidence-proves-innocence,,,,,against +160,https://www.change.org/p/movie-fans-emilia-clarke-should-replace-amber-heard-as-mera-in-aquaman-2-movie,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28523396.0,2021-02-10 02:56:40+00:00,100.0,movie-fans-emilia-clarke-should-replace-amber-heard-as-mera-in-aquaman-2-movie,,,,,against +161,https://www.change.org/p/walt-disney-do-not-hire-amber-heard-for-tangled-live-action,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28568449.0,2021-02-18 01:18:38+00:00,10.0,walt-disney-do-not-hire-amber-heard-for-tangled-live-action,,,,,for +162,https://www.change.org/p/walt-disney-do-not-hire-amber-heard-for-tangled-live-action,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28562153.0,2021-02-17 00:00:15+00:00,5.0,walt-disney-do-not-hire-amber-heard-for-tangled-live-action,,,,,for +163,https://www.change.org/p/no-one-black-list-amber-heard,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28525619.0,2021-02-10 13:49:12+00:00,50.0,no-one-black-list-amber-heard,,,,,against +164,https://www.change.org/p/andrew-nicol-amber-heard-is-the-abuser-supporting-johnny-depp,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28317264.0,2021-01-06 20:51:57+00:00,25.0,andrew-nicol-amber-heard-is-the-abuser-supporting-johnny-depp,,,,,against +165,https://www.change.org/p/warner-brothers-replace-amber-heard-with-scarlet-johanson,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28903150.0,2021-04-18 20:37:39+00:00,10.0,warner-brothers-replace-amber-heard-with-scarlet-johanson,,,,,against +166,https://www.change.org/p/walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28630363.0,2021-03-01 05:58:33+00:00,200.0,walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,,,,,for +167,https://www.change.org/p/walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28616347.0,2021-02-26 08:54:41+00:00,1000.0,walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,,,,,for +168,https://www.change.org/p/walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28591118.0,2021-02-22 07:26:01+00:00,750.0,walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,,,,,for +169,https://www.change.org/p/walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28581344.0,2021-02-20 04:20:38+00:00,500.0,walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,,,,,for +170,https://www.change.org/p/walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28570121.0,2021-02-18 09:46:45+00:00,250.0,walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,,,,,for +171,https://www.change.org/p/walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28569920.0,2021-02-18 08:44:40+00:00,200.0,walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,,,,,for +172,https://www.change.org/p/walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28569677.0,2021-02-18 07:26:19+00:00,100.0,walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,,,,,for +173,https://www.change.org/p/walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28569570.0,2021-02-18 06:34:39+00:00,50.0,walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,,,,,for +174,https://www.change.org/p/walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28569535.0,2021-02-18 06:17:45+00:00,25.0,walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,,,,,for +175,https://www.change.org/p/walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28569496.0,2021-02-18 06:04:28+00:00,10.0,walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,,,,,for +176,https://www.change.org/p/walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28569494.0,2021-02-18 06:03:04+00:00,5.0,walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,,,,,for +177,https://www.change.org/p/warner-brothers-remove-amber-heard-as-mere-in-aqua-man-2,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28637780.0,2021-03-02 12:14:05+00:00,250.0,warner-brothers-remove-amber-heard-as-mere-in-aqua-man-2,,,,,against +178,https://www.change.org/p/support-amber-heard-in-aquaman-2-her-life-and-public-safety-to-save-lives-warner-bros-mera-loreal-united-nations-aclu,0,0,0,0,,petitions_milestones,,"

New Movie: Amber Heard vs Johnny Depp's Deception, Violence, & Agents. Many actresses were on BlackCube's hit list, including Rose McGowan. Although Elon Musk rushed in after high-profile violence, Amber Heard faces Depp's agent Adam Waldman - who represented Steele's Dossier, an Oligarch in organized crime, and targeted Julian Assange for election interference.

+

Watch the New Movie here: https://www.youtube.com/watch?v=79GX1RNB4B8

+

Among the death threats and social bots online - as tech is a part of this 21st Century story - Waldman refers to homeland security as Depp and Waldman claim Amber created a 'dossier.' In parallels, actress Brittany Murphy and Julia Davis 10 years earlier were targeted and severely monitored for testifying on border control issues of homeland security. Murphy lost her roles in Happy Feet 2 and died suddenly. Amber Heard is targeted to remove her from Aquaman 2 and to kill her.

+

Why is Amber Heard's story beginning to sound like a ""007 Flemming's novel"" to an artificial intelligence auditor?

+

Rose McGowan states Weinstein hired agents who pretended they were journalists and in victim's support groups. They terrified dozens of actresses. Similarly, intense real-time monitoring occurs for Amber Heard online using AI Bots which claim using ""I am"" Persona Dialogue - open source between 2017 and 2020 - to be 'victims' and use ILM/Alex fill in the blank based on previous text Dialogues which goes beyond a 2021 social network analysis paper using BERT: https://ieeexplore.ieee.org/abstract/document/9385071 In irony, Elon Musk's OpenAI GPT-2 and GPT-3 - https://github.com/harperreed/gpt3-persona-bot - likely is being used against his ex girlfriend, Amber Heard.

+

Witnesses have been threatened with death, as we were alerted to nearly 2 years ago when an alleged partner of ex-staff claimed Depp's agents wanted to make lies about Amber Heard's trips to Tijuana and targeting her humanitarian work. Their goal is to destroy her, and it was the tip of the iceberg. Depp is cheered and incited by an audience to assassinate President Trump in a clip from his open suggestion.

+

Then we show how Depp harms Amber Heard with Coercive Control - a level of understanding now understood about domestic violence in Australia, New Zealand, and the United Kingdom. The United Kingdom is where Amber won in the NGN trial proving she was a victim of violence in at least 12 out of 14 incidents.

+

Audio clips, which were cut out of timed leaks, from Incredibly Incredible's channel - https://www.youtube.com/channel/UCjKNc-woAlnxt0H-yJ8RXJg - are shown to provide context to Coercive Control. From 60 Minutes, a woman in Australia who eventually called the police is told by a corrupt officer that she shouldn't have texted, in writing, about her husband's temper during intoxication that pushes him over the edge as it would trigger an investigation.

+

In 2016, Amber and IO finally called the police after fearing for her life. Officers went to Depp's 5 Penthouses in Downtown Los Angeles which we show with a pool, numerous rooms, and abusive paintings on the walls which people walk by and ignore. Right next door to this extreme wealth, are the slums of Los Angeles.

+

""What happened on private jets and islands between Amber Heard and Johnny Depp?"" Was it really broadcasted, or was it silenced and twisted?

+

""Hey @mariannaspring [BBC], after I discovered the connection between Johnny Depp attorney Adam Waldman & a Vladimir Putin-connected Russian oligarch 16 months ago, I postulated the theory Depp's team was using bots to influence public opinion on his case."" - The Geek Buzz, July 28, 2020

+

""Twitter can be a hostile place,” [Jennifer Robinson] says. “The online attacks in respect of Amber have been far worse than anything I experienced during the Julian Assange case.” - Financial Times In Context: Jennifer Robinson, Assange's lawyer of 10 years, had to be hired by Amber Heard. Waldman met with Assange to target him at least 7 times. We show a political clip showing texts between Waldman and Senator Warner of Virginia about Steele's dossier.

+

""... It's a hoax by Adam ""former lobbyist for Russian Putin Lackey Oleg Deripaska who sought complete immunity in the US Senate Russian 2016 hacking hearings"" Waldman."" - The Geek Buzz, July 29, 2020 (Bots & Personality?)

+

""New legal claims filed against Johnny Depp for targeting his ex-wife on social media, specifically through the alleged deployment of ""bots"" to smear her and interfere with her career opportunities."" - Eric Gardner, Hollywood Reporter ""RottenTomatoes, IMDB, metacritic have all all changed their online methods to post reviews because of it. Again, very similar patterns and, frankly, targets. In 2016, the target was Hillary Clinton. In the case of review bombing, the target was female-fronted films."" - The Geek Buzz, July 28, 2020

+

Read 45 page book here for *free* background summary: https://www.scribd.com/document/499721424/Amber-Heard-vs-Johnny-Depp-Bots-Case-21st-Century-Story

+
    +
  • #AmberHeard​ #Movie​ #JohnnyDepp​ #MeToo​ #ElonMusk​ #Spies​ #Aquaman

    We just want to Save Amber Heard's Life and we see that so far, in social network analysis, there were over 600,000 targeted tweets/activities against Amber Heard in 2020. Over 30,000 tweets/activities were on January 27th, days before the audio leaks beginning on January 31st in the Daily Mail newspaper and there were few targeted tweets before then in that month. There were over 50,000 on November 2nd, with heightened targeting when it was announced that she won by Judge Nicol in the UK. Ironically, timed with the USA's elections.
  • +
  • Over 9,000 accounts in Natural Language Understanding are seen against her in latest 50,000 tweets with 1,500 supporting accounts in a more specialized monitoring page process.
  • +
  • Recommended reading is ""The Price of Influence:
    Disinformation in the Private Sector"" with aged accounts layered then with new accounts: https://go.recordedfuture.com/hubfs/reports/cta-2019-0930.pdf
  • +
  • Recently, we saw two AI Bot accounts threatening Amber Heard with a dead heart profile and raw flesh banner, and Hunting Hound working, then a faceless profile working to boost as well (layered persona bots). If you recall, the trials in 2020 revealed that Depp put raw meat around the house and in Amber's gown. How does a moderator-type person who is 'not a bystander' sleep? It's like a smoking gun that we used to ask a Twitter Worker - finally reached after all of this time - for help, who said our studies were forwarded.
  • +
  • On April 2nd, they said a proactive bot would be used to monitor for only 1 week. We also tried asking Bodyguard AI (from France and gratefully referred by Metta Space which looks at NLP) about helping, and they can also help protect from targeted customization directly (but that's not an ecosystem). They're just starting to reach the USA.
  • +
  • See the amazing movie here and please share with friends:
  • +
  • ""Amber Heard vs Johnny Depp Movie | Crime, Rose McGowan, Violence, Bots, Brittany Murphy, & Elections"": https://www.youtube.com/watch?v=79GX1RNB4B8
  • +
",,,,,,,,,,,,"Amber Heard vs Johnny Depp Movie | Crime, Rose McGowan, Violence, Bots, Brittany Murphy, & Elections",StarterPetitionUpdate,28878551.0,2021-04-14 19:08:22+00:00,,support-amber-heard-in-aquaman-2-her-life-and-public-safety-to-save-lives-warner-bros-mera-loreal-united-nations-aclu,"{'id': '225436202', 'petitionMedium': {'url': '//assets.change.org/photos/2/oq/cs/YSOqcshOKyqyaHf-800x450-noPad.jpg?1618427303', 'processing': False}}","{'photo': {'id': '225440429', 'petitionMedium': {'url': '//assets.change.org/photos/9/jk/zm/XQJkzMrlUIyIJKZ-800x450-noPad.jpg?1618507248', 'processing': False}}}",,,for +179,https://www.change.org/p/support-amber-heard-in-aquaman-2-her-life-and-public-safety-to-save-lives-warner-bros-mera-loreal-united-nations-aclu,0,0,0,0,,petitions_milestones,,"

Good News about a Mera TV Show, Amber Heard's Countersuit going forward, and more citations of evidence in this internet era. ""According to insider Daniel Richtman, Heard has reportedly had talks with the studio about doing a Mera TV show, which would end up on HBO Max. That’s all Richtman, who shared the intel on his Patreon page, has revealed at the moment, but this info does add up with everything we’ve heard about WB’s plans to expand the DCEU onto the small screen and make use of their new streaming service. After all, they’re going to want to create as many offshoots from the movies as they can, so it adds up that they would explore doing more with one of the DC universe’s leading ladies.""

+

Heard has said she’s excited to return as Mera in Aquaman 2. Not only that, but she might even get her own vehicle as the future queen of the oceans...""

+

https://wegotthiscovered.com/tv/amber-heard-reportedly-talks-hbo-max-spinoff-mera/

+

Remember Amber Heard's extensive evidence despite manipulation via social media online ... (so much, that we all recently saw the deadly attack at the Washington DC Capitol, which was incited and organized online)....
According to someone with NATO clearance, since at least April/March of 2020 it's been known about hostile entities using bots on Twitter and elsewhere to try to cause a USA Civil War... and people continue to walk right into it. The Virginia ruling to dismiss Amber's cyberabuse sections of her counter lawsuit is another sign of USA weaknesses against hate and objectification online that's causing in-person violence. It's tragic.

+

How does this affect Amber Heard? She's caught in the middle of this era and is a Cyber Civil Rights Spokesperson. SHEILD Act still has not passed.

+

We're continuing to take down hate pages, such as one on Reddit, and we reported the continuous hate bots, even to an AI Lead of Google (who recognized spam as harmful, but not abuse of saying 'she's not a victim') and a Diversity, Equity, and Inclusion (DEI) worker there.

+

When will social impact matter more for future generations?

+

JANUARY 05, 2021 by Eriq Gardner - Amber's Countersuit goes forward, but misses the online part of social manipulation.

+

Johnny Depp Must Face Ex's Libel Suit After His Attorney Declared ""Hoax""

+

A Virginia judge allows Amber Heard to partially proceed on counterclaims, although not the one that targeted her ex-husband for allegedly deploying bots against her.
Johnny Depp has failed to leverage a new law that he may be partially credited for bringing about. On Monday, a Virginia state court judge rejected the actor's bid for immunity over statements made about Depp's ex-wife Amber Heard. As a result, if the case moves to trial later this year, Depp will face counterclaims after his attorney told media outlets that Heard's tale of domestic abuse was a ""hoax.""...

+

Heard alleges that her former husband has deployed social media bots against her in alleged violation of Virginia's Computer Crimes Act. She says he's directed a concerted effort to tarnish her career and interfere with endorsements and acting gigs as retaliation for what she has publicly claimed about their troubled marriage. As for Heard's story of being abused, after Depp attorney Adam Waldman told media outlets that it was ""fake"" and all part of a ""sexual violence hoax,"" Heard included defamation counterclaims too...

+

Now comes White's first big decision on those counterclaims — a ruling that represents the most significant legal development since a U.K. judge rejected Depp's lawsuit against a British tabloid. The November ruling that Heard's tale of being physically assaulted was ""substantially true"" has wounded Depp's career...

+

The judge rules that Heard hasn't sufficiently alleged the elements of a computer crime, in particular communication of obscene language.

+

But Depp will continue to face her $100 million claim over statements made by Waldman to the Daily Mail in 2020. (Prior statements are deemed outside the statute of limitations.)...

+

""In support of her accusation of malice, Ms. Heard alleged that the GQ journalist, Mr. Heath, stated that Mr. Depp invited him to interview the actor because he was 'angry —angry about a lot of things —and he's vengeful,'"" states the opinion. ""Moreover, Ms. Heard has alleged that Mr. Depp has the intention of ruining her career; citing statements that he made to friends demonstrating a malicious intent. Further, Mr. Depp has admitted his intent to destroy Ms. Heard's career by stating that he wanted her replaced on Aquaman. Accordingly, Ms. Heard has sufficiently pled a malicious intent, which prevents a ruling on the self-defense privilege at this stage in the litigation.""

From: https://www.hollywoodreporter.com/thr-esq/johnny-depp-must-face-exs-libel-suit-after-his-attorney-declared-hoax

+

The entire document of the case update is in PDF at the end of the article. Broken Link: https://assets.documentcloud.org/documents/20441201/cl-2019-2911-depp-v-heard-01-24-21.pdf

+

Witnesses saw Amber’s injuries and her evidence:

+

Josh Drew: December 2015, Los Angeles — Rocky told me that something wasn’t right and sent me home while she looked for Amber. About 10–15 minutes later I received a message from Rocky saying something like “he beat the sh** out of her again” and told me she was looking after her. I remember being told that they had reached out to a nurse to do a concussion check. 16. Rocky told me that there was a big fight and Johnny had head butted Amber, ripped out pieces of her hair and smothered her and that they had to call Dr Kipper’s office to get Amber a concussion check. I also talked to Amber about it. 17. I saw Amber that night and the next day saw her injuries: she had bruising around both eyes which extended down the bridge of her nose and her forehead was red…
21 May 2016, Los Angeles: I met Jerry downstairs and gave him the phone. He took a few steps to walk away and then turned and asked me ·Is she okay?”. I said something like, “Are you f** kidding me? He beat the sh** out of her again and you guys stood by and watched it”

+

Melanie Inglessis: “I remember numerous conversations in which Amber would tell me that Johnny had abused her. Just about every conversation alternated between her love for him and the problem of his abuse. These conversations took place well before she divorced Johnny and got a restraining order against him.7.The first time I saw the physical evidence of Johnny’s abuse was before Amber was scheduled to appear on the Late Show with James Corden. Amber and I were supposed to go bowling the night before, but Amber told me that she could not join because she had been in a bad fight with Johnny. I came over to the Eastern Building to apply makeup before her TV appearance, and as I walked into her kitchen, I saw writing on the countertop in gold marker. Attached hereto as Exhibit 1 is a true and correct copy of a picture that depicts the writing I saw that night. I also saw that a number of Amber’s possessions had been smashed or destroyed.”

+

IO Tillet: “The reports of violence started with a kick on a private plane, then it was shoves and the occasional punch, until finally, in December, she described an all-out assault and she woke up with her pillow covered in blood. I know this because I went to their house. I saw the pillow with my own eyes. I saw the busted lip and the clumps of hair on the floor. I got the phone call immediately after it happened, her screaming and crying, a stoic woman reduced to sobs.”

+

In 70,000 texts: “Depp adds, “Let’s drown her before we burn her!!! I will f** her burnt corpse afterwards to make sure she’s dead.”

+

Sources say he paid his first wife, Lori Anne Allison, $1.25 million to keep quiet after he allegedly left a long ranting message in which he repeatedly used the N-word. The previously unreported settlement was accomplished using fictitious names to avoid scrutiny, with Richard Green serving as the stand-in for Johnny Depp.

+

Photos, audios, texts, witnesses, and data proved Amber Heard is a victim of domestic abuse.

+

Amber is a spokesperson for the ACLU, Cyber Civil Rights Initiative, World Identity Network, and United Nations Gender Equality SDG5.

+

Heard continues to make frequent trips to DC to lobby and fight on behalf of the civil rights of women and the innumerable silent survivors of gender-based violence that were attempting to make their voices heard during that pivotal moment in US history. In October 2018, she visited the United Nations in Geneva, where she addressed diplomats about women’s rights and gender-based violence. Most recently Amber presented the UN Sexual Violence Survivors Rights Resolution at the General Assembly to International diplomats and ambassadors along side RISE (A Non Profit that has successfully passed civil rights bills in 38 states domestically). Amber has continued with trips to Central America where she met with human-rights defenders, diplomats, and indigenous community leaders.

+

She has spoken for, introduced and advocated for democratic candidate Kamala Harris since 2007 and has been very active in supporting Harris in her 2020 presidential run. Most recently, Amber has introduced and advocated for federal legislation to criminalize consensual pornography (known as “revenge porn”) through bi-partisan congressional support with Representative Jackie Speir, Congressman John Katko, and Kamala Harris. Her actions have been crucial to the creation and passing of the SHIELD Act, which is the legislation she is fighting to pass in DC, in her capacity as the Cyber Civil Rights Initiative Ambassador.

+

An eloquent and passionate speaker, Amber has lent her voice to major global events like the UN Social Good Summit, Global Citizen Festival, One Young World Conference and the Incredible Women Gala... She has participated in global forums for young people, women, and the scientific community. Not only has Amber spoken to a global audience, but also she has addressed at the Create and Cultivate conference in New York and the Giffoni Film Foundation Festival & Conference in Italy and spoke at the UN for the UN WE Day in New York. Most recently Heard was honored by the Hetrick Martin Institute in NY and given the Emery Award. Heard was honored by ACLU in 2017 with the Humanitarian of the Year award.

+

Recently, Amber spoke with Richard Dawkins and the Center for Inquiry in a symposium on scientific inquiry and free-thought in the increasingly polarized political world at Arizona State University for thousands of people attending.

+

A single incident would have proved the ‘wife beater’ charge of libel, but NGN proved 12 out of 14 incidents of violence in their closing submissionshttps://80b08171-ce73-4488-b369-fe3934b0504a.filesusr.com/ugd/5df505_23ef139d05094dbb981cd11ff3d7240f.pdf

+

Incredibly Incredible shows omitted audios and photos of texts: https://www.youtube.com/channel/UCjKNc-woAlnxt0H-yJ8RXJg

+

Amber Heard is a positive influence in the world and, importantly, fought back against an abusive man and abusive system.

+

 

",,,,,,,,,,,,"Amber Heard may have Mera HBO Show, Counter Lawsuit Goes Forward, & More Evidence in Online Hate Era",StarterPetitionUpdate,28338192.0,2021-01-10 08:18:31+00:00,,support-amber-heard-in-aquaman-2-her-life-and-public-safety-to-save-lives-warner-bros-mera-loreal-united-nations-aclu,"{'id': '225065623', 'petitionMedium': {'url': '//assets.change.org/photos/0/cm/sb/HlcmSbluklMPhZX-800x450-noPad.jpg?1610266712', 'processing': False}}",,,,for +180,https://www.change.org/p/warner-brothers-support-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28511238.0,2021-02-08 07:21:49+00:00,750.0,warner-brothers-support-amber-heard-in-aquaman-2,,,,,for +181,https://www.change.org/p/warner-brothers-support-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28511235.0,2021-02-08 07:21:22+00:00,750.0,warner-brothers-support-amber-heard-in-aquaman-2,,,,,for +182,https://www.change.org/p/warner-brothers-support-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28511232.0,2021-02-08 07:20:34+00:00,750.0,warner-brothers-support-amber-heard-in-aquaman-2,,,,,for +183,https://www.change.org/p/warner-brothers-support-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28509950.0,2021-02-08 00:28:41+00:00,500.0,warner-brothers-support-amber-heard-in-aquaman-2,,,,,for +184,https://www.change.org/p/warner-brothers-support-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28505780.0,2021-02-07 05:04:37+00:00,250.0,warner-brothers-support-amber-heard-in-aquaman-2,,,,,for +185,https://www.change.org/p/warner-brothers-support-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28440364.0,2021-01-28 04:38:42+00:00,200.0,warner-brothers-support-amber-heard-in-aquaman-2,,,,,for +186,https://www.change.org/p/warner-brothers-support-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28408503.0,2021-01-22 16:25:23+00:00,100.0,warner-brothers-support-amber-heard-in-aquaman-2,,,,,for +187,https://www.change.org/p/warner-brothers-support-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28394312.0,2021-01-20 07:17:45+00:00,50.0,warner-brothers-support-amber-heard-in-aquaman-2,,,,,for +188,https://www.change.org/p/warner-brothers-support-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28386096.0,2021-01-18 19:50:21+00:00,25.0,warner-brothers-support-amber-heard-in-aquaman-2,,,,,for +189,https://www.change.org/p/marvel-johnny-depp-as-ghost-rider-in-mcu,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28865634.0,2021-04-12 20:14:31+00:00,25.0,marvel-johnny-depp-as-ghost-rider-in-mcu,,,,,against +190,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,10000.0,,,,,,,,,,,MilestonePetitionUpdate,28954324.0,2021-04-27 12:05:23+00:00,10000.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +191,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,9000.0,,,,,,,,,,,MilestonePetitionUpdate,28790602.0,2021-03-29 08:11:58+00:00,9000.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +192,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,8000.0,,,,,,,,,,,MilestonePetitionUpdate,28656514.0,2021-03-05 08:23:52+00:00,8000.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +193,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,7500.0,,,,,,,,,,,MilestonePetitionUpdate,28624015.0,2021-02-27 20:16:58+00:00,7500.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +194,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,7000.0,,,,,,,,,,,MilestonePetitionUpdate,28597457.0,2021-02-23 08:40:30+00:00,7000.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +195,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,6000.0,,,,,,,,,,,MilestonePetitionUpdate,28536099.0,2021-02-11 22:46:11+00:00,6000.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +196,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,5000.0,,,,,,,,,,,MilestonePetitionUpdate,28476462.0,2021-02-02 21:18:38+00:00,5000.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +197,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,4000.0,,,,,,,,,,,MilestonePetitionUpdate,28446340.0,2021-01-29 00:01:02+00:00,4000.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +198,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,3000.0,,,,,,,,,,,MilestonePetitionUpdate,28392453.0,2021-01-19 22:10:32+00:00,3000.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +199,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,"

I am blown away by the amount of signatures on this petition, I really can't believe it thank you all so much! Were almost to 3,000 names so be sure to share it whit everyone you know and keep signing petitions like this one so justice can be served! 

",,,,,,,,,,,,WOW!,StarterPetitionUpdate,28366343.0,2021-01-14 22:55:30+00:00,,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +200,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,2500.0,,,,,,,,,,,MilestonePetitionUpdate,28344292.0,2021-01-11 12:57:16+00:00,2500.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +201,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,0,0,,petitions_milestones,,,,2000.0,,,,,,,,,,,MilestonePetitionUpdate,28293015.0,2021-01-02 11:28:32+00:00,2000.0,united-states-supreme-court-put-amber-heard-behind-bars,,,,,against +202,https://www.change.org/p/warner-brothers-boycott-warner-bros,0,0,0,0,,petitions_milestones,,,,17500.0,,,,,,,,,,,MilestonePetitionUpdate,28441286.0,2021-01-28 09:28:30+00:00,17500.0,warner-brothers-boycott-warner-bros,,,,,against +203,https://www.change.org/p/johnny-depp-as-jack-sparrow-bring-back-johnny-depp-as-jack-sparrow,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28317572.0,2021-01-06 21:40:12+00:00,10.0,johnny-depp-as-jack-sparrow-bring-back-johnny-depp-as-jack-sparrow,,,,,against +204,https://www.change.org/p/hollywood-boycott-aquaman-2-amber-heard,0,0,0,0,,petitions_milestones,,,,20000.0,,,,,,,,,,,MilestonePetitionUpdate,28508927.0,2021-02-07 20:25:32+00:00,20000.0,hollywood-boycott-aquaman-2-amber-heard,,,,,against +205,https://www.change.org/p/who-ever-makes-the-movie-keep-amber-heard-as-mera,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28498351.0,2021-02-05 20:05:10+00:00,100.0,who-ever-makes-the-movie-keep-amber-heard-as-mera,,,,,for +206,https://www.change.org/p/who-ever-makes-the-movie-keep-amber-heard-as-mera,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28498322.0,2021-02-05 20:00:18+00:00,100.0,who-ever-makes-the-movie-keep-amber-heard-as-mera,,,,,for +207,https://www.change.org/p/who-ever-makes-the-movie-keep-amber-heard-as-mera,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28371878.0,2021-01-15 21:14:03+00:00,50.0,who-ever-makes-the-movie-keep-amber-heard-as-mera,,,,,for +208,https://www.change.org/p/who-ever-makes-the-movie-keep-amber-heard-as-mera,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28371291.0,2021-01-15 19:32:09+00:00,25.0,who-ever-makes-the-movie-keep-amber-heard-as-mera,,,,,for +209,https://www.change.org/p/johnny-s-fans-to-get-johnny-depp-s-career-back,0,0,0,0,,petitions_milestones,,"

 I’m so happy to have so many supporters and I want to thank you guys for the support
Hi all, I just wanted to reach out to let you know we’ve just passed 133,463 signatures on our petition! Thank you so much for your support! Will you help me to get more support by sharing this petition with ten other people? If enough of us sign we can’t be ignored! Here’s a link to share https://www.change.org/p/johnny-s-fans-to-get-johnny-depp-s-career-back

",,,,,,,,,,,,Let’s take this campaign to the next level,StarterPetitionUpdate,28756359.0,2021-03-23 00:30:46+00:00,,johnny-s-fans-to-get-johnny-depp-s-career-back,,,,,against +210,https://www.change.org/p/johnny-s-fans-to-get-johnny-depp-s-career-back,0,0,0,0,,petitions_milestones,,

I know I haven’t updated you guys on anything but we are doing great but I think with some more sharing and promoting we can do better I’m willing to get this to everyone if I need to and I just wanted to say thank you everyone who has taken their to sign this petition.

,,,,,,,,,,,,Thank you everyone,StarterPetitionUpdate,28459214.0,2021-01-31 08:03:32+00:00,,johnny-s-fans-to-get-johnny-depp-s-career-back,,,,,against +211,https://www.change.org/p/warner-bros-petition-to-bring-johnny-depp-back-in-fantastic-beasts,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28361451.0,2021-01-14 03:26:01+00:00,750.0,warner-bros-petition-to-bring-johnny-depp-back-in-fantastic-beasts,,,,,against +212,https://www.change.org/p/warner-bros-petition-to-bring-johnny-depp-back-in-fantastic-beasts,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28326613.0,2021-01-08 06:39:41+00:00,500.0,warner-bros-petition-to-bring-johnny-depp-back-in-fantastic-beasts,,,,,against +213,https://www.change.org/p/warner-bros-disney-the-jury-cheers-to-bringing-back-johnny-depps-name,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28311174.0,2021-01-05 21:34:08+00:00,25.0,warner-bros-disney-the-jury-cheers-to-bringing-back-johnny-depps-name,,,,,against +214,https://www.change.org/p/warner-bros-disney-the-jury-cheers-to-bringing-back-johnny-depps-name,0,0,0,0,,petitions_milestones,,"

This is brilliant!

+

I never expected the signatures to go up like this in a day, but this is astounding. 

+

Thank you for the taking the time to read and listen to Johnny depps side. As I believe, his side seems to have been misguided... He will surely be grateful. For every small tweet, phrase, will go to his favour.

+

Well keep going! Buy some sauvage Dior, watch a Pirate's of the Carribbean movie, because we do have a long way to go yet, 

+

It's in the horizon, getting closer to our reach, but we'll get there. And we will be heard.

+

Have hope, faith and courage.

+

This stigma, will end.

+

Maisy - Anne Clark 

",,,,,,,,,,,,This is brilliant!,StarterPetitionUpdate,28310952.0,2021-01-05 20:50:49+00:00,,warner-bros-disney-the-jury-cheers-to-bringing-back-johnny-depps-name,"{'id': '225045715', 'petitionMedium': {'url': '//assets.change.org/photos/1/uk/xc/RwuKxCgSVNRrMpn-800x450-noPad.jpg?1609879851', 'processing': False}}",,,,against +215,https://www.change.org/p/warner-bros-disney-the-jury-cheers-to-bringing-back-johnny-depps-name,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28308387.0,2021-01-05 13:45:17+00:00,10.0,warner-bros-disney-the-jury-cheers-to-bringing-back-johnny-depps-name,,,,,against +216,https://www.change.org/p/warner-bros-disney-the-jury-cheers-to-bringing-back-johnny-depps-name,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28307882.0,2021-01-05 11:59:47+00:00,5.0,warner-bros-disney-the-jury-cheers-to-bringing-back-johnny-depps-name,,,,,against +217,https://www.change.org/p/warner-bros-disney-the-jury-cheers-to-bringing-back-johnny-depps-name,0,0,0,0,,petitions_milestones,,"

I was scrolling on twitter today, and saw a statement that spurred me on-

+

""I'm reading new documents, and it smells justice for Johnny will be so hard""

+

So I said-

+

""With the publicitys voices, we are a choir, of hope and determination, willpower and change""

+

If we believe, what we say we believe, it changes everything.

+

Hope is wishing something will happen.

+

Faith is believing something will happen.

+

And courage is making something happen.

+

So let's have courage , and remember what we are fighting for. 

+

Sign, share and spread the word.

+

Our token of performance - Johnny Depp

",,,,,,,,,,,,"Hope, faith and courage",StarterPetitionUpdate,28307737.0,2021-01-05 11:26:48+00:00,,warner-bros-disney-the-jury-cheers-to-bringing-back-johnny-depps-name,"{'id': '225043435', 'petitionMedium': {'url': '//assets.change.org/photos/4/rd/xb/BDrDxBKxQctqnNa-800x450-noPad.jpg?1609846010', 'processing': False}}",,,,against +218,https://www.change.org/p/dc-comics-get-amber-heard-removed-from-aquaman-2,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28332609.0,2021-01-09 04:24:41+00:00,25.0,dc-comics-get-amber-heard-removed-from-aquaman-2,,,,,against +219,https://www.change.org/p/warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,7500.0,,,,,,,,,,,MilestonePetitionUpdate,28890562.0,2021-04-16 14:32:08+00:00,7500.0,warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,,,,,against +220,https://www.change.org/p/warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,7000.0,,,,,,,,,,,MilestonePetitionUpdate,28688582.0,2021-03-11 03:05:06+00:00,7000.0,warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,,,,,against +221,https://www.change.org/p/warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,6000.0,,,,,,,,,,,MilestonePetitionUpdate,28599688.0,2021-02-23 17:19:20+00:00,6000.0,warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,,,,,against +222,https://www.change.org/p/warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,5000.0,,,,,,,,,,,MilestonePetitionUpdate,28477384.0,2021-02-02 23:46:59+00:00,5000.0,warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,,,,,against +223,https://www.change.org/p/warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,0,0,0,0,,petitions_milestones,,,,4000.0,,,,,,,,,,,MilestonePetitionUpdate,28354928.0,2021-01-13 02:20:54+00:00,4000.0,warner-brothers-dc-entertainment-emilia-clarke-become-mera-to-replace-amber-heard-in-aquaman-2,,,,,against +224,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Amber Heard says that Johnny Depp's US defamation lawsuit should be thrown out after 'wife-beater' ruling in the UK. She says that the UK trial established that: ""Mr Depp committed domestic violence against Ms Heard on many occasions, causing her to fear for her life"".
Depp famously lost his slander case against NGN newsgroup and the Sun tabloid, who labeled him as a “wife beater.” He was also denied the chance to file an appeal to overturn the ruling. That, Heard insists, is grounds to dismiss his $50 million defamation suit against her.
It continued: ""Depp cannot relitigate these factual issues, and as a result of their preclusion, he cannot claim that the statements are false and 'actionable' under Virginia defamation law, so his claims are barred as a matter of law.""

+

The filing from the Aquaman actress's team of lawyers adds: ""Therefore, as a matter of law, Depp cannot prevail on any of his claims, and Depp's complaint against Ms Heard should be dismissed in its entirety.""

+

Heard has requested a hearing next month in front of a judge in an effort to put a stop to the lawsuit. Again. This marks perhaps half a dozen attempts on Heard’s part to have Depp’s slander case against her dismissed. All previous attempts have been denied, and this one likely will be, too.

+

The Sun case wasn’t between Depp and Heard, remember. It was against Depp and the Sun. Heard was just a witness. And “Just because the Sun says so” isn’t a good enough reason to throw out a lawsuit.

+

Depp’s legal team haven’t yet responded to Heard’s latest filing, but it’s unlikely that her request to have his suit thrown out will succeed.

+

The case is due to be heard in Fairfax, VA in April of 2022.

+

SOURCE

",,,,,,,,,,,,New Bid to Dismiss,StarterPetitionUpdate,28935417.0,2021-04-23 18:28:29+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225478007', 'petitionMedium': {'url': '//assets.change.org/photos/1/ov/ql/QnovqLhGsohQOMz-800x450-noPad.jpg?1619202517', 'processing': False}}",,,,against +225,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Amber Heard says that Johnny Depp's US defamation lawsuit should be thrown out after 'wife-beater' ruling in the UK. She says that the UK trial established that: ""Mr Depp committed domestic violence against Ms Heard on many occasions, causing her to fear for her life"".
Depp famously lost his slander case against NGN newsgroup and the Sun tabloid, who labeled him as a “wife beater.” He was also denied the chance to file an appeal to overturn the ruling. That, Heard insists, is grounds to dismiss his $50 million defamation suit against her.
It continued: ""Depp cannot relitigate these factual issues, and as a result of their preclusion, he cannot claim that the statements are false and 'actionable' under Virginia defamation law, so his claims are barred as a matter of law.""

+

The filing from the Aquaman actress's team of lawyers adds: ""Therefore, as a matter of law, Depp cannot prevail on any of his claims, and Depp's complaint against Ms Heard should be dismissed in its entirety.""

+

Heard has requested a hearing next month in front of a judge in an effort to put a stop to the lawsuit. Again. This marks perhaps half a dozen attempts on Heard’s part to have Depp’s slander case against her dismissed. All previous attempts have been denied, and this one likely will be, too.

+

The Sun case wasn’t between Depp and Heard, remember. It was against Depp and the Sun. Heard was just a witness. And “Just because the Sun says so” isn’t a good enough reason to throw out a lawsuit.

+

Depp’s legal team haven’t yet responded to Heard’s latest filing, but it’s unlikely that her request to have his suit thrown out will succeed.

+

The case is due to be heard in Fairfax, VA in April of 2022.

+

SOURCE

",,,,,,,,,,,,New Bid to Dismiss,StarterPetitionUpdate,28935415.0,2021-04-23 18:28:14+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225478006', 'petitionMedium': {'url': '//assets.change.org/photos/3/nf/fi/uVnFfIXRTGpAkrq-800x450-noPad.jpg?1619202502', 'processing': False}}",,,,against +226,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

In a shocking turn of events, bodycam footage has dropped from the night Aber Heard claims that Johnny Depp hurled a phone at her face and trashed the condo.

+

On the night of the blowout fight, a friend of Heard, who asked to remain anonymous had dialed 911, claiming that the actress was being ‘assaulted’ by her boyfriend.

+

“Hi, I need to report an assault right now happening at 849 Broadway at the Eastern building, it’s penthouse three,” the female caller says in the recording, referring to the luxurious home the former couple previously shared in downtown LA.

+

“I happen to know that it’s happening and I just need to remain anonymous,” she added.

+

“So what did she say that this guy assaulted her or hit her?” the LAPD operator replies, explaining she needs more detail.

+

“Physically assaulting her, yeah,” replies the caller ”Send somebody up there please,” the caller pleads, reiterating the location of the couple’s penthouse before the call abruptly ends.

+

Another 911 call was made by Heard’s friend iO Tillet Wright.

+

That means that two sets of officers responded to the scene. And both sets of officers have insisted from day one that they saw no evidence of violence, not on Heard’s face, and not in the condo.

+

Up until now, it’s been a matter of he say/she say, leaving judges, journalists, and the public to decide who to believe.

+

But now, the debate is over. In bodycam footage from the second set of officers, the condo is clearly seen as being tidy and undamaged. You can read the article from the Daily Mail HERE.

+

And you can see a clear version of the bodycam footage HERE.

+

Depp’s attorney Adam Wadman says the footage proves that there was never any wrecking spree and that Heard’s account of the evening cannot be believed.

+

“Amber Heard and her friends described a chaotic, messy crime scene but the newly released LAPD bodycam videos unambiguously show that the penthouse was utterly undamaged and that their testimony was one more grandiose lie,” Waldman told DailyMail.com in a statement.

+

Depp and Heard will square off in April, 2022 in a defamation suit that Depp filed against his ex-wife. It remains to be seen how this new footage will affect the proceedings, but it doesn’t look good for Heard.

+

It also remains to be seen if this new evidence will inspire perjury charges in previously offered court testimony in Depp’s recent libel suit against NGN and the Sun tabloid in the UK. That’s where Heard described the chaotic scene.

+

Heard is currently being investigated for perjury charges in Australia for testimony surrounding an incident in which Heard smuggled the couple’s dogs into Australia in violation of quarantine laws.

+

It’s possible that these mounting legal woes will affect Heard’s appearance in any upcoming projects, and could potentially land her jail time. Time will tell the extent to which this new evidence, and Depp’s impending slander suit will affect Amber Heard.

+

What do you think? Will Heard shrug this evidence off? Or is this the mic drop moment for Depp in his quest to vindicate himself?

+

SOURCE
SOURCE

",,,,,,,,,,,,Bodycam Footage Drops,StarterPetitionUpdate,28892582.0,2021-04-16 19:57:16+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225445598', 'petitionMedium': {'url': '//assets.change.org/photos/6/nm/fm/vNnMfmZHboPfvDp-800x450-noPad.jpg?1618603038', 'processing': False}}",,,,against +227,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Aquaman 2 is expected to start production this coming June (2021) in the UK under the working title ‘Necrus.’ In Aquaman lore, Necrus is another underwater city like Atlantis, ruled by the militaristic King Mongo. Unlike Atlantis, its placement is unstable, meaning the location of the city constantly changes, never to be found in the same place twice. Apparently. So, while the working title could just be a fun nod to lore, it could also mean Arthur may interact, or even fight, Mongo. It’s safe to say that Black Manta will return as Aquaman’s nemesis.

+

Jason Momoa will return as the titular character, and despite fans’ protestations, Amber Heard is still clutching the notion that she will once again be the queen of the deep. However, there’s also been constant speculation that a new major female character is being written into the script, as a means to both increase diversity among the ensemble and reduce Heard’s screen time in the event of a worst case scenario. WB has yet to confirm that, but insider Daniel Richtman is now claiming that Aquaman 2 will have four female leads, though the tipster doesn’t offer any further details to elaborate on his intel.

+

Heard’s Mera, the aforementioned mystery character and Nicole Kidman’s returning Queen Atlanna will presumably make up 75% of the quartet, leaving one position unfilled. But with filming set to start a mere two months away, we should start to get some answers soon, both about the new mystery character and Heard’s dubious chances of returning as the film’s primary female lead.

+

Aquaman 2 is currently set for a December 16, 2022 release.

+

SOURCE
SOURCE

",,,,,,,,,,,,Aquaman 2 filming and release dates,StarterPetitionUpdate,28836434.0,2021-04-07 15:16:28+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225407387', 'petitionMedium': {'url': '//assets.change.org/photos/1/dd/qt/BAdDQTtNmJJOnQn-800x450-noPad.jpg?1617808591', 'processing': False}}",,,,against +228,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Amber Heard is targeting fans as well as Johnny Depp’s own lawyer on Twitter in a variety of ways – namely outright mocking them. It’s an interesting reaction, considering she already won the UK lawsuit, but apparently Amber Heard has simply had enough of the Internet backlash.

+

Adam Waldman called Amber out in a tweet pointing out that despite claims of being brutalized by Johnny Depp, Amber Heard appears days later in a photo shoot, without any sign of injury. 

+

Heard's backlash was to call Waldman short. Such witty repartee. 

+

It’s worth mentioning that Adam Waldman is actually Johnny Depp’s lawyer, and that he’s been using social media as a way to call Amber Heard and her claims into question. This includes much of the majority of his Twitter feed, but it was the particular image posted above that caught Amber Heard’s attention. It seemed she had enough of Adam Waldman, and decided to respond to him and a variety of Johnny Depp fans on Twitter as a result.

+

Most recently, Depp supporters have been targeted, having their comments reported en masse in an attempt to have them banned from Twitter. The Depp supporters remain, however, and don't appear to be going anywhere anytime soon. 

+

I wrote a blog article about Heard's Twitter rampage, having been targeted myself. Feel free to read it HERE

+

Depp and Heard have to wait a full year before Depp's Defamation case against Heard gets to court. In that time, I'm sure we'll see a lot of action back and forth between Heard and her ex-husband. And, from the look of it, we can expect to see even more hostilities between Heard, her posse on Twitter, and Johnny Depp supporters.

+

More as it happens.

+

SOURCE

",,,,,,,,,,,,Amber Heard on a Twitter rampage,StarterPetitionUpdate,28819119.0,2021-04-03 19:19:06+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225394516', 'petitionMedium': {'url': '//assets.change.org/photos/6/sp/my/hHSPMyLQAlvcfuj-800x450-noPad.jpg?1617477548', 'processing': False}}",,,,against +229,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

I know I'm preaching to the choir, here, but I wanted to send this out.

+

Please sign and share this petition.
https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2

+

Let them know that we're not done fighting!

+

Hang in there, gang. It gets better. 

",,,,,,,,,,,,Sign and share,StarterPetitionUpdate,28779859.0,2021-03-26 20:46:08+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225368051', 'petitionMedium': {'url': '//assets.change.org/photos/1/vi/qn/YzViQnfHJEiBEQs-800x450-noPad.jpg?1616791571', 'processing': False}}",,,,against +230,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Johnny Depp has FAILED in his application to appeal the libel judgment which found The Sun newspaper’s allegation he engaged in domestic violence against Amber Heard was “substantially true”.

+

Rubbish. I'd like to use a stronger word, but refrain.

+

As much as this is a blow to Johnny Depp, it's more of a defeat for male victims of domestic violence, particularly in the UK. This kind of finding tells them that, no. they won't be believed, so just shut up and take it, and don't you dare speak up. It shouldn't be that way. I must change.

+

The thing to remember at this point is that this verdict is not a win for Amber Heard. This case wasn't against her. It was against NGN and the Sun.

+

What we can do now is look forward to the Defamation trial in VA. That one is directly between Johnny Depp and Amber Heard. I'm a little nervous about that one because Heard never named Depp in her WaPo OpEd, the reason he finally sued her. On that basis alone, it could very well go her way, even though it's obvious who she was talking about. 

+

But no matter how it goes, the truth about Heard will come out. There's evidence we haven't even seen yet. No matter how court goes, she loses in the court of public opinion, which will directly impact upon her career. Let's remember that she doesn't have any active projects coming up while Johnny Depp and his production company is directly involved with no fewer than 20 projects coming up. 

+

This decision today is beyond ridiculous but it's one battle, not the war. Let's try to stay positive and look forward to the Virginia trial. It's a different court, a different case, and is more than likely to come out a different way. 

+

Hang in there, folks. It gets better.

+

Hat tip to Nick Wallis.

",,,,,,,,,,,,Appeal denied,StarterPetitionUpdate,28770580.0,2021-03-25 10:25:22+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225361829', 'petitionMedium': {'url': '//assets.change.org/photos/0/el/bq/OyELbQqHJIXUdqc-800x450-noPad.jpg?1616667923', 'processing': False}}",,,,against +231,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Here we go again. This is going to look awfully familiar, but it's not a repeat. The decision about Johnny's permission to appeal will be handed down tomorrow.

+

Johnny Depp’s hearing for permission to continue with his appeal is going to air live tomorrow morning at 10am UK time. I think that’s 6am Eastern, 5 my time. US central. Don’t quote me though. 

+

Here’s the website that hosts the live content:
https://www.youtube.com/channel/UCvLfIeTq5grIEkc7JvOpoxg

+

There are three YouTube channels that could potentially be airing the coverage. I suspect that due to the large volume of people that will be tuning in, all three might be covering it. They are:
https://t.co/Ad6qdt8riI?amp=1
https://t.co/O77lNVAxpi?amp=1
https://t.co/nvvdTIRpSg?amp=1

+

Me, I'm going to tune in with Doctor Soup, Stevie J Raw, Spiritually empowered, and Come Geek some, HERE for the verdict. Feel free to join me. We'd love to have you.

+

Just remember that no part of the proceedings can be capped, recorded or shared in any form. To do so could amount to contempt of court. Just don't do it. It's not worth it.

+

If Johnny wins tomorrow, that doesn’t mean that he has won his appeal. It means only that he can continue with the appeal process.

+

If Johnny loses tomorrow, his appeal in London is done and over with. So let's all keep our fingers crossed.

",,,,,,,,,,,,The appeal decision,StarterPetitionUpdate,28767922.0,2021-03-24 21:57:14+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225360121', 'petitionMedium': {'url': '//assets.change.org/photos/6/tx/cw/DNTXCwmblHUGSit-800x450-noPad.jpg?1616623036', 'processing': False}}",,,,against +232,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Counsel for both sides had a turn arguing their points, about why an appeal should be granted and why it shouldn’t. It seemed to go really well for Johnny’s side, while the opposition seemed to flounder. We won’t be getting a decision today. Rather, the judge’s on the bench promised that their decision will be handed down “shortly” in writing. We’re guessing that might mean a week or less.

+

Let’s keep our fingers and toes crossed, folks.

",,,,,,,,,,,,No Decision Today,StarterPetitionUpdate,28731414.0,2021-03-18 13:37:43+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225336548', 'petitionMedium': {'url': '//assets.change.org/photos/9/rv/vh/xwrvvHSLPoaYpHP-800x450-noPad.jpg?1616074666', 'processing': False}}",,,,against +233,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Johnny Depp’s hearing for permission to continue with his appeal is going to air live tomorrow morning at 1030am UK time. I think that’s 630am Eastern, 530 my time. US central. Don’t quote me though. I’m still recovering from daylight savings time. But I think that’s right.

+

Here’s the website that hosts the live content:
https://www.youtube.com/channel/UCvLfIeTq5grIEkc7JvOpoxg

+

There are three YouTube channels that could potentially be airing the coverage. I suspect that due to the large volume of people that will be tuning in, all three might be covering it. They are:
https://t.co/Ad6qdt8riI?amp=1
https://t.co/O77lNVAxpi?amp=1
https://t.co/nvvdTIRpSg?amp=1

+

Just remember that no part of the proceedings can be capped, recorded or shared in any form. To do so could amount to contempt of court. Just don't do it. It's not worth it.

+

If Johnny wins tomorrow, that doesn’t mean that he has won his appeal. It means only that he can continue with the appeal process.

+

If Johnny loses tomorrow, his appeal in London is done and over with. So let's all keep our fingers crossed.

",,,,,,,,,,,,Hearing streaming live,StarterPetitionUpdate,28727140.0,2021-03-17 19:37:24+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225333845', 'petitionMedium': {'url': '//assets.change.org/photos/3/ts/xd/lKtSXdfmRMCkEvy-800x450-noPad.jpg?1616009847', 'processing': False}}",,,,against +234,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

According to We Got This Covered, Amber Heard is still getting acting offers despite all the drama going on, while Johnny Depp's career hangs in tatters.

+

Let's look at that, shall we? 

+

Amber Heard's IMDB page lists 2 projects upcoming for her. ""Run away with me"" which was abandoned years ago and ""Aquaman 2"" that she's reportedly been dropped from. That's it. 

+

Meanwhile, here's a list of what Johnny Depp's IMDB pro page has him working on: 

+

Affected Provincial's Companion
Producer

+

Attica
Producer

+

Caliber
Producer

+

Desperate Hours
Producer

+

Fierce Invalids Home from Hot Climates
Producer

+

Fortunately, the Milk
Producer

+

Happy Days
Producer

+

In the Hand of Dante
Producer

+

Inamorata
Producer

+

Mortimer Wintergreen
Producer

+

Muscle Shoals
(TV Series) - Executive Producer

+

Rex Mundi
Producer

+

The Ginger Man
Producer

+

The Night Stalker
Producer

+

The Secret World
(TV Series) – Producer

+

The Thin Man
Producer

+

The Vault
Producer

+

Tom's Dad
Producer

+

Torched
(TV Movie) - Executive Producer

+

True Crime Addict
(TV Movie) - Executive Producer

+

Untitled Don Quixote Project
Producer

+

Untitled Dr. Seuss Project
Producer

+

Untitled Paul Revere Project
Producer

+

Untitled Keith Richards Documentary
Director

+

Puffins
(TV Mini-series) - Johnny Puff

+

Call me crazy, but combine this list with the fact that the Hollywood Vampires are currently writing new work as well, it looks to me like Johnny Depp's doing just fine when it comes to his career.

+

Amber Heard on the other hand, not so much.

",,,,,,,,,,,,Who's doing what?,StarterPetitionUpdate,28641417.0,2021-03-02 23:43:38+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225276267', 'petitionMedium': {'url': '//assets.change.org/photos/9/af/xf/ncAFxfKrYDgEvpJ-800x450-noPad.jpg?1614728619', 'processing': False}}",,,,against +235,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

According to Distractify, Amber Heard could be facing up to three years of jail time if the court rules in Johnny Depp’s favor.

+

Amber Heard could be going to jail if Johnny Depp wins his lawsuit.
Basically, Amber Heard claimed on the stand in Johnny’s libel suit against the Sun tabloid that Johnny Depp had physically and emotionally abused her.

+

Back in 2015, Heard showed up in court with a black eye seeking a restraining order. Johnny claims that Amber had faked her black eye seen at the court, and Amber Heard’s stylist corroborated this. She stated, “Throughout the day of December 16, 2015, I could see clearly that Amber Heard did not have any visible marks, bruises, cuts, or injuries to her face or any other part of her body.”

+

Since then, Johnny Depp has fought back against every bad word against him with libel and defamation lawsuits, so far against The Sun (which he lost), and against Amber Heard, which has not yet been seen in court. According to Deadline, the latest update is that their court date is once again pushed back to at least April 11, 2022. If Amber Heard loses, she could face jail time for tampering with evidence.

+

Even though it’s possible Johnny Depp could win his upcoming lawsuit in the coming years, there’s no confirming whether or not Amber Heard will face jail time. Regardless, this puts Warner Bros. in a tough spot. Even though fans had petitioned for Warner Bros. to force Amber Heard’s resignation from Aquaman 2, WB hasn’t announced any plans for change.

+

However, in December 2020, a lifestyle article in Forbes about Emilia Clarke’s home let the cat out of the bag that Emilia Clarke had signed on to replace Amber Heard as Mera in Aquaman 2. Sadly, though, there’s still no confirmation. It could just be wishful thinking on the fans’ part.

+

It’s not clear according to that article why Amber Heard could be facing jail time if Johnny Depp wins his appeal. They mention tampering with evidence, but don’t say clearly what evidence, or how it was tampered with.

+

I’m going to go out on a limb and suggest that if Johnny wins his appeal, Heard might be on the hook for some very serious perjury charges. She’s already being investigated in Australia for Perjury charges for falsifying statements about smuggling their dogs Pistol and Boo into the country. So it wouldn’t be a far stretch if she’s investigated in a London court for the same crime. Not for lying about the dogs, this time, though, but for potentially lying on the stand during Johnny’s libel case against NGN and the Sun tabloid.

+

It could be for something else altogether.

+

Let’s not forget that there’s no statute of limitations in Australia for grievous bodily injury requiring medical attention. And that’s where Heard cut off the tip of Johnny’s finger with a Vodka bottle. And, no. I’m not making a wild accusation there. Heard herself was recorded on audiotape admitting that she did, saying “I didn’t mean to do it!” and begging Johnny not to leave her.

+

The point being, if Johnny wanted to, he could always file a report with Australian police and have her put behind bars for a long time. And if her were the vengeful monster she keeps trying to say he is, he would have done that already.

+

All Johnny’s interested in is clearing his name. He’s said it time and time again, and the fact that Heard’s not cooling her heels already in an Australian prison proves it.

+

What do you think? Will Heard face jail time if Johnny wins his appeal? Or if he wins his defamation suit? Should Johnny press charges in Australia over his severed finger?

+

Yeah. I do too.

",,,,,,,,,,,,Amber Heard facing jail time?,StarterPetitionUpdate,28633362.0,2021-03-01 18:23:47+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225270885', 'petitionMedium': {'url': '//assets.change.org/photos/1/yp/om/ahyPoMgOnXIvGwP-800x450-noPad.jpg?1614623031', 'processing': False}}",,,,against +236,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

It’s looking more and more like Amber Heard really won’t be in Aquaman 2.

+

This petition has reported long since that Heard’s contract has been bought out by WB and that she won’t appear in Aquaman 2. But the masses want proof, rightfully so. Well, the more time goes by, the more it looks like we might actually have been properly informed.

+

It’s being reported lately that Emilia Clarke might have signed on to replace Amber Heard in Aquaman 2. But, again, there’s no confirmation, though an article in Forbes seems to be as legit a source as it gets. So we can’t be sure about that part of the speculation about Amber Heard’s dubious future in AM2.

+

However…

+

Recently, Popcorned Planet’s Andy Signore went on record saying: “The part of this story that is true is that, yes, Amber Heard is fired from Aquaman 2. Now, from what I’ve heard so far she’s been fired from Aquaman 2. From what I’ve heard through a source, though other people that are involved in the production is that it already happened.”

+

Previously, we’ve heard that WB bought out Heard’s contract because she might not be bondable (due to alcohol and drug use, perhaps?). If she can’t be insured for the duration of filming, she can’t film.

+

But the reason might be something completely different than what we thought.

+

According to Sausage Roll, Amber Heard might not appear in AM2 because she ‘s not physically fit enough. They say: “Amber Heard did not pass her physical examination. She’s put on some pounds and is in terrible shape. There is a clause in her contract which says she is required to be in good form ahead of shooting and she violated that.”

+

True to form, Heard manages to blame Johnny Depp for it, throwing Covid in for good measure. “Heard allegedly blamed Johnny Depp and COVID-19 for her deteriorating health, saying that she’s been under tremendous amount of stress and has been suffering from depression but she insists that she will get back in shape.”

+

Filming for Aquaman 2 is set to start filming in June (2021), so it remains to be seen whether or not she’ll get back in shape. We’ll also have to wait and see if she is, or becomes, bondable for filming.

+

That seems like a lot to happen in just a few months.

+

Also, according to another industry insider, Heard may have failed to report an injury. If she were injured, failed to report it and got further injured during training, which is quite rigorous, the studio would have been on the hook for it. So, it's entirely possible that this is the nature of Heard being physically unfit.

+

Whichever the reason it seems more likely than not that the rumors about Amber Heard not appearing in AM2 are true. I don’t know whether it will Emelia Clarke or not that takes over, but I’m totally on board with it if it is.

+

What do you think? Will Amber Heard fit back into the fish suit again or will we see somebody else taking over screen time in AM2?

+

source

",,,,,,,,,,,,Amber Heard Physically unfit?,StarterPetitionUpdate,28619185.0,2021-02-26 19:57:00+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225260964', 'petitionMedium': {'url': '//assets.change.org/photos/4/rk/tm/UwrKTMBCvDQOQLj-800x450-noPad.jpg?1614369423', 'processing': False}}",,,,against +237,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

The latest story coming from leaker Daniel Richtman is saying that Johnny Depp is furious that his ex-wife Amber Heard’s star appears to be rising as his falls. According to Richtman Depp is “pissed” that she keeps getting work.

+

Heard recently appeared in CBS’ The Stand and is about to film Aquaman 2 despite multiple fan campaigns trying to get her fired (Mera will also play a minor role in Zack Snyder’s Justice League next month, a movie that’s already been filmed).

+

But it’s the latest rumor doing the rounds that must seriously enrage Depp, as reports say that Heard is in contention to portray Rapunzel in Disney’s live-action version of Tangled.

+

The actress potentially being hired by the House of Mouse for a big role just as they drop Depp from his most iconic part (Captain Jack Sparrow, of Disney’s Pirates of the Caribbean franchise) must really stick in his craw.

+

But this story isn’t over yet, as Depp is mounting an appeal to the verdict in his failed libel suit against NGN media and the Sun tabloid, and there are lawsuits filed in Virginia that could go more favorably for him.

+

Still, According to Richtman, right now, Heard is going from strength-to-strength and Johnny Depp is suffering major career damage. So even if he’s eventually vindicated, he might never again be the A-lister he once was.

+

Where to start.

+

First, the sober truth is that Heard is a little long in the tooth to portray a Disney princess. Those girls are usually in their mid-teens, and Heard is twice that age now. It’s highly unlikely that she’s up for any such part.

+

Second, after Heard has pestered Disney with subpoenas and legal shenanigans, it’s not likely at all that they would line up to sign her for anything, let alone a role half her age.

+

Third, Johnny is not hurting for work. If you look at Depp’s IMDB pro page, he’s lined up to be involved with more than twenty projects.

+

Heard has 2 projects on her books. Aquaman 2, which she probably won’t appear in. Strong rumor has it that Emilia Clark will replace Heard in Aquaman 2.

+

The other project is “Run away with me” a project which was abandoned years ago. Two movies she will most likely not even appear in. That’s it. That’s all she’s got scheduled for future projects.

+

Finally, but not least, it’s looking more and more like Johnny Depp is going to be vindicated in both court proceedings, leaving him in a much more favorable position than Heard.

+

So it’s not quite as bleak for Depp as Richtman would have you believe. Either his information is faulty or he’s just plain wrong.

+

What do you think? Is Heard’s star rising? Or is Depp coming out on top?

",,,,,,,,,,,,Johnny Depp pissed off?,StarterPetitionUpdate,28613653.0,2021-02-25 21:01:42+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225257223', 'petitionMedium': {'url': '//assets.change.org/photos/8/pj/sq/bdpJsQhkPxDtqNI-800x450-noPad.jpg?1614286904', 'processing': False}}",,,,against +238,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

The defamation suit Johnny Depp took out against his ex wife Amber Heard was scheduled to on May 7th, 2021. But, probably due to Covid, the trial date has been pushed back to April 11th, 2022.

+

Now, it's possible that Johnny will get word back about his appeal to overturn the verdict in his libel suit against NGN and The Sun tabloid before he even sets foot in the courtroom for his defamation suit against Heard. He might be vindicated on the British front first.

+

Heard has been worried in the past about how the defamation suit will affect her filming schedule. But if she's found to have lied in a British court, and if Australia has their way about her lying in one of their courts, her filming schedule might be the last thing she'll have to worry about. 

+

Instead, the courts might have to figure out how to het her from jail to the courtroom. That could make for some interesting travel plans.

+

Somehow, I doubt that the flight they'd put her on would have Champaign and caviar.  

+

What do you think? Will Heard go to jail for lying to a British High Court? Or will she get out of it somehow?

+

Hat tip to Laura B.

+

SOURCE

",,,,,,,,,,,,Trial date pushed back,StarterPetitionUpdate,28602060.0,2021-02-24 00:26:36+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225249390', 'petitionMedium': {'url': '//assets.change.org/photos/6/kd/wq/tdkdwqwvNrjybrL-800x450-noPad.jpg?1614126397', 'processing': False}}",,,,against +239,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

According to ""Insider"" Daniel Richtman, Amber heard is in talks with the House of Mouse about playing a live-action Disney princess.

+

One article says that she's negotiating to play princess Rapunzel in Tangled. Another one backs it up.

+

I'm not quite sure how seriously to take these revelations. 

+

First, there's the messy legal battle that's warring between Amber Heard and her ex-husband Johnny Depp. It's a sordid affair, and Heard has dragged Disney into it by demanding a plethora of documents from them, pretty much any dealing they ever had with Johnny Depp, his schedule, his contracts, his alleged drug use or bad behavior on the set, anything she can get her hands on.

+

Maybe it's just me, but I don't think that Disney would be too quick to negotiate with somebody who's causing them so many legal woes.

+

And second, there's the demographic of Disney princesses. Traditionally, Disney princesses are in their mid-teens, just coming into their own. Amber Heard is 34 years old, and not getting any younger. That's just about twice the age of the average Disney princess. 

+

I suppose it's not impossible that Heard could be in talks with Disney to portray a princess, but I think it's highly unlikely.

+

A lot of frivolous press has been floating around about Heard lately, but I personally think that this is among the more amusing. 

+

What do you think? Would Amber Heard personify a Disney princess? Or has the time for kind of role come and long gone for her?

",,,,,,,,,,,,Amber Heard a Disney Princess?,StarterPetitionUpdate,28560793.0,2021-02-16 19:45:28+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225220517', 'petitionMedium': {'url': '//assets.change.org/photos/8/lw/xn/KIlwxNJYTqhbTMN-800x450-noPad.jpg?1613504731', 'processing': False}}",,,,against +240,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Often when putting together a franchise, the powers that be offer the principal players a three picture deal. That cuts down on scheduling conflicts and keeps actors from negotiating for a better deal in-between each picture. But that’s not always the case. Just as often, they take it one film at a time.

+

In the case of the Aquaman franchise, it looks like they opted to do one film at a time. If that is indeed the case, no actor is guaranteed a part in the second or third installment.

+

According to insider Daniel Richtman, Amber Heard is already scrambling to try to secure her place in Aquaman 3, even though AM2 hasn’t even begun to film yet.

+

There are doubts about whether or not Heard will even appear in AM2. Almost 2 million people have made it clear that they don’t want to see Amber Heard in any further AM films, and it’s possible that WB is paying attention. One rumor has it that Heard’s screen time in AM2 is being severely curtailed, with another female lead taking on more screen time.

+

Other rumors whisper that Heard’s contract has been bought out, meaning that while Heard got paid, she will not appear in the film at all.

+

There are several factors that will likely determine whether Heard comes back in any subsequent Aquaman films. First, there are the court cases going back and forth between Heard and her ex-husband, Johnny Depp. Depp is suing Heard for Defamation for portraying him as a domestic abuser who physically abused and terrorized her throughout their marriage. Depp is having none of that is on a legal crusade to clear his good name and prove that it was Heard who was the abuser the entire time. Heard has a lot of sob storied and the support of her friends to back up her abuse storied, while Depp has video and audio recordings of her admitting to abusing him. Unlike Heard, Depp also has medical evidence, including a fingertip that got severed and a burn on his cheek from a cigarette being put out on his face.

+

The two are also embroiled in litigation in England from a libel case that Depp leveled against NGN media and the Sun tabloid, for calling Depp a wife-beater. Initially, the judgement favored the Sun, who repeated that wife-beater claim again. But Depp is appealing the verdict, and will likely prevail.

+

If these two cases go Depp’s way, it doesn’t bode well for Heard’s continued presence in the AM franchise. Most films have a morals clause in their contracts, and if Heard is proven to be a domestic abuser again, that clause might very well be invoked.

+

I say “again” because Heard was arrested in 2009 for domestic abuse against her then wife Tasya Van Ree.

+

There’s also the issue of whether or not Heard is bondable. That is to say, whether or not she can be insured for the duration of filming. If she can’t be insured for any reason, like a preexisting medical condition, excessive drug or alcohol abuse, she can’t and won’t be hired for any future AM project.

+

Heard supporters insist that she’ll be in AM2 and 3 because there hasn’t been any official announcement from WB about her being dropped. But that’s not the way it works. If Heard has been dropped, there likely won’t be any announcement. The movie will simply come out without her in it. So fans who want her dropped who are waiting for an announcement won’t get one. We’ll just have to wait for the film to come out to see whether she’s in it or not.

+

Time will have to tell whether or not Amber Heard is in Aquaman 2, let alone Aquaman 3. We’ll have to wait and see how those court cases come out, and whether or not Heard is bondable. As ever, I’ll bring you the latest as I find it.

+

SOURCE

",,,,,,,,,,,,Amber Heard wants Aquaman 3,StarterPetitionUpdate,28555166.0,2021-02-15 20:49:24+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225216787', 'petitionMedium': {'url': '//assets.change.org/photos/2/vs/aa/UavsAaslEgIsluk-800x450-noPad.jpg?1613422168', 'processing': False}}",,,,against +241,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Amber Heard is a nobody, at least according to Amber Heard. In one of her latest court filings, Amber has a fit about people calling her that.

+

If you recall, Heard filed in her original $100 million dollar counterclaim to Johnny Depp’s $50 million dollar defamation suit against her, that there was an army of bots under Depp’s command torturing her. Even creating and/or signing this very petition. An investigation found less than a dozen questionable Twitter accounts that might be bots, blowing that claim out of the water.

+

Undaunted, Heard has shoved forward, trying to obtain personal data about 200 Twitter users, to prove that they’re bots and not real people, I guess.

+

Now, she’s down to two. TWO people that she’s upset at for: 1) saying they’re proud of Johnny Depp for fighting to clear his name, and 2) refer to the defendant (Heard), a movie star, as “a nobody.” And she had to put that in there, that she’s “a movie star.” She needed to point that out, I suppose, in case anybody forgets that she got lucky off the back of being married to Johnny Depp and scored Aquaman. Would she have gotten that movie on her own? Anybody? Bueller?

+

She’s throwing everything she can at the wall with regards to Twitter users, hoping that something will stick.

+

Unfortunately, all of the statements she’s throwing around by Twitter fans are protected opinions of celebrities. People just don’t like her, and there’s not one single thing she can do about it.

+

What I suspect, however, is that she doesn’t really expect any of this Twitter bluster to stick to the wall. I think it’s a diversionary tactic, intended to direct attention away from the avalanche of evidence Johnny Depp has that’s bearing down on her.

+

And it works. For a minute. But she’s deluding only herself if she thinks that the people who support Johnny Depp are about to lose sight of the big picture. They might point fingers and laugh at her folly when she tries some new antic, but they’re steadfast to the case at the heart of the matter.

+

What will she pull next? What new filing will she throw at the court to try to filibuster her way out of the inevitable? We’ll have to wait and see. One thing that’s sure is that it’ll bring out more finger pointing and giggles, at least until the final verdicts come down. Then it will be Johnny Depp that gets the last laugh.

+

Hat tip to Lizzie Borden

",,,,,,,,,,,,Amber Heard is a nobody,StarterPetitionUpdate,28550493.0,2021-02-14 20:58:00+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225213452', 'petitionMedium': {'url': '//assets.change.org/photos/2/ba/uv/AubAUvMnVkryAij-800x450-noPad.jpg?1613336282', 'processing': False}}",,,,against +242,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

iO Tillet-Wright, fast friend of Amber Heard, is the guy that called 911 the fateful night of Amber Heard and Johnny Depp’s last fight. You know, the one where Heard claimed that Depp struck her in the face with a phone.

+

iO has been very vocal in his support of Heard, claiming to bear witness to the after-effects of many violent episodes where Heard said that Depp brutalized her. Blood on a pillow, hair on the floor, that sort of thing. Mind you, iO never witnessed any violence, just saw that (staged?) scene afterwards.

+

Now, iO is trying to quash the subpoena calling for him to appear for a deposition.

+

In his motion to quash, iO says: “I am not a party to the above-referenced actions. I have personal knowledge of the matters set forth herein, and if called upon to testify thereto, I could and would completely do so.”

+

But…

+

“I have never been served with any subpoena in this action (Case No. 19stcp04763) or in the Virginia Fairfax County Court Action (Case no. CL-2019-0002911). Rather, I understand that Mr. Depp’s lawyers emailed copies of the subpoena to my lawyer, Lee Brenner, on January 20, 2021.”

+

“I do not reside at the address of 6144 Panorama Street, Joshua Tree, CA 92252, and I have never resided at that address. I have no ownership interest in that address.”

+

I understand that a man named Anthony was at the address that day, and I have spoken to him. He said that he spoke to a process server that day (Jan 19, 2021) who left a pile of papers on the front step.”

+

“I declare under penalty of perjury and under the laws of the State of California that the foregoing is true and correct.”

+

“Executed this 8th day of February 2021, and Joshua Tree, California.”

+

And he signed it.

+

Further: “Here, Mr. Wright was not served with the subpoena at issue. See Wright Cecl. At ¶ 3-5. First, he does not reside at the address listed on the Subpoena nor does he have any ownership interest in that address. Id., at ¶3, Mr. Wright has spoken with a man named Anthony who was at the address listed on the “proof of service” on January 19 2021 and was told that a process server left a pile of papers on the front step. Id., at ¶5. Mr. Wright does not know why anyone would say that they served him because they simply did not. Id., at ¶ 4. In the light of the foregoing, the subpoenas are procedurally defective and should be quashed.

+

Okay, then.

+

First, if iO has no ownership or interest in that address, how does he know who was there on that day or any other? He clearly knows more than he's letting on, to have spoken with a man he says was there that day.

+

Look, I don’t care one way or another where iO lives, but this just doesn’t add up.

+

What’s iO so scared of that he’s trying to dodge his subpoena? Is he afraid that the hoax is finally going to catch up with him and that he could face charges of perjury if he lies to an American court? Fines can be hefty, and jail isn’t exactly kind to trans persons.

+

Maybe the time has come for iO to reconsider his position in the Amber Heard fiasco. Because, dodge as he might, that subpoena is going to catch up to him, like it or not.

+

See images of the iO’s quash paperwork HERE, HERE, HERE, HERE and HERE.

+

Lofty hat tip to Laura B.

",,,,,,,,,,,,iO tries to quash subpoena,StarterPetitionUpdate,28532880.0,2021-02-11 14:36:03+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225201811', 'petitionMedium': {'url': '//assets.change.org/photos/2/gr/kl/eGgrkLkniLLSsyF-800x450-noPad.jpg?1613054164', 'processing': False}}",,,,against +243,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

According to We Got This Covered, ""Minamata didn’t even chart among the fifteen highest-grossing titles of the weekend, meaning that it made less than $15,000.""

+

""The dire performance of Minamata is yet another blow for Johnny Depp‘s career,"" The article says.

+

There's a problem with that report. The film hasn't been released yet.

+

""Over the past couple of days, varying outlets began reporting that Johnny Depp’s new film absolutely bombed at the box office on its opening weekend. The news spread like wildfire despite there being no information to be easily gleaned about the movie’s box office online. In fact, now the studios says the movie didn’t open at all."" Says Cinemablend.

+

""Minamata was not released this past weekend. MGM had postponed the release due to the pandemic and no new date has been set yet.""

+

That's the problem with the mainstream media, especially lately. They take a scrap of a story and run with it, or make one up all together, with no real basis in fact. We've seen that a lot with Johnny Depp since his split from ex-wife Amber Heard, their divorce, her accusations of domestic abuse and his legal efforts to clear his good name.

+

If these articles show anything, it's not the demise of Johnny Depp's career. It's that you can't believe everything you read, especially when it comes to Johnny Depp and his ex. 

+

Don't just believe headlines at face value, folks. Do a little homework to find out the facts. 

+

Carry on.

",,,,,,,,,,,,Minamata bombs? Not exactly.,StarterPetitionUpdate,28521093.0,2021-02-09 19:41:45+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225193850', 'petitionMedium': {'url': '//assets.change.org/photos/8/wq/lu/SiWQLULWTwjeTkI-800x450-noPad.jpg?1612899707', 'processing': False}}",,,,against +244,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

In an interesting turn of events, a new video has surfaced of somebody using Russian bots to sign the petition to remove Amber Heard from Aquaman 2.

+

In the video, a nameless, faceless person uses a Russian website to create over 2,000 signatures.

+

According to the video’s creator, for over 16 hours his bot signed the petition over 2,000 times. It can do 3,000 a day from ONE bot channel and infinitely more from multiple channels.

+

The fact that the bots in this case are being made to look Russian in origin plays right into Amber Heard's narrative that all or most of the signatures on the petition are fake. And it's important that they're of Russian origin, since great measures were taken to try to tie them to Adam Waldman, Johnny Depp's lawyer and friend.

+

According to this article: ""The bot’s Russian origin is a crucial aspect of this story. Adam Waldman, Johnny Depp’s attorney who was barred from his upcoming libel case in the United States, is a former lobbyist for Russian oligarch Oleg Deripaska, a Russian billionaire, and Kremlin insider. It’s believed by some he was involved with or has insider knowledge, of the 2016 hacking of the US election.""

+

Laying it on really thick in the anti-Waldman crusade.

+

In recent history, two things have apparently bothered Amber Heard: Adam Waldman and this petition. She took care of Waldman by successfully lobbying to get him removed from Johnny Depp's upcoming Fairfax defamation case against Amber Heard. That backfired, though, since removing Waldman from the case left him free to discuss the case freely. And he has been. Check out Waldman's Twitter feed to read some delightful insights into the case.

+

And it's obvious that the petition bothers Heard, who mentions it prominently in her $100 million dollar countersuit.

+

It's not the first time action has been taken to try and get the petition removed. Not long ago, negative comments were posted on the petition, and then reported as violations to try to get the petition taken down.

+

That didn't work, and this isn't going to, either. I've already been in contact with Change.org, and rest assured. The petition is quite safe.

+

Johnny Depp has a hearing on 18 March regarding his appeal in the UK libel case against the Sun, and the defamation suit in Fairfax is due to start in May - if it's not pushed back due to Covid.

+

With these cases looming so large, it's possible that more shenanigans will pop up trying to further discredit Adam Waldman and attack the petition. Hopefully, both of these cases will reach fruition soon, and the matter can be decided, once and for all. 

+

How do you think these cases will play out? Will Johnny Depp get justice? Or will Amber Heard prevail?

+

SOURCE

",,,,,,,,,,,,Russian Bots sign the Petition,StarterPetitionUpdate,28508017.0,2021-02-07 17:17:38+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225184786', 'petitionMedium': {'url': '//assets.change.org/photos/3/mu/go/MVmUgOZpenuitse-800x450-noPad.jpg?1612718260', 'processing': False}}",,,,against +245,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Unless you’re the title hero, then anyone in any major blockbuster franchise can theoretically be deemed expendable. For instance, Aquaman 2 could recast the entire ensemble from top to bottom and people would still be willing to check it out, as long as Jason Momoa remained on board as Arthur Curry.

+

Of course, there’ve been a lot of fans threatening to boycott the DCEU sequel entirely based on Amber Heard’s continued involvement in the underwater adventures, although she doesn’t care in the slightest and can’t wait to suit up as Mera again. However, there are reports making the rounds that a new female lead is being introduced as well, one that could potentially reduce Heard’s screen time in the finished product depending on how her next court case opposite ex-husband Johnny Depp plays out.

+

On that note, insider Daniel Richtman is now claiming that the actress is furious after catching wind of the decision, and isn’t happy with Warner Bros. trying to essentially force her out of the spotlight as the female lead of the highest-grossing DC Comics adaptation in history. 

+

We might take this report with a grain of salt, though, considering insiders in the industry have been saying for months that Heard won't be in Aquaman 2 at all. 

+

Sources say that WB has bought out Heard's contract completely. That means that she'll be compensated for her contract without actually appearing in the film. 

+

This flies in the face of some media claims that she's going to get a raise or that Mera will take over for the titular Arthur Curry in the Justice League movies. I guess we'll just have to wait and see who's right.

+

Who do you believe? Industry insiders or the mainstream media?

+

Yeah. Me too.

+

SOURCE

",,,,,,,,,,,,Amber Heard angry at WB,StarterPetitionUpdate,28504793.0,2021-02-06 23:29:11+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225182581', 'petitionMedium': {'url': '//assets.change.org/photos/2/ta/ym/yQtAymEgTLzrgFE-800x450-noPad.jpg?1612654152', 'processing': False}}",,,,against +246,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Last year, the high court of London found against Johnny Depp in a libel case he leveled against NGN newsgroup and The Sun tabloid in particular. 

+

Johnny Depp and his legal team immediately appealed the decision.

+

The appeals process has been rather involved, first going to the original judge to approve or deny that the appeal should move forward, which the judge denied. It was his judgement, after all. That was to be expected.

+

That left team Depp open to take the appeal to the next level, further requesting that the judge's denial should be overlooked and that the appeal should move forward.

+

That process could have left Depp and his crew in legal limbo for a year or more. But now, Depp's lawyers have asked for permission to introduce new evidence. That's ramped up the process, and there's going to be a hearing on the evidence, and the appeal at large.

+

The hearing is set for March 18th. 

+

If granted, this matter could be decided much sooner than we thought.

+

What do you think? Will Johnny's appeal be granted? Or will he be out on his ear?

+

Hat tip to Laura B

",,,,,,,,,,,,Johnny Depp's appeal hearing has a date,StarterPetitionUpdate,28496270.0,2021-02-05 14:56:45+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225177083', 'petitionMedium': {'url': '//assets.change.org/photos/7/fu/ne/QjfuNEoFYtzjcQp-800x450-noPad.jpg?1612537006', 'processing': False}}",,,,against +247,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Following Evan Rachel Wood revealed Marilyn Manson as her alleged abuser, Amber Heard just can’t seem to keep her face out of it. She’s tying herself to Wood, including them together in her claims railing against men she seems to allege are getting away with abusing women, calling out the media, saying: “...and yet, no one sees the trend here? Everyone wants to tag a bathroom wall, no one wants to understand the writing. Evan & I aren’t the 1st to raise our hands. Are you done ignoring it?”

+

It seems that Heard went on a bender last night, posting about how the media seems to be ignoring Marilyn Manson after Wood’s allegations.

+

What it’s got to do with her, one has to wonder. There are some Johnny Depp fans that really don’t want to see Johnny dragged through the mud in the Manson case, but it seems that Heard is desperate to make sure that he is, by association.

+

In her meltdown, at one point, Heard goes off on somebody that calls her a fraud, telling them to shut up if they haven’t been in a situation where they were being strangled and fighting for their life. And, true to fashion, she did it using the tweenspeak trend of using numbers to abbreviate words, making it that much harder to take her accusations and vitriol seriously.

+

Is she now saying that she herself has been strangled? Are these new allegations she’s coming up with against Johnny Depp, or did she at one point say that he was strangling her while he was brutalizing her. Is that part of the testimony she gave behind closed doors? Or was that “just” about being brutally raped? Is there anything she won’t come up with to throw at Johnny Depp to try and make her case stick?

+

In another post, she continues her rage against rich white men, which some might say is rather ironic since those have been the type of men she’s spent her intimate time with. Or, perhaps she’s just talking about the ones that have rejected her.

+

If you recall, Heard’s former assistant Kate James revealed that Heard stole her story of being raped. Is she now appropriating Wood’s story about being strangled?

+

HERE, HERE, HERE and HERE are some screen shots of Heard’s rant. They're taken out of order, from different posts and different conversations, but they are her own words, so enjoy. 

+

Heard amusingly refer to Johnny Depp fans as Wald-Mignons - referring to Depp's lawyer and friend Adam Waldman. I'm pretty sure she meant minions, but fell flat with the intended slight. One fan responded that Mignon actually means cute or pretty, ""...so, thanks.""

+

It seems that Heard is desperate at this point, especially with Depp’s appeal in the UK case looming so near in the future. We all thought we’d have to wait up to two years to hear anything else about that, but here it is, with a huge milestone in the case happening just next month.

+

Yes, she seems desperate. And with what could be a huge victory for Depp looming large on the very near horizon, it stands to reason that we'll likely see more from Heard, whether it's in the context of her own case or not. 

+

Hat tips to everybody that provided screen shots.

+

SOURCE

",,,,,,,,,,,,Amber Heard's late night Twitter rant,StarterPetitionUpdate,28491118.0,2021-02-04 20:05:59+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225173740', 'petitionMedium': {'url': '//assets.change.org/photos/6/hx/tz/HrhXTZEdDZSGhpe-800x450-noPad.jpg?1612469162', 'processing': False}}",,,,against +248,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Dolph Lundgren, who plays King Nereus in the James Wan movie Aquaman, revealed all in a recent appearance at Wizard World Virtual Experiences 2021, telling fans that he'll be diving back into the CGI ocean ""this summer"".

+

Keeping things relatively coy, Lundgren said: ""I may be doing Aquaman 2 this summer, shooting in London. And that's coming out the following year in the theatres, they hope.""

+

Aquaman, the first, was filmed in Australia. So why the move for part 2?

+

Probably because of how seriously Australia takes their bio-laws. Everybody coming into the country has to endure a quarantine period. And that just might not be feasible for such a large production, with people coming and going. 

+

We'll have to wait and see when and where Aquaman 2 starts filming. And who will be in it. 

+

More as it happens.

+

SOURCE

",,,,,,,,,,,,Aquaman 2 filming in London?,StarterPetitionUpdate,28483513.0,2021-02-03 20:04:31+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225168408', 'petitionMedium': {'url': '//assets.change.org/photos/5/xg/xp/qpXGxPGAcakircb-800x450-noPad.jpg?1612382673', 'processing': False}}",,,,against +249,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Last year, Johnny Depp sued NGN and the Sun tabloid over a headline that labeled him a “wife beater.” During testimony, Amber Heard testified that she had been brutalized by Johnnhy Depp on a number of occasions.

+

Following a three-week trial in July last year, Mr. Justice Nicol ruled that Mr Depp, 57, assaulted Ms. Heard, 34, on a dozen occasions and put her in “fear for her life” at least three times.

+

Depp is challenging that ruling.

+

As of yesterday, Johnny Depp’s legal team is asking to submit new evidence that was previously unheard during the trial but has direct bearing upon Depp’s appeal request.

+

There’s some speculation among netizens as to what that evidence could be. Some hope for those salacious Toronto tapes, but more think that the new evidence has to do with proving that Heard lied about donating $7 million dollars to charity as a condition of their divorce. It was those charitable donations that caused Justice Nicol to decide that Heard was not a “gold digger.” If it can be proven that she didn’t donate the money, Nicol’s finding in that regard can definitely be challenged, and could affect whether or not Depp can continue with his appeal process.

+

There will be a two-hour hearing sometime between March 15th and 30th regarding that matter.

+

You can see some of the paperwork HERE and HERE,

+

Huge Hat tip to Laura B.

",,,,,,,,,,,,New evidence,StarterPetitionUpdate,28476056.0,2021-02-02 20:21:56+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225163090', 'petitionMedium': {'url': '//assets.change.org/photos/6/ht/yw/oiHTyWGOsWgywVE-800x450-noPad.jpg?1612297319', 'processing': False}}",,,,against +250,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Evan Rachel wood has been talking for a couple of years about having been allegedly horribly abused by an ex. She spoke before panels and worked hard to try to reform domestic abuse laws.

+

Today, she came forward with the name of her alleged abuser: Marilyn Manson. The two got together when Wood was in her teens and MM was in his thirties.

+

There are a lot of people who immediately believe Wood because of her history of talking about this alleged abuse, and because Manson is just so weird. Also because he wrote in his autobiography that he used to be an abusive piece of shit and that he used to imagine crushing her skull with a sledgehammer. And for saying that the song “I Want to Kill You Like They Do in The Movies” was inspired by one of their breakups.

+

On top of that, four other women have stepped forward with similar accusations of their own against MM.

+

All of that, along with Wood’s disturbing allegations have a lot of people willing to crucify MM on the nearest telephone pole.

+

What does that have to do with Amber Heard or Aquaman 2? At first glance, nothing. But if we take a closer look, the associations abound.

+

First, ERW is “close” friends with Heard. Wood has come out in support of Heard’s allegations against Johnny Depp since Heard first started to allege them – which is just about the time that Wood started talking about being a victim of domestic abuse. Coincidence number one.

+

Also, it’s a pretty well-known fact that MM is (or was) best of buddies with Johnny Depp. The two of them haven’t been seen together in about a year, but they have a long history of being besties. Whether or not that’s still the case isn’t really known.

+

It’s also a fact that as far as I know, none of the women accusing MM ever called the police or filed any reports. The only word we have is in the media and on social media. I’m not saying that makes them liars, far from it. A lot of victims never report their abuse. Johnny Depp didn’t call the police. He relied upon his own private security to protect him.

+

All I’m saying is that the allegations against MM are pretty severe, with women saying they’ve been violently raped, had their lives threatened, were locked in closets, were beaten, even whipped, and more. With allegations so severe, it’s easy to wonder why the police weren’t called, at least by one of them. It would certainly make the allegations easier to swallow.

+

I’m also not saying MM didn’t do it. His own words in his autobiography don’t bode well for him, certainly.

+

What I’m saying is that we need to wait and see some proof, one way or the other. Until that happens, all we have is a she-say/he-say situation.

+

It could come down in a number of ways. MM could be the heartless, sadistic monster his self-proclaimed victims say he is, and he should be locked up for life.

+

Or it could come down that the girls are in cahoots. Wood and Heard, I mean. The two of them, friends, have been alleging abuse against MM and Johnny Depp for roughly the same amount of time, and now would be a great time to come forward with MM’s name, what with the legalities between Heard and Johnny Depp shaping up the way they are. It’s not looking too good for Heard in the Fairfax, VA defamation case Johnny has leveled against her. So what better time to cut the legs out from under Johnny’s bff with allegations of even more monstrous abuse?

+

Or the two cases could have nothing whatsoever to do with each other but coincidence.

+

Right now, it’s too soon to call.

+

One thing that is a fact is that Amber Heard has made it more difficult for victims of either gender to come forward with their stories of abuse thanks to her lies about being abused. Her sh*tstorm of mainstream media stories and crusade through the #MeToo movement have made it nigh impossible for anybody to come forward without enduring intense scrutiny. Gone are the days when we could #BelieveAllWomen. Heard’s completely ruined that.

+

So yeah. While there is a faction ready to believe her outright, ERW is being looked at with some skepticism by a large contingency.

+

The only real truth here is that time will have to tell the truth of what’s going on. My suggestion is to neither believe nor deny these allegations against MM until there’s some shred of proof to back them up, or to prove that they’re false.

+

That’s what happened with Johnny Depp. He was accused of domestic abuse and a lot of people believed it. Then proof came out that those allegations were false.

+

That’s what I’m saying we should do here. Wait for some proof. Reserve judgement until we know definitively, one way or the other. The truth always outs, and it will in this case, too.

+

What do you think? Hang the dude’s reputation on her word? Or wait and see?

",,,,,,,,,,,,Evan Rachel Wood accuses Marilyn Manson,StarterPetitionUpdate,28469977.0,2021-02-02 00:02:36+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225158142', 'petitionMedium': {'url': '//assets.change.org/photos/9/rl/ds/fMrlDSKhJQkHUzj-800x450-noPad.jpg?1612224157', 'processing': False}}",,,,against +251,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

There's THIS snippet from some magazine suggesting that Heard was paid $7 million dollars for her part as Mera in Aquaman 2. 

+

Let's take a look at that, shall we?

+

Jason Momoa's total net worth is reported to be $14 million, and that's combined with his wife, former Cosby kid Lisa Bonet's net worth. It's not impossible that Momoa was paid a figure in the millions, but it's not likely. 

+

Let's take a look at some examples for comparison.

+

Robert Downey Jr, a talented and well-respected actor was reportedly paid $500 thousand for Iron Man. 

+

Gal Gadot was reportedly paid $300 thousand for Wonder Woman.

+

These two were the stars of their movies. And we're supposed to believe that Amber Heard was paid $7 million for a supporting role? It's not impossible, I suppose. But I suspect that pigs would sooner fly.

+

The same magazine clip claims that Heard will probably make closer to $10 million for her part in Aquaman 2.

+

Let's take a look at that, too.

+

Sources have confirmed that Amber Heard will not be in Aquaman 2. She hasn't been fired, exactly. Word has it that she was never re-hired. Being bondable is one concern. Morals clause infringements might very well be another.

+

Rather, her contract has reportedly been bought out by WB. So, while she might have been paid for the project, she will likely not appear in it.

+

Like other stories about Amber Heard, I suspect that this one is greatly exaggerated. 

+

What do you think? Is Heard dipped in gold and worth millions? Or is she on her way out the door from Hollywood?

",,,,,,,,,,,,What is Amber Heard worth?,StarterPetitionUpdate,28461870.0,2021-01-31 20:03:22+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225152561', 'petitionMedium': {'url': '//assets.change.org/photos/3/bq/tt/uLbQtToFGCFlEYl-800x450-noPad.jpg?1612123406', 'processing': False}}",,,,against +252,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

It's entirely possible that Johnny Depp's defamation trial against his ex-wife Amber Heard might get pushed back into the timing of when Heard claims she's supposed to be filming Aquaman 2. 

+

Remember when Johnny Depp wanted to make arrangements for the trial to allow for his filming of FB? Heard successfully argued against it, refusing to let the court make any such allowances for him. That might, in part, have been why Johnny Depp was asked to step down from the franchise. His filming schedule would have been interrupted - partly by that three-day deposition she made him sit for that conflicted with filming.

+

Well, now the shoe is on the other foot.

+

Because of court's Covid-related scheduling conflicts, the case may very well be pushed back into what she claims will be HER filming schedule. And, since she already argued against scheduling court around filming for him, the same applies to her. 

+

If .court couldn't be rescheduled for him, it can't be rescheduled for her.

+

Sauce for the gander is just as good for the goose.

+

There's also the small matter of fact that filming for Aquaman 2 will take place in Australia, where Heard is being investigated for perjury in relation to smuggling her dogs into Australia. 

+

Given both of these circumstances, and the fact that reliable sources report that her contract has been bought out, chances are very slim (see what I did there?) that Heard will appear in Aquaman 2.

+

What do you think? Will Heard be AM2? Or is she all washed up?

+

Hat tip to Stitch_Cult

",,,,,,,,,,,,Fairfax and Oz,StarterPetitionUpdate,28451726.0,2021-01-29 20:31:22+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225145801', 'petitionMedium': {'url': '//assets.change.org/photos/4/gc/ss/sEGcSSAdrMswSfG-800x450-noPad.jpg?1611952288', 'processing': False}}",,,,against +253,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Amber Heard insisted in her testimony that Johnny Depp pulled her hair no fewer than 12 times over the course of 5 years, leaving open wounds on her scalp at least once. Toward that end, Heard has circulated this picture showing her pointing at the incriminating hair laying in the floor in one perfect clump.

+

Let's take a look at that, shall we?

+

There isn't a root on a single one of those hairs, no bits of skin or flesh.

+

Let us now consider a few questions that Lawyer laws asked her in response to those claims: 

+

Laws: why do we see no roots with the pulled out hair?
AH: Because it broke, where he grabbed it.
Laws: Then how do we see a picture of an injured scalp, when the hair just broke?
AH: .-------------

+

Right. There's no real answer to that. Because if hair on somebody's head is being violently yanked, whole clumps of it don't just break off, no matter how damaged it is.

+

No. There's no evidence to show that this clump of hair ""broke"" off during a violent tussle. And that begs the question: Where did it come from? Is it possible that this photo is staged to try to frame Depp?

+

You tell me.

",,,,,,,,,,,,Pulled or cut?,StarterPetitionUpdate,28424879.0,2021-01-25 18:44:59+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225127501', 'petitionMedium': {'url': '//assets.change.org/photos/4/ti/oe/HfTioENyropnEzG-800x450-noPad.jpg?1611600303', 'processing': False}}",,,,against +254,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

I still see people using the argument that both Johnny Depp and Amber Heard were toxic and violent. So, the theory goes, it's a wash.

+

Let's take a look at that, shall we? 

+

Amber Heard recorded conversations with herself and ex Johnny Depp, in which she calls him a baby for ducking out of fights. She criticizes him harshly for leaving every single fight, admonishing him for not staying and fighting.

+

She also admits to being the one that starts physical fights. Johnny answers that when things get physical, they have to separate, and she berates him again, daring him to tell the world that he's a victim because nobody will believe him.

+

If you can tolerate listening to Johnny being verbally abused and gaslit, you can hear the conversation HERE

+

Now, you tell me. Does it sound like the action of a violent man to leave whenever fights get physical, started by Heard, by her own admission?

+

Of course not. But there are people out there that want to believe Heard because she's a woman, or who haven't bothered to educate themselves to the facts of the case.

+

That's why Johnny's case is so important. Not just to clear his own name, but to clear a path for abused men to be able to come forward as victims and be believed.

+

HERE is a schedule of upcoming events related to the Depp/Heard legal battle. Hat Tip to Laura B. 

",,,,,,,,,,,,Both Toxic?,StarterPetitionUpdate,28408750.0,2021-01-22 17:08:35+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225116128', 'petitionMedium': {'url': '//assets.change.org/photos/8/zg/ap/gUzgaPzaTEWNoHH-800x450-noPad.jpg?1611335317', 'processing': False}}",,,,against +255,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Qwerty, Twitterverse denizen extraordinaire, posted a thread about Amber Heard’s claims of injury, with proof of how each never happened.

+

It’s a gorgeous thread, complete with pictures and irrefutable proof. I highly suggest that you check it out. Especially if you’re one of those people that still, unexplainably, believe Heard’s version of events. There’s no denying the pictures, or Heard’s own words.

+

For example, this picture was taken 2 days after Amber claims Johnny Depp knelt on her back and was hitting her, slapping her, and pulling her hair. Do you see any injuries? Nope. Me neither.

+

This picture also flies in the face of Heard's testimony that Johnny didn't let her wear anything too revealing when they were together.

+

Funny how those lies add up, innit?

+

Massive hat tip to dearest Qwerty.

+

SOURCE

",,,,,,,,,,,,Amber Heard's nonexistent injuries,StarterPetitionUpdate,28396893.0,2021-01-20 17:56:13+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225107508', 'petitionMedium': {'url': '//assets.change.org/photos/4/dd/jl/TnddJlymmaHCYcO-800x450-noPad.jpg?1611165375', 'processing': False}}",,,,against +256,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Adam W, Johnny Depp's friend and lawyer has been gloriously dishing the Tea about Amber Heard on Twitter. It's a thing of beauty. 

+

If you want to keep up with the latest on what's wrong with Amber Heard's case, be sure to look him up.

",,,,,,,,,,,,Johnny Depp's lawyer speaks,StarterPetitionUpdate,28393118.0,2021-01-20 00:50:15+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225104760', 'petitionMedium': {'url': '//assets.change.org/photos/7/nm/vf/WxnMvfUGfzUIaut-800x450-noPad.jpg?1611103835', 'processing': False}}",,,,against +257,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

iO Tillet-Wright famously insisted on the stand that Amber Heard couldn't have left the pile of poop in Johnny Depp's bed because she's ""Faecal-Phobic."" 

+

Yet HERE'S Amber Heard toting a sack o' poop after cleaning up after her dogs. HERE'S another one. And another from a different day. So...

+

Poop-phobic? Or full of it? You tell me. 

",,,,,,,,,,,,Poop-phobic?,StarterPetitionUpdate,28380622.0,2021-01-17 18:15:20+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225095496', 'petitionMedium': {'url': '//assets.change.org/photos/0/fy/hi/QwfyHIfCIuXIljr-800x450-noPad.jpg?1610907322', 'processing': False}}",,,,against +258,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Amber Heard continues her legal posturing ahead of Johnny Depp's defamation suit against her, which is set to begin in May, 2021.

+

There's a subpoena issued for ""an executive"" from Disney, seeking: “all information relating to documents and communications of any nature” on Depp and “incidents of drug or alcohol use (including suspected drug or alcohol use).” Similarly, they are looking for any information about “any delays or tardiness caused by Mr. Depp,” “any incidents of violence or abuse by Mr. Depp,” any info on impute the actor had or “hiring, casting,” and “disagreements with the writers, directors or producers with the filming, editing and/or release of Pirates 5.”

+

There's a subpoena out for the LAPD as well, wanting: everything that the police have on file regarding a May altercation between Heard and Depp that led to Heard receiving a restraining order against Depp. And they mean everything. Any correspondence, body cam footage, everything. 

+

Heard insists that the final altercation between herself and Johnny Depp was Depp's fault because he was physically and verbally abusing her. Johnny insists that the altercation never happened, that it's a hoax perpetrated by Heard and her close circle of friends.

+

If body cam footage of the police's response exists, it could go a long way toward proving one position or the other. 

+

The court date is looming ever nearer. We'll have to wait and see how this one goes. If you remember Johnny lost a libel suit against the Sun because the judge said he believed Heard. 

+

That case is under appeal, so we'll have to see how that one turns out, too. It's not over for Johnny in either case. Not by a long shot. He is determined to clear his name, and there is an army of fans worldwide that support him wholeheartedly. 

+

I'm one of them.

+

SOURCE

",,,,,,,,,,,,Heard wants to depose Disney and the LAPD,StarterPetitionUpdate,28371071.0,2021-01-15 18:52:24+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225088841', 'petitionMedium': {'url': '//assets.change.org/photos/3/on/hz/epoNHZszclnXiCj-800x450-noPad.jpg?1610736746', 'processing': False}}",,,,against +259,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

I'm having a little trouble posting updates lately. I'll keep trying, so keep your fingers crossed that it's just a glitch I can get fixed.

",,,,,,,,,,,,Updates,StarterPetitionUpdate,28365721.0,2021-01-14 20:58:40+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225085286', 'petitionMedium': {'url': '//assets.change.org/photos/4/ye/rl/sYyERlFLmHBmlqM-800x450-noPad.jpg?1610657924', 'processing': False}}",,,,against +260,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

As part of her divorce settlement, Amber Heard pledged to donate her entire 7 million dollar settlement to charity. Namely, to the American Civil Liberties Union and the Children’s Hospital of Los Angeles.

+

Heard has said in numerous interviews in the last several years that the money was donated, split between those two charities. She also testified to it under oath, under penalty of Perjury.

+

Well, lately, things have gotten really interesting. Turns out the only contribution that’s been made to the Children’s hospital was the original $100,000 Johnny Depp made on her behalf. And there’s no proof of what, if anything, Amber Heard donated to the ACLU herself. Apparently there have been donations made on her behalf, but no proof that she, herself, donated a single red cent.

+

For one thing, it was part of a legally binding contract (her divorce), that she would donate that money. For another thing, she testified under penalty of perjury that she donated it.

+

As I understand it, the penalty for Perjury in the UK is up to 7 years in prison. Pile that on top of perjury charges she’s being investigated for in Australia, and those years are really starting to pile up on her.

+

In a truly amusing turn of events, Amber Heard, through her lawyer, is now claiming that she can’t make those donations because of Johnny’s ongoing litigation.

+

""However, Amber has been delayed in that goal because Mr. Depp filed a lawsuit against her, and consequently, she has been forced to spend millions of dollars defending Mr. Depp's false accusations against her.""

+

And never mind that Heard was supposed to have made those donations 3 years before he ever filed suit against her.

+

Heard plans to fulfill those donations “eventually,” her lawyer says.

+

So, basically, Heard’s defense against being accused of not paying 7 million dollars to charity is to admit that she didn’t pay 7 million dollars to charity, and blame it on Johnny.

+

Keep on digging, Amber. Keep on digging.

+

SOURCE

",,,,,,,,,,,,Heard's missing Donations,StarterPetitionUpdate,28328823.0,2021-01-08 16:13:57+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225058903', 'petitionMedium': {'url': '//assets.change.org/photos/8/zd/yq/hJzdYQXZnEAyztb-800x450-noPad.jpg?1610122439', 'processing': False}}",,,,against +261,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Amber Heard has claimed in her testimony that ex-husband Johnny Depp tried to control her for up to three years or more by making sure she didn’t have access to any cars. Depp’s driver(s) took her everywhere, apparently, making sure she couldn’t go anywhere on her own.

+

But yet, Heard got into an accident driving Johnny’s Range Rover. HERE'S statement trying her hardest to shirk responsibility for it. Whether she caused the accident is neither here nor there. What matters is that she was driving.

+

How does that work, when she claims that she wasn’t allowed to drive?

+

Those inconsistencies keep piling up, don’t they?

+

Up next: How much did Heard actually donate to the Children’s Hospital? Let’s look at those receipts, shall we?

",,,,,,,,,,,,Amber Heard contradicts herself. Again.,StarterPetitionUpdate,28324876.0,2021-01-07 23:04:39+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225055917', 'petitionMedium': {'url': '//assets.change.org/photos/8/dw/dr/YmdwDrZoOEfwbFz-800x450-noPad.jpg?1610060680', 'processing': False}}",,,,against +262,https://www.change.org/p/dc-entertainment-remove-amber-heard-from-aquaman-2,0,0,0,0,,petitions_milestones,,"

Hey, folks, guess what! We’re human!

+

The court in Fairfax, VA has issued an Opinion Letter dismissing most of Amber Heard’s counterclaim, and upholding only a few bits of it. But the parts where she mentions this petition say that:

+

“The allegations that “Mr. Depp has initiated, coordinated, overseen and/or supported and amplified two change.org petitions: one to remove Ms. Heard as an actress in the Aquaman movie franchise, and one to remove her as a  spokeswoman for L’Oreal” fails under the second prong of the VCCA. See Countercl. Paragraph 6. Nothing in that allegation implies facts showing that the change.org petitions included obscene language, threatened illegal or immoral acts, or suggest or propose obscene acts. See Va. Code 18.2-152.7:1. Likewise, the allegation that Mr. Depp “created, coordinated, controlled, and/or manipulated social media accounts created specifically for the purpose of targeting Ms. Heard,” also fails under the second prong of the VCCA. See VA code 18.2-152.7:1. The pleading fails to demonstrate that the social media accounts communicated obscene language, suggested obscene acts, or threatened illegal or immoral acts. Because neither of those allegations meet the second element of the VCCA, they cannot move forward in this litigation.”

+

So the court didn’t buy all that nonsense about Johnny Depp  being responsible for these petition and all us “Russian bots.” So even the court recognizes how ridiculous that claim was.

+

The only bummer about it is that now, I probably won’t be called to testify that Johnny Depp had nothing to do with the creation or maintenance of this petition. I was kind of looking forward to that.

+

There's a lot more to the letter, addressing more about Heard's counterclaim, but that's the part that deals with this petition.

+

You can read the Opinion Letter in full HERE

",,,,,,,,,,,,We're Human!,StarterPetitionUpdate,28309556.0,2021-01-05 17:05:32+00:00,,dc-entertainment-remove-amber-heard-from-aquaman-2,"{'id': '225044661', 'petitionMedium': {'url': '//assets.change.org/photos/8/jv/da/WojVDarRKyryBRo-800x450-noPad.jpg?1609866334', 'processing': False}}",,,,against +263,https://www.change.org/p/warner-brothers-justice-for-johnny-depp-in-the-case-against-amber-heard,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28317540.0,2021-01-06 21:36:02+00:00,50.0,warner-brothers-justice-for-johnny-depp-in-the-case-against-amber-heard,,,,,against +264,https://www.change.org/p/dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28676598.0,2021-03-09 05:54:26+00:00,750.0,dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,,,,,for +265,https://www.change.org/p/dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28516355.0,2021-02-09 01:03:19+00:00,500.0,dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,,,,,for +266,https://www.change.org/p/dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28516353.0,2021-02-09 01:02:45+00:00,500.0,dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,,,,,for +267,https://www.change.org/p/dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28516350.0,2021-02-09 01:02:22+00:00,500.0,dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,,,,,for +268,https://www.change.org/p/dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28509957.0,2021-02-08 00:29:37+00:00,250.0,dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,,,,,for +269,https://www.change.org/p/dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28509837.0,2021-02-07 23:54:26+00:00,200.0,dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,,,,,for +270,https://www.change.org/p/dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28509577.0,2021-02-07 22:41:58+00:00,100.0,dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,,,,,for +271,https://www.change.org/p/dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28508926.0,2021-02-07 20:25:28+00:00,50.0,dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,,,,,for +272,https://www.change.org/p/dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28506285.0,2021-02-07 08:43:03+00:00,25.0,dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,,,,,for +273,https://www.change.org/p/dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28506277.0,2021-02-07 08:37:24+00:00,10.0,dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,,,,,for +274,https://www.change.org/p/dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28506271.0,2021-02-07 08:34:51+00:00,5.0,dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,,,,,for +275,https://www.change.org/p/warner-brothers-let-women-thrive-in-hollywood,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28494470.0,2021-02-05 07:40:58+00:00,25.0,warner-brothers-let-women-thrive-in-hollywood,,,,,for +276,https://www.change.org/p/warner-bros-bring-back-johnny-depp-as-grindelwald,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28865623.0,2021-04-12 20:12:34+00:00,25.0,warner-bros-bring-back-johnny-depp-as-grindelwald,,,,,against +277,https://www.change.org/p/people-with-common-sense-amber-heard-must-be-fired-too,0,0,0,0,,petitions_milestones,,,,25000.0,,,,,,,,,,,MilestonePetitionUpdate,28687808.0,2021-03-10 23:53:38+00:00,25000.0,people-with-common-sense-amber-heard-must-be-fired-too,,,,,against +278,https://www.change.org/p/people-with-common-sense-amber-heard-must-be-fired-too,0,0,0,0,,petitions_milestones,,,,20000.0,,,,,,,,,,,MilestonePetitionUpdate,28432161.0,2021-01-26 22:14:43+00:00,20000.0,people-with-common-sense-amber-heard-must-be-fired-too,,,,,against +279,https://www.change.org/p/people-with-common-sense-amber-heard-must-be-fired-too,0,0,0,0,,petitions_milestones,,,,17500.0,,,,,,,,,,,MilestonePetitionUpdate,28331142.0,2021-01-08 22:32:05+00:00,17500.0,people-with-common-sense-amber-heard-must-be-fired-too,,,,,against +280,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28846786.0,2021-04-09 08:32:24+00:00,10.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +281,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,4000.0,,,,,,,,,,,MilestonePetitionUpdate,28815970.0,2021-04-02 23:29:07+00:00,4000.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +282,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,3000.0,,,,,,,,,,,MilestonePetitionUpdate,28796861.0,2021-03-30 12:23:17+00:00,3000.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +283,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,2500.0,,,,,,,,,,,MilestonePetitionUpdate,28789430.0,2021-03-29 00:09:36+00:00,2500.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +284,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,2000.0,,,,,,,,,,,MilestonePetitionUpdate,28781731.0,2021-03-27 06:33:21+00:00,2000.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +285,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,1500.0,,,,,,,,,,,MilestonePetitionUpdate,28772037.0,2021-03-25 15:44:16+00:00,1500.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +286,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28762432.0,2021-03-24 00:36:09+00:00,1000.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +287,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28757146.0,2021-03-23 05:09:03+00:00,750.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +288,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28752474.0,2021-03-22 12:04:03+00:00,500.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +289,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28673582.0,2021-03-08 17:50:13+00:00,250.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +290,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28672253.0,2021-03-08 13:06:43+00:00,200.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +291,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28610833.0,2021-02-25 12:37:54+00:00,100.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +292,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28603193.0,2021-02-24 05:35:12+00:00,1000.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +293,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28602958.0,2021-02-24 04:14:14+00:00,750.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +294,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28602050.0,2021-02-24 00:23:33+00:00,500.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +295,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28602048.0,2021-02-24 00:23:00+00:00,500.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +296,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28591299.0,2021-02-22 08:35:00+00:00,250.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +297,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28591176.0,2021-02-22 07:50:17+00:00,200.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +298,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28590970.0,2021-02-22 06:25:43+00:00,100.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +299,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28589009.0,2021-02-21 20:21:29+00:00,50.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +300,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28584698.0,2021-02-20 21:18:10+00:00,25.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +301,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28584645.0,2021-02-20 21:07:44+00:00,10.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +302,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28584639.0,2021-02-20 21:06:25+00:00,5.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +303,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28584632.0,2021-02-20 21:05:50+00:00,5.0,united-nations-save-amber-heard-women-s-rights-activists,,,,,for +304,https://www.change.org/p/warner-bros-and-dc-comics-removal-of-amber-heard-in-the-aquaman-franchise,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28588484.0,2021-02-21 18:24:48+00:00,10.0,warner-bros-and-dc-comics-removal-of-amber-heard-in-the-aquaman-franchise,,,,,against +305,https://www.change.org/p/dc-replace-amber-heard-with-danny-devito-in-aquaman,0,0,0,0,,petitions_milestones,,,,35000.0,,,,,,,,,,,MilestonePetitionUpdate,28639967.0,2021-03-02 19:09:15+00:00,35000.0,dc-replace-amber-heard-with-danny-devito-in-aquaman,,,,,against +306,https://www.change.org/p/dc-replace-amber-heard-with-danny-devito-in-aquaman,0,0,0,0,,petitions_milestones,,"

This got so many more signatures than I expected, but let's keep sharing. This has got to be one of the funniest things thats happened in awhile and in these times we need comedy. So, let's keep sharing and spreading this joke!

",,,,,,,,,,,,Very cool,StarterPetitionUpdate,28553484.0,2021-02-15 15:08:48+00:00,,dc-replace-amber-heard-with-danny-devito-in-aquaman,,,,,against +307,https://www.change.org/p/dc-replace-amber-heard-with-danny-devito-in-aquaman,0,0,0,0,,petitions_milestones,,"

We can still gain some momentum! Please share with all your friends, family, mild acquaintances, and even your enemies. I would like to thank the person who donated money, but that was really unnecessary. Please dont donate and just share it!

",,,,,,,,,,,,We can do it!,StarterPetitionUpdate,28344358.0,2021-01-11 13:11:00+00:00,,dc-replace-amber-heard-with-danny-devito-in-aquaman,,,,,against +308,https://www.change.org/p/dc-replace-amber-heard-with-danny-devito-in-aquaman,0,0,0,0,,petitions_milestones,,"

Hi all, I just wanted to reach out to let you know we’ve just passed 30,505 signatures on our petition! Thank you so much for your support! Will you help me to get more support by sharing this petition with ten other people? If enough of us sign we can’t be ignored! Here’s a link to share https://www.change.org/p/dc-replace-amber-heard-with-danny-devito-in-aquaman

",,,,,,,,,,,,Let’s take this campaign to the next level,StarterPetitionUpdate,28302383.0,2021-01-04 14:07:40+00:00,,dc-replace-amber-heard-with-danny-devito-in-aquaman,,,,,against +309,https://www.change.org/p/johnnydeppisinnocent,0,0,0,0,,petitions_milestones,,,,10000.0,,,,,,,,,,,MilestonePetitionUpdate,28379862.0,2021-01-17 15:15:44+00:00,10000.0,johnnydeppisinnocent,,,,,against +310,https://www.change.org/p/johnnydeppisinnocent,0,0,0,0,,petitions_milestones,,,,9000.0,,,,,,,,,,,MilestonePetitionUpdate,28297250.0,2021-01-03 11:26:20+00:00,9000.0,johnnydeppisinnocent,,,,,against +311,https://www.change.org/p/warner-brothers-give-johnny-deep-his-roles-back,0,0,0,0,,petitions_milestones,,,,200000.0,,,,,,,,,,,MilestonePetitionUpdate,28686948.0,2021-03-10 21:19:09+00:00,200000.0,warner-brothers-give-johnny-deep-his-roles-back,,,,,against +312,https://www.change.org/p/everyone-replace-amber-heard-with-jacksepticeye-in-auqaman,0,0,0,0,,petitions_milestones,,"

Hi all, I just wanted to reach out to let you know we’ve just passed 105 signatures on our petition! Thank you so much for your support! Will you help me to get more support by sharing this petition with ten other people? If enough of us sign we can’t be ignored! Here’s a link to share https://www.change.org/p/everyone-replace-amber-heard-with-jacksepticeye-in-auqaman

",,,,,,,,,,,,Let’s take this campaign to the next level,StarterPetitionUpdate,28780342.0,2021-03-26 22:35:24+00:00,,everyone-replace-amber-heard-with-jacksepticeye-in-auqaman,,,,,against +313,https://www.change.org/p/optomen-stop-johnny-depp-documentary-by-itv,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28922411.0,2021-04-21 17:26:09+00:00,5.0,optomen-stop-johnny-depp-documentary-by-itv,,,,,against +314,https://www.change.org/p/kamala-harris-support-amber-heard-stop-domestic-violence-against-women,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28941746.0,2021-04-25 01:18:43+00:00,250.0,kamala-harris-support-amber-heard-stop-domestic-violence-against-women,,,,,for +315,https://www.change.org/p/kamala-harris-support-amber-heard-stop-domestic-violence-against-women,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28938653.0,2021-04-24 11:07:33+00:00,200.0,kamala-harris-support-amber-heard-stop-domestic-violence-against-women,,,,,for +316,https://www.change.org/p/kamala-harris-support-amber-heard-stop-domestic-violence-against-women,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28930811.0,2021-04-22 23:40:37+00:00,100.0,kamala-harris-support-amber-heard-stop-domestic-violence-against-women,,,,,for +317,https://www.change.org/p/kamala-harris-support-amber-heard-stop-domestic-violence-against-women,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28925770.0,2021-04-22 05:48:00+00:00,50.0,kamala-harris-support-amber-heard-stop-domestic-violence-against-women,,,,,for +318,https://www.change.org/p/kamala-harris-support-amber-heard-stop-domestic-violence-against-women,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28923516.0,2021-04-21 20:33:43+00:00,25.0,kamala-harris-support-amber-heard-stop-domestic-violence-against-women,,,,,for +319,https://www.change.org/p/kamala-harris-support-amber-heard-stop-domestic-violence-against-women,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28921428.0,2021-04-21 14:46:58+00:00,10.0,kamala-harris-support-amber-heard-stop-domestic-violence-against-women,,,,,for +320,https://www.change.org/p/kamala-harris-support-amber-heard-stop-domestic-violence-against-women,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28906452.0,2021-04-19 11:37:42+00:00,5.0,kamala-harris-support-amber-heard-stop-domestic-violence-against-women,,,,,for +321,https://www.change.org/p/mera-solo-movie,0,0,0,0,,petitions_milestones,,,,2000.0,,,,,,,,,,,MilestonePetitionUpdate,28481425.0,2021-02-03 15:25:56+00:00,2000.0,mera-solo-movie,,,,,related +322,https://www.change.org/p/mera-solo-movie,0,0,0,0,,petitions_milestones,,,,1500.0,,,,,,,,,,,MilestonePetitionUpdate,28479135.0,2021-02-03 06:31:32+00:00,1500.0,mera-solo-movie,,,,,related +323,https://www.change.org/p/mera-solo-movie,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28477416.0,2021-02-02 23:52:37+00:00,1000.0,mera-solo-movie,,,,,related +324,https://www.change.org/p/mera-solo-movie,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28476104.0,2021-02-02 20:28:46+00:00,750.0,mera-solo-movie,,,,,related +325,https://www.change.org/p/mera-solo-movie,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28474572.0,2021-02-02 16:51:43+00:00,500.0,mera-solo-movie,,,,,related +326,https://www.change.org/p/mera-solo-movie,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28473167.0,2021-02-02 13:14:02+00:00,250.0,mera-solo-movie,,,,,related +327,https://www.change.org/p/hollywood-boycott-aquaman-2-amber-heard,0,0,0,0,,petitions_milestones,,,,20000.0,,,,,,,,,,,MilestonePetitionUpdate,28508927.0,2021-02-07 20:25:32+00:00,20000.0,hollywood-boycott-aquaman-2-amber-heard,,,,,against +328,https://www.change.org/p/johnny-depp-justiceforjohnnydepp-a5a5feae-1005-48e2-a29a-437df928ddd1,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28660568.0,2021-03-05 22:05:01+00:00,100.0,johnny-depp-justiceforjohnnydepp-a5a5feae-1005-48e2-a29a-437df928ddd1,,,,,against +329,https://www.change.org/p/johnny-depp-justiceforjohnnydepp-a5a5feae-1005-48e2-a29a-437df928ddd1,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28626521.0,2021-02-28 12:32:36+00:00,50.0,johnny-depp-justiceforjohnnydepp-a5a5feae-1005-48e2-a29a-437df928ddd1,,,,,against +330,https://www.change.org/p/johnny-depp-justiceforjohnnydepp-a5a5feae-1005-48e2-a29a-437df928ddd1,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28610991.0,2021-02-25 13:19:06+00:00,25.0,johnny-depp-justiceforjohnnydepp-a5a5feae-1005-48e2-a29a-437df928ddd1,,,,,against +331,https://www.change.org/p/johnny-depp-justiceforjohnnydepp-a5a5feae-1005-48e2-a29a-437df928ddd1,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28586964.0,2021-02-21 11:41:06+00:00,10.0,johnny-depp-justiceforjohnnydepp-a5a5feae-1005-48e2-a29a-437df928ddd1,,,,,against +332,https://www.change.org/p/johnny-depp-justiceforjohnnydepp-a5a5feae-1005-48e2-a29a-437df928ddd1,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28559946.0,2021-02-16 17:32:17+00:00,5.0,johnny-depp-justiceforjohnnydepp-a5a5feae-1005-48e2-a29a-437df928ddd1,,,,,against +333,https://www.change.org/p/jhonny-deep-fans-justicieforjhonnydeep-i-propose-not-to-watch-another-movie-in-the-franchise-in-support-of-actor-jhonny-deep,0,0,0,0,,petitions_milestones,,,,1000.0,,,,,,,,,,,MilestonePetitionUpdate,28674793.0,2021-03-08 21:38:40+00:00,1000.0,jhonny-deep-fans-justicieforjhonnydeep-i-propose-not-to-watch-another-movie-in-the-franchise-in-support-of-actor-jhonny-deep,,,,,against +334,https://www.change.org/p/warner-brothers-to-get-amber-heard-fired-in-aquaman,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28537925.0,2021-02-12 06:14:07+00:00,25.0,warner-brothers-to-get-amber-heard-fired-in-aquaman,,,,,against +335,https://www.change.org/p/the-royal-courts-of-justice-london-justice-for-johnny-depp,0,0,0,0,,petitions_milestones,,,,2000.0,,,,,,,,,,,MilestonePetitionUpdate,28441203.0,2021-01-28 09:10:00+00:00,2000.0,the-royal-courts-of-justice-london-justice-for-johnny-depp,,,,,against +336,https://www.change.org/p/amber-heard-have-amber-heard-plead-guilty-for-domestic-violence,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28760426.0,2021-03-23 18:08:26+00:00,10.0,amber-heard-have-amber-heard-plead-guilty-for-domestic-violence,,,,,against +337,https://www.change.org/p/change-org-blacklist-amber-heard-from-hollywood,0,0,0,0,,petitions_milestones,,,,750.0,,,,,,,,,,,MilestonePetitionUpdate,28519468.0,2021-02-09 15:23:50+00:00,750.0,change-org-blacklist-amber-heard-from-hollywood,,,,,against +338,https://www.change.org/p/change-org-petitions-to-remove-amber-heard-from-aquaman-perpetuates-abuse-towards-women-who-speak-up,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28371346.0,2021-01-15 19:39:32+00:00,500.0,change-org-petitions-to-remove-amber-heard-from-aquaman-perpetuates-abuse-towards-women-who-speak-up,,,,,for +339,https://www.change.org/p/change-org-petitions-to-remove-amber-heard-from-aquaman-perpetuates-abuse-towards-women-who-speak-up,0,0,0,0,,petitions_milestones,,,,500.0,,,,,,,,,,,MilestonePetitionUpdate,28371343.0,2021-01-15 19:39:11+00:00,500.0,change-org-petitions-to-remove-amber-heard-from-aquaman-perpetuates-abuse-towards-women-who-speak-up,,,,,for +340,https://www.change.org/p/change-org-petitions-to-remove-amber-heard-from-aquaman-perpetuates-abuse-towards-women-who-speak-up,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28369655.0,2021-01-15 14:51:25+00:00,250.0,change-org-petitions-to-remove-amber-heard-from-aquaman-perpetuates-abuse-towards-women-who-speak-up,,,,,for +341,https://www.change.org/p/change-org-petitions-to-remove-amber-heard-from-aquaman-perpetuates-abuse-towards-women-who-speak-up,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28369122.0,2021-01-15 13:03:25+00:00,200.0,change-org-petitions-to-remove-amber-heard-from-aquaman-perpetuates-abuse-towards-women-who-speak-up,,,,,for +342,https://www.change.org/p/change-org-petitions-to-remove-amber-heard-from-aquaman-perpetuates-abuse-towards-women-who-speak-up,0,0,0,0,,petitions_milestones,,,,100.0,,,,,,,,,,,MilestonePetitionUpdate,28368770.0,2021-01-15 11:27:28+00:00,100.0,change-org-petitions-to-remove-amber-heard-from-aquaman-perpetuates-abuse-towards-women-who-speak-up,,,,,for +343,https://www.change.org/p/change-org-petitions-to-remove-amber-heard-from-aquaman-perpetuates-abuse-towards-women-who-speak-up,0,0,0,0,,petitions_milestones,,,,50.0,,,,,,,,,,,MilestonePetitionUpdate,28368729.0,2021-01-15 11:13:06+00:00,50.0,change-org-petitions-to-remove-amber-heard-from-aquaman-perpetuates-abuse-towards-women-who-speak-up,,,,,for +344,https://www.change.org/p/warner-brothers-remove-amber-heard-from-aquaman-2-8e6401e6-50bb-4731-b699-16e3ffa06768,0,0,0,0,,petitions_milestones,,,,250.0,,,,,,,,,,,MilestonePetitionUpdate,28525512.0,2021-02-10 13:24:46+00:00,250.0,warner-brothers-remove-amber-heard-from-aquaman-2-8e6401e6-50bb-4731-b699-16e3ffa06768,,,,,against +345,https://www.change.org/p/warner-brothers-remove-amber-heard-from-aquaman-2-8e6401e6-50bb-4731-b699-16e3ffa06768,0,0,0,0,,petitions_milestones,,,,200.0,,,,,,,,,,,MilestonePetitionUpdate,28333734.0,2021-01-09 11:41:57+00:00,200.0,warner-brothers-remove-amber-heard-from-aquaman-2-8e6401e6-50bb-4731-b699-16e3ffa06768,,,,,against +346,https://www.change.org/p/ministry-of-justice-grant-johnny-depp-his-appeal,0,0,0,0,,petitions_milestones,,,,2500.0,,,,,,,,,,,MilestonePetitionUpdate,28342343.0,2021-01-11 02:11:42+00:00,2500.0,ministry-of-justice-grant-johnny-depp-his-appeal,,,,,against +347,https://www.change.org/p/people-fight-with-johnny-depp,0,0,0,0,,petitions_milestones,,,,25.0,,,,,,,,,,,MilestonePetitionUpdate,28617190.0,2021-02-26 13:15:35+00:00,25.0,people-fight-with-johnny-depp,,,,,against +348,https://www.change.org/p/california-state-senate-men-s-rights-and-the-injustices-of-the-court-and-society,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28506331.0,2021-02-07 08:58:26+00:00,10.0,california-state-senate-men-s-rights-and-the-injustices-of-the-court-and-society,,,,,against +349,https://www.change.org/p/california-state-senate-men-s-rights-and-the-injustices-of-the-court-and-society,0,0,0,0,,petitions_milestones,,,,5.0,,,,,,,,,,,MilestonePetitionUpdate,28465818.0,2021-02-01 13:21:03+00:00,5.0,california-state-senate-men-s-rights-and-the-injustices-of-the-court-and-society,,,,,against +350,https://www.change.org/p/at-t-boycott-warner-media-and-their-parent-company-at-t,0,0,0,0,,petitions_milestones,,,,10.0,,,,,,,,,,,MilestonePetitionUpdate,28631140.0,2021-03-01 10:44:20+00:00,10.0,at-t-boycott-warner-media-and-their-parent-company-at-t,,,,,against +351,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,15000.0,,,,,,,,,,,MilestonePetitionUpdate,28944815.0,2021-04-25 17:53:13+00:00,15000.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +352,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,12500.0,,,,,,,,,,,MilestonePetitionUpdate,28635566.0,2021-03-02 01:16:47+00:00,12500.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +353,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,10000.0,,,,,,,,,,,MilestonePetitionUpdate,28600597.0,2021-02-23 19:39:09+00:00,10000.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +354,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,9000.0,,,,,,,,,,,MilestonePetitionUpdate,28596913.0,2021-02-23 05:10:08+00:00,9000.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +355,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,8000.0,,,,,,,,,,,MilestonePetitionUpdate,28580959.0,2021-02-20 02:05:22+00:00,8000.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +356,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,7500.0,,,,,,,,,,,MilestonePetitionUpdate,28578368.0,2021-02-19 17:04:26+00:00,7500.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +357,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,7000.0,,,,,,,,,,,MilestonePetitionUpdate,28575607.0,2021-02-19 04:40:46+00:00,7000.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +358,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,6000.0,,,,,,,,,,,MilestonePetitionUpdate,28529859.0,2021-02-11 01:23:31+00:00,6000.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +359,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,5000.0,,,,,,,,,,,MilestonePetitionUpdate,28451515.0,2021-01-29 19:59:20+00:00,5000.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +360,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,4000.0,,,,,,,,,,,MilestonePetitionUpdate,28371177.0,2021-01-15 19:12:25+00:00,4000.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +361,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,3000.0,,,,,,,,,,,MilestonePetitionUpdate,28317492.0,2021-01-06 21:28:28+00:00,3000.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +362,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,0,0,,petitions_milestones,,,,2500.0,,,,,,,,,,,MilestonePetitionUpdate,28298403.0,2021-01-03 17:11:51+00:00,2500.0,amber-heard-queremos-salvar-la-carrera-de-johnny-depp,,,,,against +0,https://www.change.org/p/united-states-supreme-court-put-amber-heard-behind-bars,0,0,Kasandra Wildfong,0,change,AH_petitions,https://www.change.org/p/united-states-supreme-court-2,"

As many of you know the beloved American actor Johnny Depp was falsely accused of being a wife beater by then demon wife Amber Heard. When in reality she: cheated on him with several men and one woman, she threw a phone at him hitting him, cut off the tip of his finger and faked her bruises in court not to mention many more heinous crimes that went unpunished. Sadly just recently the UK parliament ruled in favor of the lying wench (Heard), but that didn't stop Johnny from fighting. He is now fighting on American soil and we can not let that demon woman get away with more than she already has. So, if you care about justice sing this petition today!

",,,,,6.8715363,,,,,,,United States Supreme Court: Put Amber Heard Behind Bars!,,,,,,,,,, +1,https://www.change.org/p/dc-comics-amber-heard-is-a-victim-of-domestic-violence,0,0,lonzo walter,0,change,AH_petitions,https://www.change.org/p/dc-comics,"

Amber Heard is a victim of domestic violence. Don't silence her! “The judge ruled Depp’s feelings towards his wife [Amber Heard] during their turbulent three-year relationship were summed up in a text where the actor revealed he had “no mercy” for her.

+

He also concluded Depp beat Ms Heard 12 out of 14 times — starting in 2013…"" — The Sun, with its winning case in Great Britain, November 2, 2020

+

Stop bots, misogyny, and manipulation. “On October 12, 2017, Rose McGowan exposed the fact that Harvey Weinstein had raped her, and that Amazon Studios dropped her project after she complained. On the same day, McGowan said that Twitter suspended her account for 12 hours after she repeatedly tweeted about Weinstein’s sexual misconduct, including toward her. Many Twitter users expressed outrage over her account being locked. After the tweet was removed, her account was unlocked several hours before the 12-hour ban was set to expire.

+

Through his lawyer, David Boies, Weinstein at one point hired the private intelligence agency Black Cube to spy on McGowan and to stop outlets such as The New York Times and The New Yorker from reporting their investigations on Harvey Weinstein.”

",,,,,4.830578,,,,,,,DC Comics: Amber Heard is a Victim of Domestic Violence,,,,,,,,,, +2,https://www.change.org/p/petition-to-hold-amber-heard-accountable-amber-heard-honour-your-pledge-to-chla,0,0,Princess Consuela Bananahammock,0,change,AH_petitions,https://www.change.org/p/twitter-2,"

For 4 years, Amber Heard has repeatedly claimed that she donated her entire divorce settlement, US 7 million dollars, to the Children's Hospital LA and ACLU. However, last week, we all learned that she not only didn't donate, but the little money she gave to CHLA/ACLU came from Johnny Depp and Elon Musk respectively. 

+

I believe that pledging to help sick children (CHLA) is a serious thing and shouldn't be overlooked. Therefore, I created this petition to pressure Amber Heard to donate the money to help those children with cancer as she promised to do. She's been rewarded several times for donating the money ... She was appointed UN's Human Right Champions and is hailed as an activist and an example of braveness and strength. 

+

Amber Heard already stole the suffering of countless domestic abuse victims/survivors, and it's not right that she also gets to keep the money she promised to give to sick children. 

",,,,,4.6909523,,,,,,,"Petition to Hold Amber Heard Accountable! Amber Heard, Honour Your Pledge To CHLA",,,,,,,,,, +3,https://www.change.org/p/johnny-s-fans-to-get-johnny-depp-s-career-back,0,0,Megan Picton,0,change,AH_petitions,https://www.change.org/p/johnny-s-fans,

Johnny depp was accused of abusing his ex wife and now has lost his career because of it. His ex wife has omitted to hurt him on several ac counts and one of the counts was when she cut of the tip of he’s finger and when she omitted it she smirked like it was funny. Yet she still has a career.

,,,,,4.489668,,,,,,,Johnny's fans: To get Johnny depp’s career back,,,,,,,,,, +4,https://www.change.org/p/hollywood-blacklist-amber-heard-from-film-roles,0,0,Jaden Tvedt,0,change,AH_petitions,https://www.change.org/p/hollywood-2,

Amber Heard abused Johnny Depp while in a relationship with him and still hasn’t faced justice. Sign this petition to keep her out of all future roles in film.

,,,,,4.4031124,,,,,,,Hollywood: Blacklist Amber Heard from film roles,,,,,,,,,, +5,https://www.change.org/p/everyone-replace-amber-heard-with-jacksepticeye-in-auqaman,0,0,Onalee Walker,0,change,AH_petitions,https://www.change.org/p/everyone,"

Johnny depp has been an actor who made childhood  fantasies  of pirates and wonderland come true and Amber heard is abusing him he also has clear video footage of this as evidence but the media has sided with Amber because  she is a woman as a woman myself  I don't  think  the female gender needs to be codoled any abuse  is abuse. So, I think we should replace  her with another person who made our dreams reality Jacksepticeye or sean Mcloughlin.

+

Women abuse men just as men abuse woman.

+

I want what this community  wants.

+

#justiceforjhonny depp

",,,,,4.371252,,,,,,,Everyone : Replace Amber heard with Jacksepticeye in Auqaman,,,,,,,,,, +6,https://www.change.org/p/dc-entertainment-keep-amber-heard-as-mera-womens-rights-ambassador-for-aclu-united-nations-champion-lgbt-and-elon-musk,0,0,Spencer Hansen,0,change,AH_petitions,https://www.change.org/p/dc-entertainment-3e287725-7a4e-4538-8e0c-188de4e8cec7,"

We need women and people like Amber Heard in Hollywood to speak up for causes we care about... Women's Rights, LGBTQ Rights, the American Civil Liberties Union and United Nations all have Amber Heard as a spokesperson... Here's the Musk science...

+

People wrongly keep threatening her and trying to stop her career as Mera and any of her activism by going to websites online and harassing her outside court... They even harass employees of the studios by posting their contact info online.

+

Jason Momoa, Warner Bros, HBO, CBS, and studios should take note that they should continue to have women that speak out and support progressive causes... These movies make Billions of dollars and an online smear campaign doesn't change that she told the truth about domestic violence from a fading A-List actor. She has strong international support and a few hate groups online like men's rights or fathers for justice don't represent the whole world...

+

She's targeted over the #MeToo era, politics, and stopping these causes from getting into Hollywood at all, let alone the entire united states, by bots and the alt right.

+

The judge said she was abused 12 times in civil court. Let her move on and speak out. Most importantly, we need women to be supported and lgbtq supported.

+

Elon Musk testified for her and Johnny Depp is clearly jealous and controlling. He doesn't let her move on and sends people everyday to remind her of their relationship, then sues the entire film and journalism industry. They attack her associations with conspiracy theories, and are jealous over any high profile people....

+

Facts are lawyers know Judge Nicol was wise and he took 4 months looking at all evidence to say she's innocent.

+

Stop abuse of women online and on social media...

+

Women can be beautiful, smart, bold, sexy, decision makers, leaders, and most of all, should be free to live their lives without hate...

+

Evidence: UK Case
Videos: Incredibly Incredible
Articles: Wifebeater in Forbes
Amber Heard al One Young World 2018 summit a The Hague

+

Huffington Post: Amber Heard Supports Evan Rachel Wood

+

""At least 10 women, including actor Evan Rachel Wood, have spoken out against Marilyn Manson since Monday, making allegations that include sexual assault, psychological abuse, physical violence and anti-Semitism...
    In court filings, Heard alleged Depp, one of Manson’s close friends, was verbally and physically abusive to her. In 2016, People magazine published photos that showed Heard with a “bruised eye and cut lip” stemming from a... domestic violence incident involving Depp in December 2015. Heard said she “truly feared for her life” during that incident.""

+

The Guardian: Heard told the court: ""I have been strangled, assaulted, punched, sexually assaulted, strangled, among other things.""

+

Elon Musk: ""The day after Heard was... attacked by Depp at their Eastern Columbia apartments home on May 21 2016, she texted Elon Musk about the incident.. he responded by offering to ""arrange 24/7 security,"" adding: ""The offer would stand, even if you never wanted to see me again..."" They were together for a year afterwards and are still friends.

+

Keep Amber Heard as Mera in Aquaman, support the REAL justice, and let her have a career.

",,,,,4.2983685,,,,,,,"DC Entertainment: Keep Amber Heard as Mera. Womens Rights Ambassador for ACLU, United Nations Champion, LGBT, and Elon Musk",,,,,,,,,, +7,https://www.change.org/p/walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,0,0,Braxton S,0,change,AH_petitions,https://www.change.org/p/walt-disney-3,"

The 12 times Johnny Depp beat Amber Heard. THE judge ruled Depp attacked his ex-wife 12 times in their relationship. Disney and Warner Bros are right to fire him!

+
    +
  1. ""In early 2013, Depp slapped and knocked Heard to the ground after she made a joke about his ""Wino Forever"" tattoo
  2. +
  3. In March 2013, the actor flew into a rage while high on drugs and hit Amber so hard he made her lip bleed
  4. +
  5.     In June 2013, Depp attacked Amber in a trailer in Hicksville - throwing glasses at her and ripping her dress
  6. +
  7.     In May 2014, the actor screams at his wife on a private jet after taking drugs and boozing before kicking her in the back or bum
  8. +
  9.     In 2014, Depp grabs Amber by the hair, slaps her and pushes her to the ground on a detox trip to the Bahamas.
  10. +
  11.     In January 2015, the star again attacks Amber while on drugs - this time slapping her and pushing her to the ground. He then forced her tears as he stood over her yelling. 
  12. +
  13.   In March 2015, Depp launches into a brutal three-day attack in Australia - leaving Heard with a broken lip, swollen nose and cuts all over her body. He trashed the house in the violent rampage and pushed Amber to the ground, choking her and spitting in her face as he made the star ""fear for her her life""
  14. +
  15.    In March 2015 in the couple's LA home, Depp grabbed Amber in front of her sister Whitney and repeatedly hit her
  16. +
  17.    In August 2015 on the couple's honeymoon, Depp pushed Amber against a wall by grabbing her by the throat
  18. +
  19.    In December 2015, Depp chucked a glass decanter at Amber at their LA home in a drug binge. He also slapped her and dragged her through the apartment by her hair - ripping a chunk out. He then hit her again in the back of the head and headbutted her in the face and screamed 'I will f***ing kill you'. Depp then pushed her face into a mattress and repeatedly punched her in the back of the head
  20. +
  21.     In April 2016 at Amber's birthday party, Depp assaulted his wife after receiving 'grim news' about his finances.
  22. +
  23.     In May 2016, Depp chucked a phone at Heard - injuring her eye - before pulling her hair and striking her""
  24. +
+

Ask why did he not stop abusing her? It's wrong to abuse her. Not why did she not leave if she was being abused.

+

https://www.thesun.co.uk/news/13082970/johnny-depp-wife-beater-loses-libel-case-amber-heard-12-times/

",,,,,4.2297263,,,,,,,Walt Disney: Johnny Depp is a Wife Beater! Amber Heard is Innocent,,,,,,,,,, +8,https://www.change.org/p/walt-disney-johnny-depp-is-a-wife-beater-amber-heard-is-innocent,0,0,Braxton S,0,change,AH_petitions,https://www.change.org/p/walt-disney-3,"

The 12 times Johnny Depp beat Amber Heard. THE judge ruled Depp attacked his ex-wife 12 times in their relationship. Disney and Warner Bros are right to fire him!

+
    +
  1. ""In early 2013, Depp slapped and knocked Heard to the ground after she made a joke about his ""Wino Forever"" tattoo
  2. +
  3. In March 2013, the actor flew into a rage while high on drugs and hit Amber so hard he made her lip bleed
  4. +
  5.     In June 2013, Depp attacked Amber in a trailer in Hicksville - throwing glasses at her and ripping her dress
  6. +
  7.     In May 2014, the actor screams at his wife on a private jet after taking drugs and boozing before kicking her in the back or bum
  8. +
  9.     In 2014, Depp grabs Amber by the hair, slaps her and pushes her to the ground on a detox trip to the Bahamas.
  10. +
  11.     In January 2015, the star again attacks Amber while on drugs - this time slapping her and pushing her to the ground. He then forced her tears as he stood over her yelling. 
  12. +
  13.   In March 2015, Depp launches into a brutal three-day attack in Australia - leaving Heard with a broken lip, swollen nose and cuts all over her body. He trashed the house in the violent rampage and pushed Amber to the ground, choking her and spitting in her face as he made the star ""fear for her her life""
  14. +
  15.    In March 2015 in the couple's LA home, Depp grabbed Amber in front of her sister Whitney and repeatedly hit her
  16. +
  17.    In August 2015 on the couple's honeymoon, Depp pushed Amber against a wall by grabbing her by the throat
  18. +
  19.    In December 2015, Depp chucked a glass decanter at Amber at their LA home in a drug binge. He also slapped her and dragged her through the apartment by her hair - ripping a chunk out. He then hit her again in the back of the head and headbutted her in the face and screamed 'I will f***ing kill you'. Depp then pushed her face into a mattress and repeatedly punched her in the back of the head
  20. +
  21.     In April 2016 at Amber's birthday party, Depp assaulted his wife after receiving 'grim news' about his finances.
  22. +
  23.     In May 2016, Depp chucked a phone at Heard - injuring her eye - before pulling her hair and striking her""
  24. +
+

Ask why did he not stop abusing her? It's wrong to abuse her. Not why did she not leave if she was being abused.

+

https://www.thesun.co.uk/news/13082970/johnny-depp-wife-beater-loses-libel-case-amber-heard-12-times/

",,,,,4.2297263,,,,,,,Walt Disney: Johnny Depp is a Wife Beater! Amber Heard is Innocent,,,,,,,,,, +9,https://www.change.org/p/united-nations-save-amber-heard-women-s-rights-activists,0,0,Deonte FRANECKI,0,change,AH_petitions,https://www.change.org/p/united-nations-102,"

Women's Rights Activists Risk Their Lives Around the World so that other women have rights and equality! Amber Heard, Evan Rachel Wood, Rose McGowan, and so many other women have been attacked online for speaking out against abusive men in Hollywood. Not only that, but they worked for laws and for change.

+

Entertainment in the USA affects everyone around the globe. Threats against them goes against the rights of women everywhere. It was only through women in entertainment and the media was it more known about sexual and domestic violence. The nonprofits only get a voice when spokespeople give them ones.

+

Loujain al-Hathloul was arrested in 2018 for her activism to get women to drive in Saudi Arabia and was recently released from Joe Biden and Kamala Harris Administration pressure.

+

We ask that these women's lives are safe during these difficult times, where online threats cause violence in-person. Amber Heard is one of the main targets to stop this speech and activism since she went to the United Nations. Each woman matters and it should not take many for them to matter against the powerful.

+

Stop targeting Women's Rights Activists in media, online, and everywhere. The new Joe Biden and Kamala Harris administration in the USA needs to show that online companies, laws, and studios need to help women.

+

 

",,,,,3.5215878,,,,,,,United Nations: Save Amber Heard & Women's Rights Activists,,,,,,,,,, +10,https://www.change.org/p/federal-bureau-of-investigation-charge-amber-heard-for-illegal-attempt-to-dox-twitter-users,0,0,Crista Van Nostrand,0,change,AH_petitions,https://www.change.org/p/federal-bureau-of-investigation-19,"

Amber Heard has been an abusive bully for far too long. She's been able to get away with her crimes. This time she has come after Twitter users, trampling on their 1st Amendment Rights. We want her criminally charged for her legal attepts through her lawyer & the court to invade innocent people's privacy. Amber Heard is a celebrity. She made the choice to pubilcally broadcast her personal drama for the world when she went on various interviews to defame, slander and create her hoax against Johnny Depp. She invited the world into her life. Then she began taking large sums of money to speak on the subject. Amber Heard reacted in fury when her plan backfired & her lies were & still are being exposed. As a result she wishes to control how people discuss the drama she started. I'm asking that Twitter protect out privacy. Otherwise no one will trust the social media site. We want our rights upheld. Please criminally charge Amber Heard for Harassment & Violating our Rights! 

",,,,,3.3662233,,,,,,,Federal Bureau of Investigation: Charge Amber Heard for Illegal Attempt To Dox Twitter Users!,,,,,,,,,, +11,https://www.change.org/p/walt-disney-do-not-hire-amber-heard-for-tangled-live-action,0,0,Eileen Mahallati,0,change,AH_petitions,https://www.change.org/p/walt-disney-3,"

Amber Heard has been exposed as a domestic abuser by Johnny Depp. In his $50 million lawsuit, Johnny Depp describes many incidents of domestic abuse that he suffered at the hands of his (then) wife Amber Heard, including one incident where she punched him twice in the face and another where she shattered his finger with a vodka bottle, and his finger had to be surgically reattached. He will bear the scar from that for the rest of his life. 

+

Also, Amber Heard was arrested in 2009 for abusing a former domestic partner, Tasya Van Ree, demonstrating a repeated pattern of abuse by Amber Heard.

+

Since Heard's divorce from Johnny Depp, she has systematically crusaded to ruin Depp in Hollywood, repeating multiple accounts of fake incidents in which she had actually abused Johnny Depp, but lied and created false accounts of him being the abuser. About the incident during which she shattered the bones in Johnny Depp's finger and nearly severed it, causing Depp to require surgery to reattach and repair it, Heard presented a false story claiming that he cut off his finger himself, dipped it in paint and scrawled obscenities all over the walls. 

+

Likewise, Heard recounts fabricated incidents of Johnny Depp hitting her in the face when she had, in fact, punched him. Though staff and neighbors in the building where she lived reported seeing no marks on her face in the hours and days after she says Johnny Depp hit her, yet she appeared in court six (6) days later with bruises on her face, asking for a temporary restraining order, which was granted. Photos of Heard from the very next day show her full face, without makeup, and not a single bruise.

+

As Amber Heard is a known and proven domestic abuser, Walt Disney Animation Studios and Walt Disney Sudiosshould and must not consider Heard for their Tangled film project. They must not ignore the suffering of Heard's victims, and must not glamorize a domestic abuser.

+

THIS IS NOT THE KIND OF PERSON WE NEED OUR CHILDREN LOOKING UP TO AS A ROLE MODEL��

+

 

",,,,,3.2120512,,,,,,,Walt Disney: DO NOT HIRE AMBER HEARD FOR TANGLED LIVE ACTION,,,,,,,,,, +12,https://www.change.org/p/warner-brothers-studios-boycott-warner-studio-for-their-support-of-amber-heard,0,0,Jonathan Brock,0,change,AH_petitions,https://www.change.org/p/warner-brothers-studios-2,"

We as a people should be able to decide who we want to be taken out of a movie, we are the consumers we decide! I vote for a boycott of Warner bros, they still support amber heard, depp got thrown out of everything acting for just being accused, their still is no final verdict of who is right or wrong, what happened to being innocent until proven guilty!? Amber heard needs to have the same repercussions as depp, what’s to say that she did falsify evidence, will they wait her 3 year sentence to do the movies and still include her after being convicted of perjury and making an innocent man lose his job and his opportunities? Isn’t this what women fought for years ago, equal rights, a man was thrown out for accusation but the woman gets to stay even when having possibly the same charges as well as more added on? 

",,,,,2.995342,,,,,,,Warner Brothers Studios: BoyCott Warner Studio for their support of Amber Heard,,,,,,,,,, +13,https://www.change.org/p/donald-j-trump-free-rapper-ynw-melly-he-is-being-framed-by-police-facing-the-death-penalty-we-have-got-to-stop-the-state-of-florida-from-killing-2-innocent-men-blacklivesmatter-alllivesmatter-freeynwmelly-freeynwbortlen,0,0,Amber Zenisek,0,change,AH_petitions,https://www.change.org/p/kamala-harris-attorney-general,"

#FREE YNW Melly #Black Lives Matter Petition #FreeYnwBortlen*Let YNW MELLY OUT OF FLORIDA STATE PENITENTIARY until his Trial! Racial Bias/Framed/Wrongfully Convicted! Not Enough Evidence! Stop the State of Florida from this Injustice!

+

Full Story:Jamell Maurice Demons, Born on May 1,1999 and known professionally as YNW Melly, is an American rapper, singer, and songwriter from Gifford, Florida. He is best known for his songs ""Murder on My Mind"", ""Mixed Personalities"", and ""Suicidal"" the rapper was charged with the double-murder/ 2 counts of murder of two members of the YNW hip-hop collective.It has been almost 14 months since “Murder On My Mind” rapper YNW Melly and YNW Bortlen being charge with orchestrating the murders of Anthony “YNW Sakchaser” Williams and Christopher “YNW Juvy” Thomas Jr. The aspiring rappers had been close friends of YNW Melly and appeared to have been killed in a drive-by shooting in October 2018. May 24,2020 YNW Bortlen has been released on a Bond $90000 and House Arrest.

+

Update: Jamell Demons aka @YNWMelly’s co-defendant Cortlen Henry aka @YNWBortlen was granted bond and house arrest. Melly remains in jail until trial. The victim’s family understands the release but does not agree with it. They hope for full justice and safety of all witnesses.

+

Jamell Demons, also known as rapper YNW Melly, is requesting to be released from the Broward County Jail for medical reasons after testing positive for coronavirus.
The 20-year-old Vero Beach native is accused of killing two of his longtime friends, 21-year-old Anthony Williams and 19-year-old Christopher Thomas Jr., in Miramar in 2018. Prosecutors are seeking the death penalty if he’s found guilty.
But John M. Phillips, the lawyer representing the family of Thomas Jr., says the family doesn't want YNW Melly to be released.
""It is preposterous they seek to release him to a “fan” and that defense counsel put that fan’s name, address, phone number and information in the public domain,"" he said. ""We again ask the public to be sensitive of the victims here. They lost children.""

+

Four men who grew up in the Vero Beach area are at the center of a story about two rappers who are accused of murdering their friends. It's a complicated story that includes a police claim of a staged drive-by shooting, and a wildly popular artist who recently released a song with Kanye West.And now one of the men involved is facing the death penalty if convicted. Here's what we know: 

+

October 2018
Christopher Thomas Jr., 19, of Gifford, and Anthony Williams, 21, of Fort Pierce were shot and killed Oct. 26 in South Florida, according to the Miramar Police Department.Both were driven to Memorial Hospital Miramar about 4:35 a.m., and arrived with multiple gunshot wounds, but, police said, were already dead.Thomas went by the stage name YNW Juvy, while Williams was known as YNW Sakchaser.The men were last seen alive in Fort Lauderdale about 3:20 a.m. that same day, police said.The identity of the friend who drove Williams and Thomas to the hospital was not released at that time. The two were part of a group of friends that included Jamell Demons, aka YNW Melly, and Cortlen Henry, aka YNW Bortlen.

+

Arrests made
 Miramar Police 
✔@MiramarPD
 (1/2) Jamell Demons, a.k.a. YNW Melly & Cortlen Henry have been arrested and charged with two counts of first degree murder. The victims, Anthony Williams & Christopher Thomas Jr., were killed on 10/26/2018. The investigation, supported by forensic evidence, has concluded that.Miramar police said an investigation concluded that Demons shot and killed Williams and Thomas. Henry was arrested in Texas and extradited to Broward County on Feb. 12.Demons turned himself in to officials in Broward County on Feb. 13.Both were charged with two counts of first-degree murder. Henry also was charged with two counts of accessory after the fact.Miramar police said Demons and Henry plotted to kill the young men they grew up with, then staged their bodies to look as if a drive-by shooting had occurred.Demons is accused of firing the shots, court records show. Henry then drove to the hospital with the bodies in a Jeep SUV, according to police.Prior to turning himself in, Demons posted a photo on Instagram of all four young men together, proclaiming his innocence.""A couple months ago I lost my two brothers by violence and now the system want (sic) to find justice,"" Demons said in the post. ""Unfortunately a lot of rumors and lies are being said but no worries god is with me and my brother (Henry).""

+

ynwmelly
Verified
To all my fans and supporters no I did not get locked up in Washington , but I am turning myself in today I want you guys to know I love you and appreciate every single one of y’all, a couple months ago I lost my two brothers by violence and now the system want to find justice.. unfortunately a lot of rumors and lies are being said but no worries god is with me and my brother @ynw.bortlen and we want y’all to remember it’s a ynw Family I love you @ynwsakchaser1 and @ynwjuvy #freeus

+

New details emerge
Court documents obtained March 1 detail how Miramar police said the rapper staged the deaths of two friends.About 4:35 a.m. Oct. 26, Henry pulled into Memorial Hospital Miramar with the bodies of Williams and Thomas in the passenger seats of a bullet-riddled Jeep Compass.He originally told police the two were killed by unknown assailants in a drive-by shooting, but police later said Henry and Demons had orchestrated the killings, with Demons pulling the trigger and Henry assisting a cover-up.Arrest records filed with the Broward County court Feb. 14 detail a variety of evidence supporting the allegations. Among the investigators' claims:Police found no evidence of shots fired in the location Henry said the shooting occurred. There were no reports of gunshots in the area.Cell phone records and surveillance video showed an associate had given false information about Demons' whereabouts before the shooting.
Cell phone records and surveillance video showed the path taken to the hospital contradicted Henry's testimony.
Forensic evidence at the actual crime scene, determined by cell phone records and K-9 search, showed no other vehicles were present at the time of the shooting.A trajectory analysis on the vehicle showed the paths of the bullets (right to left) did not match the victims' wounds (left to right).
Also detailed was evidence investigators said directly implicated Demons as the shooter:A shell casing from a .40 caliber handgun that matched casings found at the crime scene was discovered on the floorboard of the left rear passenger seat in the vehicle, where video evidence showed Demons had been sitting.
Evidence from an autopsy also showed the shot that killed Williams, who had been sitting in the front right passenger seat, had come from behind and to the left and was fired from less than three feet away.
Investigators said evidence showed Henry and Demons had driven around for a period of time with the two dead victims in the vehicle ""prior to entering the hospital"" in ""a calculated effort to establish their version of the incident(.)""
The motive for the shooting was not known as of March 4.

+

Not guilty plea
Demons pleaded not guilty March 5 to charges of first-degree murder. The case is slated to be heard in front of a jury. A hearing is scheduled for April 25.Henry is expected to be arraigned March 11 on two counts of first-degree murder and two counts of accessory after the fact.Neither man had an attorney listed in court records the morning of March 6.Update: Henry, who ""stood mute"" as the charges were announced, entered a plea of not guilty March 11 in a Fort Lauderdale courtroom, according to Paula McMahon, spokeswoman for the Broward County State Attorney’s Office.Update: State prosecutors filed notice in April of their intent to seek the death penalty in the double murder case. By state law, first-degree murder is punishable either by death or life without parole for suspects at least 18 years old at the time of the offense.According to the Legal Information Institute at Cornell University, which is appropriate in a given case is decided on the basis of so-called ""aggravating factors"" which, in the jury's estimation, increase the severity of or culpability of a crime.In the April 18 court filing, prosecutors stated their intent to prove a number of aggravating factors, arguing the killings were:""especially heinous, atrocious or cruel""
""committed in a cold, calculated and premeditated manner without any pretense of moral or legal justification""
""committed by a criminal gang member""
Update: Demons' attorney, Bradford Cohen, of Fort Lauderdale, filed a motion May 30 to grant bond with the Broward County court.Cohen said Demons did not pose a flight risk, arguing if he wanted to flee he would have done so on learning of the outstanding warrants after a concert in Washington D.C. Instead, Cohen said, Demons flew to Florida and surrendered himself to authorities. Cohen emphasized the rapper has ties to Gifford.More:  Attorney says rapper 'not a flight risk,' points to Gifford family ties

+

Criminal history
Vero Beach police arrested Demons in late 2015 when police said he fired a gun at a group of people during a dispute near Vero Beach High School, where the then-16-year-old was a freshman.
At 17, Henry was charged with fleeing from deputies who attempted a traffic stop near the Indian River Mall. He was tackled after hopping out of his vehicle and fleeing on foot, July 2016 arrest records show.
In January 2017, Demons was arrested on weapons charges after a traffic stop. Deputies reported finding a loaded 9 mm pistol with a laser attachment beneath Demons' feet and a .40-caliber Glock with an extended magazine in the glove compartment.
State troopers arrested Demons, Henry and Williams in June 2018 after finding three Glock handguns and large containers filled with marijuana in an SUV south of Fort Myers.
In January, Demons pleaded no contest to possession of marijuana and drug paraphernalia and was given a 25-day jail sentence.
Musical success
Demons, who announced he was signed to Young Thug's record label, YSL Records, in September, is seen as a rising star in the Florida rap scene.

+

He has more than a million social media followers, and his most famous song, ""Murder on my Mind,"" has more than 88 million views on YouTube. The track was certified gold by the Recording Industry Association of America.        He released a song with Kanye West in January that has 17 million views on YouTube. Henry posted a video of himself and Demons recording with West on social media.Both songs were charting on Billboard's Hot 100 in the weeks leading up to his arrest.Demons' ""Murder on my Mind"" was released in 2017, but its lyrics and the video's disturbing imagery have come under increased scrutiny since Demons' arrest and accusations he killed Thomas and Williams.The weekend after his arrest, ""Murder on my Mind"" reached No. 1 on the U.S. Apple Music chart, according to Chart Data, a Twitter account that tracks music metrics. Meanwhile, the song has steadily been climbing the Spotify charts.

+

The documentary
A YNW Melly documentary released in December gives an intimate look at the rapper's Gifford upbringing and what seemed like a tight knit friendship with the other three artists also from the Treasure Coast.""We ain't never had no fear. You can't hang around us if you got fear,"" Demons said in the 20-minute film. ""Cause we know what we doing, you know what I'm saying? And that's why we so tight.""Demons' mom said she got pregnant at 14 and gave birth in ninth grade.""Gifford, it can make you or break you,"" she said, clearly proud of her son's newfound success.

+

Melvin & Melly 2 Face   
✔@YNWMelly
 God want to give you the world but the devil want to take it from you pray b4 you lay #freeynwmelly

+

#FreeYNWMelly
Fans have taken to social media using #FreeYNWMelly in reaction to the allegations and arrest. A tweet from the YNWMelly verified account said, ""God want to give you the world but the devil want to take it from you ... ""'Murder on My Mind' goes double-platinum""Murder on My Mind,"" Melly's single that has taken off since his arrest and incarceration, recently went double-platinum. The song has hit the 2-million unit mark and is showing no signs of slowing down. Additional platinum honors are given out by the Recording Industry Association of America as songs pass mileposts of 1 million units. The final award is Diamond, for 10 million units.Update: In late January, ""Murder on My Mind"" officially went quadruple platinum,  according to Urbanislandz.com, a website that promotes hip hop, rap, reggae and dancehall music.

+

New album in the works?
From jail, Demons announced Aug. 9 he is planning a new album.A photo posted to the rapper's Instagram showed him talking on the phone during a jail visit, according to Complex, a website that reports on trends in style, pop culture, music, sports and sneakers with a focus on streetwear, sneaker culture, hip hop and graphic art.The caption underneath the image reads: ""Album on the way everybody. Y’all ready #MellyVsMelvin.""

+

ynwmelly
Verified
Album on the way everybody ��� Y’all ready #MellyVsMelvin

+

Prosecutors release crime-scene photos
Prosecutors showed slides with Miramar police investigation photos at Cortlen Henry's Aug. 23, Arthur Hearing where they tried to prove he should be held without bail.

+

One year since murders
Oct. 26 marked one year since Williams — YNW Sakchaser — and Thomas — YNW Juvy — were taken to Miramar Memorial Hospital and pronounced dead from gunshot wounds.Here's what we know.'Melly vs. Melvin' released
While in jail awaiting trial, Melly released ""Melly vs. Melvin"" on Nov. 22. Hearkening back to his hit with Kanye West, the new album is all about “Mixed Personalities.”At least that’s how Jamell Demons and his production team have marketed it.The alter ego, mixed personality, ""Melvin"" of the album's namesake has been marketed since early 2019 in posts to the YNW Melly Twitter, Facebook and Instagram accounts.The album is available on Spotify.

+

 

",,,,,2.9634783,,,,,,,Donald J. Trump: Free Rapper:Ynw Melly! He is being Framed by Police & Facing The Death Penalty! We have got to Stop The State of Florida from killing 2 Innocent Men. #BlackLivesMatter #AllLivesMatter #FreeYnwMelly #FreeYnwBortlen,,,,,,,,,, +14,https://www.change.org/p/amber-rudd-mp-victims-of-stalkers-to-be-informed-the-date-of-their-stalkers-release-from-prison,0,0,Lorraine Mitchell,0,change,AH_petitions,https://www.change.org/p/Amber-Rudd-MP,"

 

+

My name is Lorraine Mitchell. 

+


My stalking ordeal began back in the summer of 2007.

+

Unlike the majority of stalking cases. The man who stalked me for 10 years was a stranger to me. Until he first approached me outside my work , I had never seen him before. I had no idea his name or where he lived. However he knew everything about me.
He stopped me just as i got into my car and asked me out on a date. When  I refused, he kept insisting and when i was about to drive off, he disclosed that he had been following me for 2 years ..he knew my name, my address, the names of my 3 children, he knew i had been divorced a year and that i was seeing someone.

+


For the next 10 years, I lived in fear of my life from this man who would not leave me alone. He would follow me in his car, stop me on my dog walks,  send me inappropriate messages on social media , even when i blocked him he would set up a new profile.. differant name but same photograph. Every time i rejected him, my car tyres got let down, my car was moved, my beloved cat was killed , and then later dug up and was decapitated.  He he even followed me in his car to the police station when i went to ask for help! When he was brought in for questioning,  and released he was told to stay away from me. But he continued to stalk me, and then also much to my despair started to follow my daughter. 

+

Even though i reported him to the police, the police did not take me seriously until  July 2017. Finally in August he was arrested and charged with stalking under section 4a ( fear of violence). He was sentanced by Judge Paul Tain to 4 years in prison.Judge Tain said it was one of the 'worst cases of its kind.'

+

 The last 2 years , I have felt safe,  but have flown by and the man who stalked me will be released into the public this August. Only a couple of weeks away. I have been told by the probation department that I am not allowed to know the day of his release, until the day he is released.  On the day of his release I will be phoned by the probation and it I will be informed that he has been released into the public. I will also then be told of only the conditions of his release, which apply specifically to me. I have been informed by the probation office that it is not their policy to inform victims of the exact date of their perpetrators release from prison in order to protect the perpetrator!

+

This means every day in August,  I will wake up thinking, "" Is this the day he will be released?"" I cannot plan holidays in August now, as I do not want to leave my adult son at home, incase the stalker turns up. Stalking is about power and control, and once again this man has control over me. I feel that victims needs should be taken into consideration when perpetrators are released. Especially victims of stalkers. Why are his needs so more important than mine? 

+

Once I know what date he is going to be released I can then prepare myself. In the past he has repeatedly broken restraining orders carrying weapons. I believe he still poses a significant risk to me, my family and my pets. I have realised also, that I am not alone in this horrendous situation.  All victims of crime are not allowed to know the date of their perpetrators release. As Stalking is about obsession, fixation and is relentless  and no treatment has been found to cure this,  I am petitioning that all victims of stalking and domestic abuse are given the date of their perpetrators release into the public. This is so that victims can prepare themselves and keep themselves safe.

+

I have since received an apology from Sussex Police and have been ask to speak at Police training days on stalking. However on hearing other victims stories,  I feel changes are needed which could prevent lives been lost and damaged.  Stalking is about Power and Control. Victims have their lives totally controlled by these awful perpetrators. Please help me to have our voices heard and I would be so grateful if you would sign my heartfelt petition.  Thank you. 

+

 

",,,,,2.8052742,,,,,,,Amber Rudd MP: Victims of stalkers to be informed the date of their stalkers release from prison,,,,,,,,,, +15,https://www.change.org/p/round-rock-isd-board-members-mask-choice-for-round-rock-isd,0,0,Shauna Kinn,0,change,AH_petitions,https://www.change.org/p/round-rock-isd-board-members-11a8c606-09e1-4376-af98-f54b69fe0e5b,"

Now is the time to let your voices be heard! Sign this petition for the Round Rock ISD Board of Trustees for Freedom of Mask Choice for Students and Faculty of Round Rock ISD. 

+

A Vote will be held at the School Board meeting scheduled for 4/15/2021 to address this pressing issue which has been delegated to each School District’s School Board to decide.

+

On Thursday 4/8/21 The city of Round Rock unanimously voted to remove the city mask mandate. The Governor removed the state-wide mask mandate over a month ago and the covid numbers and hospitalizations are the lowest they have been since last June.

+

Over 90 Texas School Districts have already voted to remove their mask mandates for faculty and students.  It is time for Round Rock ISD to take a similar stance.

+

We respectfully support each individual’s right to choose and simply ask for your support in allowing each Student/Parent/Guardian to make the best decision in the interest of their own health. 

+

Thank you for your support! 

",,,,,2.8019307,,,,,,,Round Rock ISD Board Members: Mask Choice for Round Rock ISD,,,,,,,,,, +16,https://www.change.org/p/united-states-supreme-court-stop-hunting-wolves,0,0,Stacey Kincaid,0,change,AH_petitions,https://www.change.org/p/united-states-supreme-court-2,"

STOP HUNTING AND KILLING WOLVES!!
We need wolves for our environment. Let’s Get educated about wolves and stop killing such a majestic animal. People are hunting and killing them for sport. This is cruel and humane. Wolves are peaceful non confrontational animals! Here are some facts.

+

Myth: Wolves are mean and vicious animals.

+

◦ Truth: Wolves are gentle animals, that are instinctively terrified of humans.

+

Seeing a wolf in the wild is an extremely rare sight. This is because they’ve learned to fear humans since we’ve hunted and killed them for so long. They can smell us from up to five miles away and take off running. They are flighters, not fighters. If you somehow end up in a situation where you are face to face with a wolf, they will do anything they can to scare you off (growling, snarling, etc.) so that they can run away. Myth: Wolves are a menace and need to be hunted to protect our livestock and ourselves.

+

Truth: Wolves contribute so much to the environment and rarely bother people or livestock
As I mentioned above, wolves are naturally scared of humans and will do whatever they can to avoid us. They are not a danger to people. In fact, there are no verified documented cases of healthy wolves attacking people. Most attacks are done by coyotes, coywolves, or wolfdogs.
Wolves prefer leaner meats, that means elk and deer. They don’t like beef. The only times they ever hunt cows are when the alpha has been killed (usually by a trophy hunter), and the pack has not been properly taught how or what to hunt, so they go for the easier kills. Wolves do not hunt for fun. They only hunt for food when they need it. They take down their prey and drag it back to the den. They won’t take a bite and then leave it behind.
I’m sure all of you have heard or seen what wolves have done to Yellowstone. Wolves were absent until a few years ago when they were reintroduced. The environment in Yellowstone drastically improved. Wolves are keystone species. We need them. Please don’t hunt them.
Myth: Wolves have blue eyes.

+

Truth: Wolves eyes range from amber to dark orange to golden brown.

+

Pure wolves don’t have blue eyes. However, wolfdogs do (usually husky/wolf mixes). If you see a movie with a “wolf” that has blue eyes, it’s either a wolfdog or CGI. Growling is used as a warning. A wolf may growl at intruding wolves or predators, or to indicate dominance.
Barking is used as a warning. A mother may bark to her pups because she senses danger, or a bark or bark-howl may be used to show aggression in defense of the pack or territory.

+

Howling is the one form of communication used by wolves that is intended for long distance. A defensive howl is used to keep the pack together and strangers away, to stand their ground and protect young pups who cannot yet travel from danger, and protect kill sites. A social howl is used to locate one another, rally together and possibly just for fun.
Wolves convey much with their bodies. If they are angry, they may stick their ears straight up and bare their teeth. A wolf who is suspicious pulls its ears back and squints. Wolves spark intense emotions. They are revered as symbols of wildness, worshipped as the spirits of nature, idolized as the ultimate social animals. Yet fear and hatred of wolves, or at least of the ideals they symbolize, still runs deep. The challenge is to provide a whole sense of the animal and hope that with knowledge comes acceptance.

+

To educate people about wolves is to reveal an animal of stark contrasts and human-like behaviors.
I myself and my 8 year old daughter have a wolf at home he is our companion. He is also my jack russell terriers best friend. They have such beauty and if you are not a aggressive or hostile person then you shouldn’t have any fear. There only two documented cases of wolves attacking a human and both times it’s the fault of humans. Many people have wolfs or wolf dogs. Imagine if someone wanted to hunt your companion for sport. Isn’t that the same as killing. I Jennifer Fazio a citizen of the United States of America petition the United States Supreme Court to change the law and stop killing wolves. I petition that those who do can and will be punishable 100,000$ fine no less than 1 year prison sentence and may not own or possess a pet of any kind Here is a picture of my loyal friend named Bolt




+


+

Wolves are greatly misunderstood beings. They are incredibly humane.  There are only two documented cases that a wolf has attacked a human being and in both cases it has been fault if the human being ! Wolves have so much human like behavior that it’s amazing. Imagine you live in the forest and you have babies and something you’ve never seen before comes close to your babies.  Would you defend them or act protective? Of course you would ! Well we are in their house when we walk in a forest and walk past a den   So don’t go near their babies and you have no problem. They won’t attack unless you are stupid and provoke it. Just like you! Also did you know that wolves take care of their elderly just like humans do? Did you know there cases that wolves have helped and protected human beings? More cases of such than being hurt. Wolves also help our environment with trees and lakes. Wolves are also a sacred animal to our tribal communities. A lot of people have them as companions. I do and he’s remarkable. He gets along with my jack russell they are best of friends. Could you imagine someone hunting down and killing your pet or companion? I will be submitting video documents on wolves in the company of humans.  I petition that the hunting of wolves be stopped because they are not a threat to human beings and that who ever hunts a wolf has a minimum fine of 100,000$ and is also punished with a minimum jail sentence of 1 year and not allowed to own any domesticated animal nor have possession of   

",,,,,2.5017676,,,,,,,United States Supreme Court: Stop Hunting Wolves,,,,,,,,,, +17,https://www.change.org/p/michael-f-bennet-arapahoe-county-co-claims-to-be-kin-to-first-nations-but-traffics-native-children,0,0,Amber Galvan,0,change,AH_petitions,https://www.change.org/p/michael-bennet-5,"

The problem we are facing with Arapahoe County is they proudly have the face of a respectable Arapahoe Warrior in a war bonnet. This is displayed as their logo in front of their building and most of all the state buildings. Not understanding the war bonnet has significant meaning in indigenous culture. The war bonnet signifies something that is earned and has a different in meaning per tribe. Each feather on the headdress represented an achievement, whether that be an act of bravery on the battlefield or accomplishing a great deed for one’s own tribe. There are some tribes that their war bonnets were earned by scalping and obtaining a lock of hair to add with their feather, which was NOT practiced by all First Nations Tribes. The COLONIZERS were actually the people who did scalp the indigenous people of the land.

+

With that, it is highly respected and is earned not passed down. Now what most POC are experiencing with Arapahoe County is systemic racism, and cannot fight the abuse done to families within their power. They continue to steal our children, kill the mothers, and try to take our dignity as much as possible. I am a testament of this, as I am still fighting for one visit with my child. I have not seen my son in 11 years since the day of an accidentally scratch, not through the ARAPAHOE COUNTY courts, CPS, a Guardium a lite, not a therapist, not even one supervised visit. THEY NEED TO BE INVESTIGATED they are the most prejudice COUNTY IN COLORADO, all they want is money.

+

This year 2020, Luis (my stepfather the 1 who purchased my son) through ARAPAHOE COUNTY Combined Courts in Centennial, Colorado, has served me with the 2nd Petition of Adoption and Termination of Parental Rights. My rights are still intact! PLEASE take time & READ A LETTER TO LUIS (plaintiff) & HIS LAWYER from a grieving mother and family.

+

Dear Luis and Kristi,

+

I would like to propose a mediation where there is an agreement/discussion about a relationship with mother and son. This would solely rely on what Charlie is wanting from his own future. I am not asking that you give me full custody or even temporary custody. I am simply asking for an opportunity to let Charlie know that his mother loves him dearly, as this has not happened since the day of the accidental scratch, due to our differences on how this situation is viewed per our personal beliefs.

+

I fought ridiculously hard for 8 years, and because of a private (not mandatory) restraining order, a physical relationship was not allowed with mother and son. I was under the impression; the only reason reintegration therapy did not start was because I had to pay Kristi’s fees before that was a possibility. Other than a physical relationship with Charlie, I have always made every effort to ensure Charlie had a connection to all his family, he knows I love him according to every single family member that does get a rare chance to visit with him. They make it a point to tell him that his mother loves him very much. Not only that, anytime my other children are in Colorado or can get together with Charlie, my mother will do everything in her power to get a relationship between brothers and siblings. When he receives a gift from his immediate birth family it is always very thoughtful and sent every year, sometimes they are returned by Luis.

+

I would like to make this extremely clear; I would never abandon any of my children, I will keep fighting for the opportunity to tell him I love him. This is one thing that can never be changed in me as a mother to all these amazing kids, I cannot and will not give up on loving them. I still would like to get to know him for all he has to offer this world, and care for him enough to tell him he will always have a family that loves him very much. He holds a place in my heart that will never be replaced, a name is just a name, but I rather have him to genuinely want that for himself. My goal here is not to rip Charlie from a home that he has known for the first part of his life. I want him to know who we are, where he comes from, have that unbreakable relationship with his brothers, to hear and know that this Nunez family has not stopped thinking about him since the day he has left, that we love him always, and we will never leave his side (metaphorically as there is a restraining order still in place prohibiting contact for mom), I also want him to know that his culture will be here in this home always.

+

Luis as an adopted child, you should have some sympathy for Charlie. I am sure you would have liked to hear you mother tell you she loves you so much, and will always be there for you if you need her before you were adopted. I may not know all the psychology behind the child’s thinking in these situations, but I am remarkably familiar with therapy. Therapy is a wonderful tool and I believe everyone, especially Charlie and you could benefit with the trauma of being adopted. I do not want to cause any trauma to Charlie, he has been through enough of that. I am asking that I have an opportunity to tell him I love him even it is supervised, in hopes he would willing want to continue to build a relationship with his birth family.

+

I am not in agreeance with this adoption; however, I am not here to traumatize Charlie, but I want to come to an agreement that Charlie deserves as much love and family as possible. As well as letting his voice be heard for once, neither yourself or Charlie has had a mental health evaluation or has an opinion from a doctored psychologist. Dr. Richard Spiegel PhD is an amazing therapist who specializes in case like ours, as we have all agreed that his resume is the therapist to mediate the situation. On top of all that I know Charlie would not be disappointed in his office as it is the most beautiful and welcoming place to be. Please send me back a response as quickly as possible, as I would like to save us both a lot of time and money into the court system.

+

Thanks kindly

+

Please, we are begging anyone and everyone to help restore our family and end this injustice, not just for my family but many families. I am not asking for money; I am simply asking for the people’s time to share my story and help fight these cruel people. The punishment that my family has received is very cruel and unusual. I am sure I am not the only family suffering this trauma. Let us get answers to why this is happening. This is part of my journey and I want my son to know I love him, and I would never stop fighting for his VOICE to be heard. Mind you I have all my other children living at home with me, when this started my second child was 6 months and they never took him from me.

+

As indigenous people we all know what the affects of residential schools did to our culture, but we can fix it. We need to help with all issues that are affecting our rights. Please demand an investigation into my case and other cases handled by the judges/magistrates that made orders to sell my child to the highest bidder. The goal for children that are taken into the system is reunification, but the question is why in cases like mine was that not the best interest of our children?

",,,,,2.2896123,,,,,,,"Michael F. Bennet: Arapahoe County, CO claims to be kin to First Nations but traffics native children",,,,,,,,,, +18,https://www.change.org/p/university-of-connecticut-support-and-ensure-the-future-of-uconn-child-labs,0,0,Amber Zichao Li,0,change,AH_petitions,https://www.change.org/p/university-of-connecticut,"

Due to the COVID-19 pandemic, the University of Connecticut is facing significant financial challenges. Within the College of Liberal Arts and Sciences, one program being looked at is the Child Development Labs. 

+

The Child Labs has been a part of UCONN for over 75 years. It provides

+
    +
  • an enriching, safe, and nurturing environment for children and families from UCONN & local community;
  • +
  • a model training center for HDFS (Department of Human Development & Family Sciences) students working on early childhood education and related fields;
  • +
  • a top-notch research site in the field of child development for scholars at UCONN & the State of Connecticut.
  • +
+

As with many early care programs, the Child Labs was closed in Fall 2020 due to COVID-19 risks. They reopened in January at half of the capacity due to COVID-Policies in order to support families and UConn students. And there are currently 30 early childhood education students who are participating in practicum experiences at the Child Labs.

+

The Child Labs has a superb reputation among families and supports families at all different income levels. Before the pandemic, it was quite common for families to stay months on the waiting list before getting a spot. We hope and have confidence that the full capacity operations at the Child Labs will soon be restored as the CT State rolls out COVID-19 vaccines and reopens.

+

Now is absolutely NOT the time to make long-term decisions for the Child Labs based on short-term hardships.

+

 

+

What We Ask

+

Families, Alumni, HDFS Students, and Child Labs Friends - Please SIGN and SHARE your personal and/or professional connection to UCONN Child Labs, and why it should continue functioning as an affordable and integral member of our UCONN and Mansfield community. 

+

For years, Child Labs has been a harbor for us as students, researchers, and young parents. And now it's the time for us to do something for its future. Let our voice be heard, loud and clear! All support is greatly appreciated!

",,,,,2.228191,,,,,,,University of Connecticut: Support and ensure the future of UCONN Child Labs,,,,,,,,,, +19,https://www.change.org/p/johnny-depp-we-want-johnny-depp-back-in-2021,0,0,Florian Balavoine,0,change,AH_petitions,https://www.change.org/p/johnny-depp,"

Johnny Depp has been a phenomenal actor throughout his career. Depp was removed from the movie Pirates of the Caribbean by Walt Disney’s Company. This unfortunately is due to his ex wife Amber Heard lying and stating that Depp beat her. It has been proven that he did not hit her, but yet, that she beat on him repeatedly. She hit him with pots and pans 24/7 as if that was okay. This may come as a joke to some, but abuse towards a man or woman is not to be taken lightly. Now that this has come to light, Johnny Depp still has not been redeemed of this false news.

+

Amber Heard ruined Johnny Depp’s life as well as career. Johnny Depp has always been one of the greatest actors ever since he started acting around the age of 21. This man NEVER disappoints when he makes a movie, so why continue to keep him from doing Pirates of the Caribbean?? That movie is nothing without him! Please sign this petition to help Johnny Depp get back to what he enjoys and does best.

+

And Now in 2021, Amber Heard's lawyer has confirmed Amber did not donate her divorce settlement to charity and therefor lied to dying children and committed perjury in the UK

+

They have to bring him back to rule the seas again, UNLESS it is actor's own choice to withdraw from the role.

+

Even if it means nothing to you but please, sign this petition for the ones who REALLY want Johnny Depp 

",,,,,2.1531622,,,,,,,Johnny Depp: We want JOHNNY DEPP back in 2021,,,,,,,,,, +20,https://www.change.org/p/warner-brothers-johnny-depp-s-career-mustn-t-be-over-18cdc9fe-b8c8-4943-a5e7-ef77f33fa6af,0,0,Anna Michael,0,change,AH_petitions,https://www.change.org/p/warner-brothers-7,"

Johnny Depp is such a handsome and gentle man. He doesn't deserve all this.

+

In the last few months he received hate comments almost everyday, and everything because of Amber Heard! 

+

Heyy! You! Yes, I mean You! Please think of his situation:

+

Maybe it was like Amber said:     Johnny hit Amber and he is so much sorry for that. He apologized for it so many times and she just said: Well, that goes to court! Think of his situation!!!

+

Maybe it was like Johnny said: Amber hit Johnny and didn't really apologize for that. She claimed Johnny hit her and went to court... Think of his situation!!!

+

Maybe it was completely different but think of him now! Many people hate him for things he maybe hasn't done...

+

There aren't many people who still stay with him... Are You one of them?

+

Please sign this petition to make clear that Johnny Depp deserves justice!

+

#justiceforjohnnydepp

",,,,,2.1043544,,,,,,,Warner Brothers: Johnny Depp's career mustn't be over!,,,,,,,,,, +21,https://www.change.org/p/oklahoma-legislative-branch-hold-elected-officials-accountable-to-the-constitution,0,0,Carl Jameson,0,change,AH_petitions,https://www.change.org/p/oklahoma-legislative-branch,"

I am reaching out to you regarding the murder of my brother Bart Jameson, on January 30, 2019. Brenda Burdue Savage, the woman who was arrested, admitted she shot Bart and eyewitness accounts reported she did so ""for no reason"". She was released on $100,000 bond the following day, January 31, 2019, by Special Judge Mindy Beare. The ADA Adam R.Scharn took it upon his personal judgment by the accused looks that she couldn’t afford the 100,000 bond so instead of like all other murder cases in Pittsburg county Oklahoma of higher bonds for murder, he didn’t even fight this low bond.Our family does not have money or clout in the area but Bart was a lifelong, active member of the Choctaw community, was raised and participated in ceremonial dances but above all deserves the respect allowed to capital murder.
The district attorney chuck Sullivan sent out an email advising his staff not to communicate with our family anymore. Thru an open records request we learned that not one employee has received any trading on Marcys law as stated in Oklahoma constitutional law. Merrill Williamson from the attorney general office , refused to hear my concerns and complaints regarding constitutional violations, will not answer emails or calls. Kim Zachary, Brandi Larue and  Amber sutter victims advocates for Pittsburg county District attorney Chuck Sullivan have been hostile and will never give the family any updates to this case as required by the Oklahoma constitution and Federal law.

+

Oklahoma legislators Nathan Dahm, Trey Caldwell, Larry Boggs, David Smith, Jim Grego, Tammy Townley, Warren Hamilton, Logan Phillips, Greg Treat. They have all blocked or refused to talk with us regarding violations of Oklahoma constitution and federal victims rights laws, James Langford and Mark Wayne Mullin staffs told us to not call back as this is not their responsibility.  Judge Tim mills also violated federal and the United States constitution in allowing the accused attorneys to take us victims to court and make us give personal social media accounts to to her. They didn’t even have to follow the companies rules regarding the release of our information. We was not advised of our rights by judge mills prior to court. Matter of fact not one time was we advised of our rights.

+

If we don’t fix these issues not and enforce victims rights law especially when its in The Oklahoma Constitution section 2 article 34 , then all we will see is more Government representatives not honoring their oath of office . Let me just ask if you lost a loved one would you want your voice heard and afforded the same rights as the accused.

",,,,,1.8399864,,,,,,,Oklahoma legislative branch: Hold elected officials accountable to the constitution.,,,,,,,,,, +22,https://www.change.org/p/warner-brothers-boycott-aquaman-2-fantastic-beasts-3,0,0,Chloe Louise,0,change,AH_petitions,https://www.change.org/p/warner-brothers-7,"

As most of you know 2020 was a pretty rough year and in the mists of that was the legal case between Johnny Depp and Amber Heard. Now Despite evidence given in the case by Johnny to show and suggest that he was the victim and not to mention the published tapes of amber admitting to 'hitting' him, she still won the trial. Now You only have to Google her name to find out that she's been arrested for 'misdemeanor domestic violence'. So how is it that Amber still gets to reprise her role as Mera in aquaman 2, yet Johnny has been axed of his role as Grindelwald in fantastic beasts 3?

+

I know the media are claiming it's because Amber Heard has a contract with Warner bros and so that they cannot fire her but so did Johnny. He had a contract for his role as Grindelwald and yet they still managed to fire him. To me this shows that Warner bros not only agrees with abuse and domestic violence but also sides with a woman who has a repitation for it. Johnny has proved his innocence with solid evidence multiple times but due to the fact he's Male, he's been silenced. This is a huge problem amongst itself and it's time we make a change by boycotting aquaman 2 and fantastic beasts 3.

+

This shows Warner bros that we STAND by Male victims of domestic abuse/violence and we don't side with Amber Heard. This also shows that no one else can replace Johnny's grindelwald and that we want him back! .  I know a close friend that's been falsely accused of domestic violence, he felt hopeless and like sexism was a factor.  That's what's happening here too so Please sign the petition to not watch these films when they are released and shown #justiceforjohnnydepp !

",,,,,1.6655962,,,,,,,Warner Brothers: Boycott Aquaman 2 & fantastic beasts 3,,,,,,,,,, +23,https://www.change.org/p/warner-brothers-fire-toby-richard-walter-and-geoff-from-warner-bros-warnermedia,0,0,Cro Kmn,0,change,AH_petitions,https://www.change.org/p/warner-brothers-7,"

TOBY EMMERICH AND WALTER HAMADA MUST GO!

+

They have been making a lot of dumb decisions like Greg Silverman. 

+

They held the rights of the FRIDAY (Ice Cube) series hostage. They were being stupidly reluctant to greenlight the fourth installment. ICE CUBE GOT FORCED TO DO SO MUCH WORK TO GET THIS MOVIE ON SCHEDULE, TO THE POINT WHERE CAST MEMBERS PASSED AWAY.

+

They have been making problems for the DC Universe.

+

They have been trying to sabotage Zack Snyder's cut of Justice League for the longest too.

+

And RICHARD BRENER, GEOFF JOHNS, AND AMBER HEARD ARE NO BETTER.

+

TOBY FIRED JOHNNY DEPP OVER SOME BS. AMBER SHOULD HAVE BEEN THE ONE GETTING FIRED.

+

THEY ALL HAVE TO BE FIRED.

",,,,,1.2495131,,,,,,,"Warner Brothers: FIRE Toby, Richard, Walter, and Geoff from Warner Bros. (WarnerMedia)",,,,,,,,,, +24,https://www.change.org/p/warner-bros-disney-the-jury-cheers-to-bringing-back-johnny-depps-name,0,0,Maisy - Anne Clark,0,change,AH_petitions,https://www.change.org/p/the-walt-disney-company-2,"

In the sea of Amazing actors and actresses, Johnny Depp always always seems to break through the tide. He captures many eyes with his eccentric and unique characters, his charming charisma , and his contagious humour, which seems to ignite a spark of humbleness within us all.

+

His works like Public Enemies, Pirates of the Caribbean Series, Finding Neverland, dark Shadows, Sweeny Todd,Sleepy Hollow( I could go on) have shown his versatility and his great depths to which he can go and is praised all over the world. His ability to go to any extent for his characters, is just phenomenal.

+

You may not like the guy, but you can't deny he has skill and talent.

+

“With any part you play, there is a certain amount of yourself in it. There has to be, otherwise it’s just not acting. It’s lying”

+

What I admire most about Depp, is his commitment and dedication to his job. He doesn't treat it as a job, thus a different way of breathing. A different way of expression. He stands by the idea that "" we are all somewhat screwy in a way"" and that we should embrace our weirdness and imperfections.

+

I used to believe that i was insignificant. That I was made to feel different. Because I didn't dress a particular way, or I didn't think the 'right' way. But Johnny Depp made me feel that it was okay to be me.

+

He has inspired me to live my life to the full. With smiles and laughter and through enjoyment.

+

Please don't take him from our screens. Please don't take away the man that inspires me to not survive. But to live.

+

 

+

Johnny has brought nothing but happiness and joy to our hearts, innocence and clarity from our souls, and the laughter and smiles from our lips when we were sad.

+

He has touched my heart and opened my mind.

+

So please Don't crush his reputation , he is not a piece of dirt you can kick with your shoe, he is not a product of society. He is a man. With family,  with problems, and with a heart.

+


We should all be trying to work together , we all need to be little more understanding.

+


It is not good to be singled minded. For it means your mind is closed to other ideas or opinions. And if you are not open to any other ideas or opinions then you are intolerant of them. This is called bigotry. Bigotry is an ugly thing, and is often found alongside of other deplorable traits such as arrogance, conceitedness and narcissism.

+

It is much better to have an open mind, The best way to knowledge is to explore. As soon as you put the breaks on exploration, you are being single minded. All this does is slow down progress.

+

Life is not just seeing whats in front of you or hearing something from your next door neighbor. You have to delve in much deeper than that. I think it's time to look over the rainbow.

+

 

+

These are just a handful of 100 responses to why the public believe ""Johnny Depp is innocent""

+
    +
  • ""Because as a male victim of abuse, seeing [Johnny Depp’s] reputation be ruined and stay ruined even after heaps of evidence came out showing that he was the victim, made me feel abandoned. I support [Johnny Depp] to show others like myself they’re not alone."" — @lightrey
  • +
  • ""Because I’ve experienced a version of Amber Heard. I’ve seen how female abusers work. And male victims of [Domestic Violence] deserve to be seen."" — @m1che11ePearl
  • +
  • ""It was obvious to me almost from the outset that her claims were questionable and that the media coverage was biased. The more facts emerged, the more strongly I felt a real injustice was being done. I was incensed by the media, in particular. Later, it was the way [Amber Heard] used her claims to build a platform as an activist and the way she was enabled by various organisations which I found disgraceful. She has exploited victims (and I am a [domestic violence] survivor myself) for personal gain & should be held accountable."" — @redlikejungle
  • +
  • ""Having been a victim myself….I could see [Johnny Depp’s] life coming out of his eyes when he was with her….Violence has no gender. All victims...survivors deserve to be heard…and anyone using important platforms to further themselves, are horrible"". — @Farrartina1212
  • +
  • ""I grew up in an abusive household, so when the accusations came out, I was like, “well…Amber isn’t acting like me…but Depp is”. It was so many social signs that I, myself, could relate to. How withdrawn he was…versus the OVER confidence she exuded. I related to him."" — @lilyjane916
  • +
+


There are dozens more. These are just some of the voices that make up the choir of Johnny Depp’s online supporters. Survivors, fans , humans. They are individuals who took the time to dig beyond the headlines and media and surfaced saying, “something isn’t right.” They care!

+

You do not need to agree with them. You do not need to engage with them. But hearing them, listening to them, and trying for a moment to truly understand them, is a good place to start.

+

This is not only for Johnny, but for the men and who are suffering quietly, from abuse. No one should be made to feel worthless, or exploited unruly.

+

I assume the foundation of this idea comes from the belief that women have an easier time reporting, and expressing their situation because people are more accepting and helpful when it comes to them. Also, I often hear people say that men are humiliated and ashamed by being abused, as if women aren’t. That is offensive. It not only assumes that a woman’s right to control her own agency and life is somehow less potent, or less important than a man’s, it also assumes a woman has an easier time revealing her situation, because, well, women are simply allowed to seem weak.

+

It definitely happens. One reason it's less of a concern is because men are supposedly more capable of defending themselves and less likely to be injured.

+

I say “supposedly” because even though this is often physically true, men can get in a whole lot of trouble for defending themselves especially if they cause any injury to the woman in the process. He is a lot more likely to go to jail than she is EVEN IF she is the one who is doing the abusing. Now how is that fair. It isn't? But we can change that.

+

If that is the case, are you telling me that defending ones self is a crime if your a man?

+

 

+

 

+

Not only with this cruel disease that takes people's lives unwillingly, but I will not, let another disease  such as disregardence, be released.

+

 

+


Sign this Petition and let's help Johnny Depp get his name back . His career back, And most importantly, the smiles back on your children's faces.

+

With love and wishing you all the best in this weird world right now-
Maisy - Anne Clark
@clarkmaisy2004@gmail.com - enquiries

+

 

",,,,,1.1281239,,,,,,,Warner Bros Disney The jury : Cheers to bringing back Johnny Depps name!,,,,,,,,,, +25,https://www.change.org/p/california-state-senate-men-s-rights-and-the-injustices-of-the-court-and-society,0,0,Kenneth Yu,0,change,AH_petitions,https://www.change.org/p/california-state-senate,"

I believe that men are discriminated against in court of law and society as well. We are suffering from the injustice of the law and prejudice. When we talk of the Men's right movement or anything of the sort, we are canceled and denied of any rights to our children, money, and justice in the court of law. This country is dying. This place is no place for a man to live, let alone survive.

+

Our own president, Joe Biden states that he will end due process for men on campus. A segment of The federalist states that, ""Colleges are scrambling to avoid following new Title IX regulations requiring them to respect due process rights for those accused of sexual assault — rights Biden has promised to end if he's elected."". Such as system that can so easily be twisted to insidious means against men should not exist. The notion of false rape accusation is prevalent in this country, it is  beginning to become the norm. So is the unfairness of paternity court where women get the children and fathers must pay for child support even if the women cheated. Getting married has almost no benefits but have skyrocketed in the danger and financial loss. 

+

The unfairness is everywhere such as teachers being fired from college for say that men are not awful which is a article in the website, The Daily Mail. What about Johnny Depp, despite all of the evidence against Amber Heard of her abuse and lies, isn't punished for her actions.

+

How can we let such injustice go about and not do anything. Being a man is America is seen as a crime and I am tired of all of the injustice.  
 
 

",,,,,0.7805645,,,,,,,California State Senate: Men's rights and the injustices of the court and society,,,,,,,,,, +26,https://www.change.org/p/optomen-stop-johnny-depp-documentary-by-itv,0,0,Laura Azarowicz,0,change,AH_petitions,https://www.change.org/p/optomen,"

A documentary should not be made about Johnny Depp. He is still fighting for the truth. To make a documentary when his evidence has been disregarded in the UK, is criminal. The UK Judge Nicol based his judgement on Amber Heard donating 7 million to charity which she lied about, and never donated. These dv allegations happened because Johnny Depp wouldn’t comply to her monetary demands. Police cam footage proved she lied about May 21, 2016 DV allegation. She had no bruises there was no damage.

",,,,,0.7563328,,,,,,,Optomen: Stop Johnny Depp Documentary by ITV,,,,,,,,,, +27,https://www.change.org/p/zack-snyder-amber-heard-out-ir-justice-league,0,0,Sandra Mirelva,0,change,AH_petitions,https://www.change.org/p/zack-snyder-0dc1b941-e6ee-48f3-959d-c9ac0df1f3e4,

Amber Heard is a ominous person who must not be showed as a heroin not even in fiction. @ZackSnyder we won't watch your Justice League despite all the great actress and actors if this hidious Amber Heard is still being consider as Mera. She personifies all a human being must avoid to be in the life. NOT more Amber Heard in Hollywood nor another entertainment system please. Never Ever.

,,,,,5.816754,,,,,,,Zack Snyder.: Amber Heard Out ir Justice League,,,,,,,,,, +28,https://www.change.org/p/amber-heard-a-public-letter-to-amber-heard,0,0,Rebecca Shorten,0,change,AH_petitions,https://www.change.org/p/amber-heard,"

AN PUBLIC LETTER TO MISS AMBER HEARD FROM SURVIVORS OF DOMESTIC ABUSE

+

Dear Amber,

+

I am a domestic abuse survivor.

+

You will not minimise our experiences and our fight to become survivors by claiming you speak for us.

+

You do not speak for me.

+

Signed

",,,,,5.527645,,,,,,,Amber Heard: A Public Letter to Amber Heard,,,,,,,,,, +29,https://www.change.org/p/who-ever-makes-the-movie-keep-amber-heard-as-mera,0,0,Carlos Wholeo,0,change,AH_petitions,https://www.change.org/p/who-ever-makes-the-movie,

Because why switch it now sure everyone has done bad things even you the reader but just keep her in the role because why not 

,,,,,4.8610997,,,,,,,Who ever makes the movie: Keep Amber Heard as Mera,,,,,,,,,, +30,https://www.change.org/p/amber-heard-queremos-salvar-la-carrera-de-johnny-depp,0,0,Yennifer Hoyos,0,change,AH_petitions,https://www.change.org/p/amber-heard,"

Disney quiere hacer un reboot de la saga ""Piratas del Caribe"" y quiere reemplazar Johnny Depp por alguien mas, pero no es justo que lo reemplazen por alguien más, ya que la saga tiene vida gracias a él. 

+

 

+

Disney wants to reboot the ""Pirates of the Caribbean"" saga and wants to replace Johnny Depp with someone else, but it is not fair that they replace him with someone else, since the saga is alive thanks to him

+

 

+

Y nosotros no vamos a permitir que amuelen la saga quitándonos a nuestro protagonista Jack Sparrow (Johnny Depp) por una falsa acusación en la que está implicado. 

+

 

+

And we are not going to allow them to furnish the saga by taking away our protagonist Jack Sparrow (Johnny Depp) just because they made a mistake

+

 

+

Juntos juntemos las firmas necesarias para que Jack Sparrow (Johnny Depp) siga en la saga ""Piratas del Caribe""

+

 

+

Together we gather the necessary signatures for Jack Sparrow (Johnny Depp) to continue in the ""Pirates of the Caribbean"" saga

+

 

+

Firma ahora antes de que sea demasiado tarde y por favor compártelo todos los que puedas, amigos, familiares, vecinos, compañeros, hermanos, tíos, primos, compañeros de trabajo, etc.

+

 

+

Sign now before it's too late and please share it as many as you can, friends, family, neighbors, colleagues, brothers, uncles, cousins, coworkers, etc. 

+

 

+

#ForJohnny

+

 

+

Por favor comparte esto en redes sociales WhatsApp, Facebook, Instagram, Twitter, Messenger, etc.

+

 

+

Please share this on WhatsApp, Facebook, Instagram, Twitter, Messenger, etc.

+

 

+

Tú haces la diferencia! 

+

 

+

Gracias por tu firma y tu apoyo! 

+

 

+

You make a difference!

+

 

+

Thanks for your signature and your support!

+

 

+

 

",,,,,4.840632,,,,,,,Amber Heard: Queremos salvar la carrera de Johnny Depp,,,,,,,,,, +31,https://www.change.org/p/warner-brothers-to-get-amber-heard-fired-in-aquaman,0,0,Kaitlyn Haestier,0,change,AH_petitions,https://www.change.org/p/warner-brothers-7,

Johnny Depp was fired for abusing Amber Hears but it was later found that Amber was the one abusing him and she still has her job. I would like to see amber heard get kicked off of Aquaman 2

,,,,,3.8683753,,,,,,,Warner Brothers: To get Amber Heard fired in Aquaman,,,,,,,,,, +32,https://www.change.org/p/change-org-petitions-to-remove-amber-heard-from-aquaman-perpetuates-abuse-towards-women-who-speak-up,0,0,Erin Kroncke,0,change,AH_petitions,https://www.change.org/p/change-org-4,"

Johnny Depp lost his libel case to the sun for reporting about the abuse he inflicted towards Amber Heard. In order to win a libel case you must prove that what was published is not true. He LOST, put it together. Intimate Partner Violence is happening everywhere and often is unseen and unheard. Women who speak out should not be punished. Any woman who has endured such abuses, knows the extremes that an abusive man will push you to. It's time to stop blaming the victim and assume that all women should just sit back and take the abuse. Her trials with Depp are important to women's rights and our voices. We can't let powerful men be allowed to silence us any further. The change.org platform should be used for good, not to harm others, and NOT to perpetuate abuse! These kinds of petitions need to be removed, and change.org and Warner Brothers need to stand by women who have been abused. By signing this petition you are showing your support to remove the hateful petitions against Amber Heard and asking for solidarity for ALL women. Amber Heard's case is a very public case that stands up for ALL women and the violence we have had to endure for generations and generations. 

",,,,,3.7795773,,,,,,,change​.​org : Petitions to Remove Amber Heard from Aquaman Perpetuates Abuse Towards Women who Speak Up,,,,,,,,,, +33,https://www.change.org/p/warner-brothers-replace-amber-heard-in-justice-league-with-danny-devito-in-a-wig,0,0,Aleksandar Velichkov,0,change,AH_petitions,https://www.change.org/p/warner-brothers-7,

You know why.

,,,,,3.6612294,,,,,,,Warner Brothers: Replace Amber Heard in Justice League with Danny Devito in a wig,,,,,,,,,, +34,https://www.change.org/p/united-nations-remove-amber-heard-as-a-spokesperson-for-harry-walker-agency-for-domestic-violence,0,0,Lilya C,0,change,AH_petitions,https://www.change.org/p/united-nations-102,"

Dear Harry Walker Agency, Mr Don Walker and Mrs Ellen Kazis-Walker,

+

I am L, and I am a domestic violence survivor. I have three friends with equally horrid experiences, two other women and one man.

+

With the other young woman, I have held her two-year-old daughter in my arms who called my lap a “safety place” because “daddy’s mad again” and tried to cover her ears while her father was abusing my friend and shouting at her downstairs. I gave witness testimony to the police the very next day which was the starting point of long and very painful recovery for my friend and her daughter. My other female friend tried to leave a man that she had realised was aggressive and dangerous; as a result he attempted to throw her from the balcony of the 4th floor to concrete pavement. All his other physical assaults before that were of similar gravity. My male friend is an exceptionally mild-mannered and kind-hearted man despite being also a 6’3 tall bodybuilder. His ex-girlfriend is much smaller, but the scratches and bruises on his skin we saw where nothing to joke about let alone the time she used a knife during one of her very frequent frenzies of rage.

+

I want to make our voices heard as Amber Heard has been recently listed as one of your spokespeople to talk, for profit, as ""An outspoken advocate for women's rights and for the civil rights of survivors of all gender-based violence around the world"" as described on your site. This is extremely disheartening and offensive beyond belief to all people, and their close ones, who have first-hand experience of domestic violence.

+

There are numerous audio tapes where Ms Heard proudly admits having assaulted her then husband on several occasions. She admits having hit him, kicked him and having thrown multiple objects at him. She verbally abuses him on these very tapes, shouts at him, and mocks him for being a male victim of domestic violence and ridicules that the world would never believe him. Each of these acts is an act of domestic violence and is unpardonable. Furthermore, there is an ever-growing number of impartial witnesses that have testified under oath of the violent and abusive behaviour of Ms Heard against her ex-husband and that it has been regular and frequent. These statements include ones provided by two LAPD police officers trained to recognise any potential signals of domestic violence. These witness statements are fully supported by communications and medical statements, which also reveal her to be addicted to class A drugs and alcohol. She has furthermore been arrested for domestic violence against her former partner and there is evidence of regular abuse of her own baby sister, such as a video tape displaying her with bruises on her arms and skin. It is beyond reasonable doubt that she is guilty of domestic violence.

+

Domestic violence, against women or men, is a matter of utmost seriousness and no proven and self-admitted abuser should be allowed a platform to mock the genuine survivors, let alone profit of their suffering. Are these the values Harry Walker Agency represent? Are these the values that You, Mr Don Walker and Mrs Ellen Kazis-Walker represent? It is utterly bewildering that any organisation or a person with conscience could support such conduct.

+

I speak on the behalf of several domestic violence survivors in writing this open letter to you to do what is right and remove this proven and self-admitted domestic abuser from your list of spokespeople. It breaks my heart, and I am not alone, not only to see yet another abuser to be not held accountable for her deeds but generating profits and visibility on the expense of genuine survivors.

+

Sincerely Yours,

+

L

+

https://www.dailymail.co.uk/news/article-7947733/Amber-Heard-admits-hitting-ex-husband-Johnny-Depp-pelting-pots-pans-tape.html 

",,,,,3.5959504,,,,,,,United Nations: Remove Amber Heard as a spokesperson for Harry Walker Agency for domestic violence,,,,,,,,,, +35,https://www.change.org/p/the-walt-disney-company-petition-to-not-watch-disney-productions-until-they-let-johnny-depp-back-in,0,0,Parsa Farjam,0,change,AH_petitions,https://www.change.org/p/the-walt-disney-company-2,"

The Walt Disney Company has banned the well known and much loved actor Johnny Depp from the Pirates of the Caribbean series. This is because of a claim that Johnny Depp has abused her ex-wife Amber Heard; despite the fact that there is hard boiled evidence showing Depp’s innocence in the case and that in fact it was Depp who was subjected to abuse by Amber Heard.

+

Johnny Depp has already been removed from multiple movie franchises and big productions because of this clearly false claim, and now The Walt Disney Company has put a direct ban of him appearing in the Pirates of the Caribbean series.

+

We must put a stop to this and help Depp get the role he deserves, as the franchise will be meaningless without Depp’s appearance. 
We must from now Disney-made Movies, Animations, TV-Shows and Cartoons to force them to return Depp to the franchise. 

+

A similar petition trying to get Amber Heard removed from Aquaman has now reached ~2 Million Signatures and has gained significant media and news; putting the makers of the series under pressure to remove Amber Heard.

+

We are strongly and clearly asking The Walt Disney Company, to stop this ban as we believe the ban by Disney is a case of Systematic Racism.

",,,,,3.0537176,,,,,,,The Walt Disney Company: Petition to not watch Disney productions until they let Johnny Depp back in,,,,,,,,,, +36,https://www.change.org/p/amber-heard-have-amber-heard-plead-guilty-for-domestic-violence,0,0,Luna Prado,0,change,AH_petitions,https://www.change.org/p/amber-heard-3f4f09b0-b168-4f5c-8faf-8451c0528895,"

There's evidence that both Johnny Depp and Amber Heard were abusers of each other. It seems strange, but I don't want to choose sides when I clearly did not see the inside picture. Since Depp has been charged with abuse, why isn't Heard? I'm sure that some people would find disclosure and peace if at least both parties were punished. This leaves no one free from consequences and deemed the victim. For all we know they can both be each other's abuser. 

+

If you, the reader, want to learn more about this issue of Heard vs Depp, I recommend reading legitimate articles and listen to audios and videos. Keep an open mind when forming an opinion. Both Heard and Depp are beloved people and actors and can both fog your conclusion because of who you think they are. 

+

My personal opinion is that Depp is the victim. Heard has been manipulative and caught lying. But since Depp has already been charged and deemed as the abuser, at least have Heard charged, too. Again, we as the community have no idea what happened in both Depp's and Heard's private lives and can only create assumptions based on what we have been allowed to see or hear. If we cannot prove that Amber Heard was the main abuser to Johnny Depp, at least have Heard punished as well.

+

Amber, I recommend that you simply come clean and accept the charges against you for domestic abuse/violence instead of only blaming the opposing party. You abused Depp, and for all we know he could've abused you. Both of you may have abused each other. You ruined Depp's career and life and thought that you would be free of the consequences of your own actions as well. It's time to make things right. Be honest and plead guilt to the abusing of Depp. He was already punished, charged and looked down upon. You've had your justice, let Depp have his. 

+

Plead guilty. 

",,,,,3.0113025,,,,,,,Amber Heard.: Have Amber Heard plead Guilty for Domestic Violence.,,,,,,,,,, +37,https://www.change.org/p/amber-heard-have-amber-heard-plead-guilty-for-domestic-violence,0,0,Luna Prado,0,change,AH_petitions,https://www.change.org/p/amber-heard-3f4f09b0-b168-4f5c-8faf-8451c0528895,"

There's evidence that both Johnny Depp and Amber Heard were abusers of each other. It seems strange, but I don't want to choose sides when I clearly did not see the inside picture. Since Depp has been charged with abuse, why isn't Heard? I'm sure that some people would find disclosure and peace if at least both parties were punished. This leaves no one free from consequences and deemed the victim. For all we know they can both be each other's abuser. 

+

If you, the reader, want to learn more about this issue of Heard vs Depp, I recommend reading legitimate articles and listen to audios and videos. Keep an open mind when forming an opinion. Both Heard and Depp are beloved people and actors and can both fog your conclusion because of who you think they are. 

+

My personal opinion is that Depp is the victim. Heard has been manipulative and caught lying. But since Depp has already been charged and deemed as the abuser, at least have Heard charged, too. Again, we as the community have no idea what happened in both Depp's and Heard's private lives and can only create assumptions based on what we have been allowed to see or hear. If we cannot prove that Amber Heard was the main abuser to Johnny Depp, at least have Heard punished as well.

+

Amber, I recommend that you simply come clean and accept the charges against you for domestic abuse/violence instead of only blaming the opposing party. You abused Depp, and for all we know he could've abused you. Both of you may have abused each other. You ruined Depp's career and life and thought that you would be free of the consequences of your own actions as well. It's time to make things right. Be honest and plead guilt to the abusing of Depp. He was already punished, charged and looked down upon. You've had your justice, let Depp have his. 

+

Plead guilty. 

",,,,,2.9956422,,,,,,,Amber Heard.: Have Amber Heard plead Guilty for Domestic Violence.,,,,,,,,,, +38,https://www.change.org/p/dd2-parents-and-teacher-stay-the-course-stick-to-the-plan-dd2,0,0,Amber Hotelling,0,change,AH_petitions,https://www.change.org/p/dorchester-county,"

Dorchester County Parents, teachers and community members, let the district know that you support the learning models as previously laid out. Let them know that we want them to stick to the plan.

+
    +
  • e learning when at high risk 
  • +
  • hybrid learning when at medium risk 
  • +
  • face to face learning when at low risk 
  • +
+

Consistency is key in educating children and while we want them back to school face to face as soon as safely possible, abandoning the plan that was voted on and passed unanimously by the board will stretch our already strained transportation department, food services, extended day and special needs department to a breaking point. Rushing back without proper time to adjust and plan will cause even greater stress and chaos than we already have in such trying times. 

Right now you have board members and “community leaders” trying to push your children back to school face to face claiming that it’s what the majority of parents and teachers want. That’s not true! Sign this and show them that! 

+

Let the school board and district administrators know that we will no longer be the silent majority. We need to drown out the noise from those who oppose the current learning models because right now they are the only voices  being heard. Let the know that WE SUPPORT THEM! 

",,,,,2.9622252,,,,,,,"DD2 parents and teacher : Stay the course, stick to the plan DD2",,,,,,,,,, +39,https://www.change.org/p/all-amber-heard-movies-to-get-amber-heard-removed-from-all-of-her-movies-and-get-johnny-depp-back-in-his-movies,0,0,Spencer Park,0,change,AH_petitions,https://www.change.org/p/all-amber-heard-movies,

Johnny Depp is domestic violence victim and he is being treated as the perpetrator Amber heard is the perpetrator of domestic violence while she is being treated as the victim I wish to remove her from all of the movies and all the opportunities she is received from this publicity stunt that she pulled

,,,,,2.645293,,,,,,,All Amber heard movies: To get Amber heard removed from all of her movies and get Johnny Depp back in his movies,,,,,,,,,, +40,https://www.change.org/p/johnny-depp-justiceforjohnnydepp-a5a5feae-1005-48e2-a29a-437df928ddd1,0,0,Isabella Ramos Ottersen,0,change,AH_petitions,https://www.change.org/p/johnny-depp,"

So you have probably hear it, Amber heard is an abuser, she ruined Johnny’s career and acts like nothing happened in the court. There are multiple pictures and so much proof that Amber abused Johnny. Johnny hasn’t laid a finger on Amber and he lost the case. Everything now these days is about women getting abused well men get abused too, this is important to know. We need to stop amber heard, Johnny is not her first victim. Please I beg you, help this man getting his career, his life back. Every person matter. Speak up if you are being abused, don’t let anyone control you and treat you so bad like Amber did to Johnny. She literally cut off a piece of his finger because things didn’t go her way, he went on multiple meetings with bruises on his face. He deserves justice, everyone does. But  ruining Johnny’s career just because we are used to believing woman is wrong, and this comes from a woman. I’m a woman and I’m sick and tired of people faking their case. Please help me and spread this message. He need you. #justiceforjohnnydepp #johnnydepp #cancelamberheard

",,,,,2.3760548,,,,,,,Johnny depp: #justiceforjohnnydepp,,,,,,,,,, +41,https://www.change.org/p/women-the-age-women-are-allowed-paps-smears-to-be-lowered,0,0,Amber Kefford,0,change,AH_petitions,https://www.change.org/p/women,"

To try and have our voices heard when it comes to the age women are allowed paps smears. Plenty of studies show, and women can say first hand, that the dangerous cells they find during the exam can be found as young as 18 years old. So why are women younger than 25 being refused a simple cervical exam that could save their life?

",,,,,1.3091145,,,,,,,Women: The age women are allowed paps smears to be lowered!,,,,,,,,,, +42,https://www.change.org/p/johnny-depp-as-jack-sparrow-bring-back-johnny-depp-as-jack-sparrow,0,0,Justice for johnny depp,0,change,AH_petitions,https://www.change.org/p/johnny-depp-as-jack-sparrow,"

We all know johnny depp as a most caring and gentle man. And recently as on the basis of his case he's been out from his many role but we all know that he's born for his role as captain jack sparrow. And since johnny depp's former wife amber heard was also part of the violence she should also be removed but she hasn't been. And johnny depp has also been removed as Gellert Grindelwald andand we also want that role back for johnny depp and especially the role of jack sparrow. We want justice for our beloved johnny depp who is falsely  accused on the basis of his ex-wife amber heard. We all know that he's innocent. And we want justice and role of johnny depp as jack sparrow back. And amber heard should be punished. And that's it 

+

#bringbackbringbacksparrow

+

#bringbackjohnnydepp

",,,,,1.1595618,,,,,,,Johnny depp as jack sparrow: Bring back johnny depp as Jack sparrow,,,,,,,,,, +43,https://www.change.org/p/royal-courts-of-justice-justice-for-johnny-depp,0,0,Zoe Young,0,change,AH_petitions,https://www.change.org/p/royal-courts-of-justice-2,"

Johnny Depp got abused and destroyed by Amber Heards allegations and still he is the one losing everything he has worked for. He is the victim. Disney has just announced he won't be returning for Piartes of the Caribbean, a franchise he has been carrying on his back since 2003.  Yet she is still allowed to keep all of her jobs.  It is not right and never will be.  You tell people to speak out and when they do stuff like this happens and people loose everything they have worked for. The fact that all his exes are coming forward to support him too and  people still dont believe him. Hes such a good hearted human being. It’s not fair. amber ADMITTED to abusing him and starting physical fights. It makes me absolutely livid knowing that he lost his case. I've heard tons of people say he was abusive towards her and I digged up some stuff and the makeup artist said they had to cover up bruises and then there's that whole thing with the judge but the hair stylist said they never saw bruises and so did friends so it's honestly just really complicated and annoying because people are believing Amber when she confessed to abusing him and I didn't really see bruises with her. Except for one picture and with Johnny there was multiple picture of bruises and bruises forming

",,,,,1.0092213,,,,,,,Royal Courts of Justice: Justice for Johnny Depp,,,,,,,,,, +44,https://www.change.org/p/netflix-bring-johnny-depp-titles-back-to-netflix,0,0,Alice Beasley,0,change,AH_petitions,https://www.change.org/p/netflix-11,"

Johnny Depp has been apart of our lives since Nightmare on Elm Street. He has been on numerous movies over the span of three decades. From Pirates of the Caribbean, Charlie and the Chocolate Factory, Blow, the Secret Window, Fear and Loathing in Las Vegas, Rum Diaries, Alice in Wonderland, Edward Scissorhands, Sweeney Todd, Sleepy Hollow, What's eating Gilbert Grape, and so many more. He has been part of our lives this entire time as a great character actor. As we know, several allegations of abuse arose, but the true fans weren't buying the false claims made by Amber Heard. Then in the end it was found out that they weren't true, but Johnny's character was already married by her false statements. Disney, being the greedy corporate conglomerates that they are, fired him. Now, Netflix and Starz have removed him from their platforms. As well as WB from the Fantastic Beasts movies. 

+

I am asking this petition be signed and spread around on every social media platform so we can bring Johnny back to his rightful place and he can resume his career in peace without slander and defamation flying. Amber Heard was found guilty of her crimes against Johnny, but it seems as if she just received a slap on the wrist. She is STILL starring in Aquaman. She has no care that she ruined a man's career with her lies. Bringing questions against the #metoo movement because of her false allegations and downplaying other traumas women have suffered within society. 

+

#justiceforjohnnydepp

",,,,,0.80163217,,,,,,,Netflix: Bring Johnny Depp Titles back to Netflix,,,,,,,,,, +45,https://www.change.org/p/walt-disney-johnny-depp-for-the-next-sith-lord,0,0,Noah Hutchison,0,change,AH_petitions,https://www.change.org/p/walt-disney-3,"

To Be Honest with you all, I just wanna see Johnny Depp for the next sith lord.

+

nothing else, I just wanna see Johnny Depp up there on screen as a Main Character in the next Star Wars film.

+

Johnny Depp lost his job as an actor so lets get him his job back.

+

he was a great actor so lets just give him another part if he's up for it, if not, ah well.

+

call this a meme if you want, I'm being honest here, I wanna see Johnny Depp as the next powerful Sith lord, maybe a Palpatine or something.

+

the main reason of this is so that Johnny can get his job back if he needs to make some money.

+

we all feel bad for Johnny Depp after what happened, so lets get him back into the mood to act again! and lets give him a badass role!

+

his name will go down in Star Wars history, he'll be the next Darth Plagueis The Wise, every fan of FTB (Fantastic beats) or PTC (Pirates of The Caribbean) might join the Star Wars community, lets all band together and make this happen.

+

WHO KNOWS? WE MIGHT GET A NEW TYPE OF LIGHTSABER, WHICH IS AWESOME!

+

Amber Heard framed Johnny Depp, so lets make sure he can still have his fame, and not the frame.

+

I mean.. Johnny Depp might be down for this, so lets make this happen.

+

I want Johnny Depp to have Justice, and this is how we will give it!

+

(LETS MAKE HIM CANON!)

",,,,,0.75729287,,,,,,,Walt Disney: Johnny Depp for the next Sith Lord,,,,,,,,,,